2015
Zalo DS Blog: 3DS Homebrew Tips and Tricks (II)
(via)"In other words, what you really have is an screensize of 240x400" ... ow, yeah. Of course. That makes it possible to flip between left-eye-viewpoint and right-eye viewpoint on a line-by-line basis, rather than at pixel level!
2013
2010
Searching for Emails in Thunderbird
(via)http://www.freeemailtutorials.com/mozillaThunderbird/searchingForEmails.cwd
2009
The For-Each Loop
(via) void cancelAll(Collection<TimerTask> c) {
for (TimerTask t : c)
t.cancel();
}
Shortcuts for tcsh
(via)alias tex 'latex !!:1.tex && dvips !!:1.dvi -o !!:1.ps'
and my own (highlight searched keyword in e.g. a locate output)
alias loc8 '/usr/bin/locate -i \!\!:1 | sed -e "s/\!\!:1/\x1b\[36m\0\x1b\[37m\x1b\[1m/i" -'
Leaning toothpick syndrome - Wikipedia, the free encyclopedia
(via)When you wish " wasn't " but ' or whatever else ...
print qq|$text|;
m{ftp://[^/]*/pub/}
2008
The Linux Cookbook: Tips and Techniques for Everyday Use - PostScript
(via)yum. booklets and other ghostscript tips
gbadev.org :: View topic - Need help with effective VRAM setup
F and G can map anywhere in the first 128K. The catch is, they mirror in two places
it should be possible to make F and G contiguous with A
(neat mapping technique by cydrak, using the best of VRAM_OFFSET(x)) to offer 112+48K on BG areas plus 448K contiguous as spare (LCD).
2006
perl.com: Perl Command-Line Options
e.g. perl -n -e 'some code' file1
Then Perl will interpret that as:
LINE:
while (<>) {
# your code goes here
}
...
and much more of the like ^_^
1
(9 marks)