illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2007_08_01_archive.html
Don't want you to know about (in blinding colors). Tuesday, August 28, 2007. Taken last night. If I had a better camera, I'd have taken Mars during the eclipse too. Written at 9:55 AM by Justin George. Links to this post. Friday, August 10, 2007. Eliciting rational thought on the internet. Ok, this is very much a work in progress at the moment, I'd appreciate feedback a lot. I'd like to take some time today to write about the way I interact. Firstly, let me lay out my goals:. Do you have any evidence or ...
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2008/07/real-life-superpowers-part-1.html
Don't want you to know about (in blinding colors). Tuesday, July 22, 2008. Real-life Superpowers, part 1. Horses store up to 50% of their red blood cells and can release them during endurance running. Self-doping, with the larger hearts needed to deal with the thicker blood that results. Written at 10:23 AM by Justin George. Links to this post. Links to this post:. Some rights of this page's plain text stuffs are reserved. Is generated via PsycHo.
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2007_10_01_archive.html
Don't want you to know about (in blinding colors). Thursday, October 18, 2007. Biggest reason to switch to emacs I've found so far is that the commands work by default in bash, too. Written at 5:17 PM by Justin George. Links to this post. Some rights of this page's plain text stuffs are reserved. Is generated via PsycHo.
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2007_05_01_archive.html
Don't want you to know about (in blinding colors). Wednesday, May 30, 2007. We here at IT appreciate the diversity of web frameworks and methodologies that have arisen or gained popularity over the last few years, and we've had our filthy paws over and into a few of them. Some we like more than others, and some of us are more vocal in our advocacy than others. Frameworks I'd like to see included:. With maybe some Rails for support. if required). Written at 11:13 PM by Rand. Links to this post. Might be t...
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2008_01_01_archive.html
Don't want you to know about (in blinding colors). Thursday, January 17, 2008. Ibuprofen, Naproxsyn/Naproxsen, and Aspirin: Don't overdo it. My girlfriend just got out of the hospital after having a bleeding ulcer as a result of taking ibuprofen, among other stressors. Just a heads up, any of you who read this, go easy on the ibuprofen, because the effects can be very bad. If you are unlucky, and it is surprisingly common. Written at 11:25 PM by Justin George. Links to this post. Friday, January 11, 2008.
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2008_05_01_archive.html
Don't want you to know about (in blinding colors). Wednesday, May 28, 2008. Recommendation Letter redux: how to write a letter of recommendation for a friend. Since I wrote this short joking post about faux pas in a friend's recommendation letter. I've been getting people asking me how to write a good recommendation letter. For posterity and the Internet, here you go:. Above all, be professional. If prompts are provided, make sure you nail every one of them. If they aren't, think about what you'd wan...
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2008/06/git-tricks-ive-been-using-lot.html
Don't want you to know about (in blinding colors). Saturday, June 28, 2008. Git tricks I've been using a lot. Git add - patch. Incredibly helpful for splitting up your patches into atomic commits. I use this like mad when I've made a few different types of changes between committing. (e.g. I find something that needs refactoring in the middle of adding a feature). For hairier tasks, don't forget it's older brother,. Git add - interactive. Git rebase - interactive. Git checkout -b branch name remote/branch.
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2007_09_01_archive.html
Don't want you to know about (in blinding colors). Friday, September 7, 2007. Code on the Road: Navigating The Minefield that is Visual Source Safe. Code on the Road: Navigating The Minefield that is Visual Source Safe. Such a no-brainer. Why do you even try VSS to begin with? Get the Subversion plugin, grab SVN, and 99% of these things go away. If that's not enough, git. Provide reasonable distributed solutions. Miles ahead of VSS (Actually, three generations, but who's counting.). Links to this post.
illicittech.blogspot.com
Illicit Tech
http://illicittech.blogspot.com/2007_12_01_archive.html
Don't want you to know about (in blinding colors). Friday, December 14, 2007. When you're serving static files. Never link http:/ yoursite.com/foo/bar/x to:. A) plain http:/ static.yoursite.com/foo bar x.ext. B) Never use plain hashes of the ID. e.g. ./hash of id here.ext. C) Borderline, but even static salts are bad: ./hash of id plus 'foobar' here.ext. Or, alternatively, as better people than I have mentioned, use bcrypt with a set difficulty value, and all your rainbow table type fears go away.