All Entries Filtered By Date: 2008-03-01
March 24, 2008
[Daniel] All Your (Code) Base Are Belong To GitHub
Yay for a worn-out meme and a bigger hurrah for an awesome service! GitHub is a hosting solution for the Git version control system.Why Git? Git provides a different model for version control from traditional centralized version control systems. Git uses a distributed model where every checkout is actually a complete repository. This means you have complete history along with all branches. Others can clone out of your checkout. And merging, something that traditionally very painful in systems like Subversion, is easy and pain-free. Not mention Git being extremely fast, space efficient and able to be used even while offline.
GitHub takes all the power and provides a great interface, easy code sharing and the ability to easily fork other projects hosted on GitHub. Built by Chris Wanstrath, Tom Preston-Werner and (apparently) PJ Hyett, the app is already solid for a beta and there's going to be quite a few more goodies added before launch. Others have already noted the interesting social aspects so I won't dog on that point too much.
GitHub comes highly recommended and I still have two invites available if anyone's interested.
Permalink
|
Comments (0)
How Many HTML Elements Can You Name In 5 Minutes? - Got a 53 out of 91 one handed (Number Two was in the other arm).
March 21, 2008
[Daniel] Strangely Expressive
Life with Number Two has been largely good. However, after the intense colic Mini Me experienced, it is strange to hear Number Two cry, simply because it's so much more expressive. You can actually tell the difference between "I'm hungry", "I'm tired" and "It hurts!", as opposed to the constant pained cry. It's very odd and sometimes causes a double take.
March 18, 2008
[Daniel] Oh Snap!
#!/usr/bin/env python
"""Since SnapTalent (http://snaptalent.com/) seems to have some solid jobs and a decent site, but no list of ads, let's make one."""
import urllib2
base_url = 'http://snaptalent.com/ads/'
for i in xrange(255):
current_url = "%s%s" % (base_url, i)
try:
oh_snap = urllib2.urlopen(current_url)
if oh_snap.code == 200:
print "Valid URL: %s" % current_url
oh_snap.close()
except:
pass
March 14, 2008

