Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Hans E. Hyttinen http://sidulus.textdrive.com

« Newer Snippets
Older Snippets »
2 total  XML / RSS feed 

Rule-Breaking Resizing for Poster-Sized Prints

[From The Photoshop CS2 Book for Digital Photographers by Scott Kelby]

1. Open the photo to be resized, and go to the Image Size dialog.

2. Type in the final print size you'd like, under Document Size.

3. Change the Resolution to be 360 pixels per inch.

4. Make sure Resample Image is checked, with the option Bicubic Sharper selected.

5. Save, print, enjoy.

Directory/File list in Windows

Run, CMD, blah blah blah...

For a pretty tree, do
tree /f /a > tree.txt


For an ugly (but thorough) inline list of directories and files, sorted by directory name and then date of creation, do
dir /s /a  /o:-d /t:c > file_list.txt


If you don't want subdirectories listed under directories, do
dir /s /a:-d /o:-d /t:c > file_list.txt
« Newer Snippets
Older Snippets »
2 total  XML / RSS feed