pdftk burst - specify output files names
pdftk filename.pdf burst output filename_%04d
KIROKAZE
almost home

Origami Around

dirt enthusiast
Alisa U Zemlji Chuda

Janaina Medeiros
styofa doing anything
Sweet Seals For You, Always

Kaledo Art

roma★
hello vonnie
occasionally subtle
Cosimo Galluzzi
NASA
One Nice Bug Per Day
taylor price
Three Goblin Art
d e v o n
Game of Thrones Daily
seen from South Korea
seen from Malaysia

seen from Hungary

seen from United States
seen from Mexico
seen from United States

seen from Brazil
seen from Thailand

seen from United Kingdom
seen from United States

seen from Malaysia
seen from Malaysia

seen from United States

seen from United States
seen from United States
seen from Canada

seen from Türkiye

seen from United States
seen from Ireland
seen from United States
@hardprogrammerslife
pdftk burst - specify output files names
pdftk filename.pdf burst output filename_%04d

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Elementary OS taking screenshot of desktop instead of active window
It is caused by some problems with AMD drivers. There is a workaround: use Ctrl + Alt + F1, then Ctrl + Alt + F7 to return and then you can take your screenshots!
Convert all xib files in project to new Xcode 5 format
find . -name "*.xib" -exec ibtool {} --upgrade --write {} \;
(thanks to M.)
Prevent cmd from autmatically closing after the program ends
Create a shortcut to your program.
Rigth-click on your shortcut, select Properties and change Target field  by adding /K property to cmd:
cmd /K "path to your program"
String lenght in bash
${#your_string}

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
CandyBar not working on Mavericks
sudo nano /System/Library/CoreServices/SystemVersion.plist
then change both versions from 10.9 to 10.8 and launch CandyBar. Remember to change it back once you're finished with your icons.
Replace text in PostgreSQL database
UPDATE table_name SET field_name = replace(field_name, text_to_be_replaced, text_to_replace_with);
Find application using specified port number on Windows
In command line type:
netstat -ona | findstr 0.0:<port number>
Checking out remote branch in Git
git fetch origin
git checkout -b test origin/test
Removing branches in Git
To remove a local branch: git branch -d <branchName>
To remove a remote branch: git push origin --delete <branchName>

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Changing number separators from American to European in pgfplots
Solution:
1. Comma as decimal separator:Â /pgf/number format/use comma
2. No thousand separator:Â /pgf/number format/1000 sep={}
FIXME and TODO in Xcode
In Xcode (version 4.6 for sure) you can use FIXME:, TODO:, ???: and !!!: in comments in your code. Marked comment will then appear in drop down list of methods in class.
Moving lines of code up and down in Xcode
Solution: ⌥⌘[ and ⌥⌘] will move single line where the cursor is or multiple lines after selection, up and down respectively.
PCH file built from a different branch than the compiler
Solution: In Xcode select Product > Clean or use ⇧⌘K key combination. Then build again.