skullsplitter | 15 years ago | on: Vim 7.3 released
skullsplitter's comments
skullsplitter | 15 years ago | on: Ask HN: Resources for finding short term projects?
skullsplitter | 15 years ago | on: Ask HN: Resources for finding short term projects?
skullsplitter | 15 years ago | on: Ask HN: Resources for finding short term projects?
whosreppin.me was built for an NPR KQED iPad hackathon event. So it was super simple and streamlined and I used a more familiar set of technologiess (postgres, django) in order to mash something up in a weekend. The neat part is that whosreppin.me shared 1st place w/ one other team.
skullsplitter | 15 years ago | on: Ask HN: Resources for finding short term projects?
skullsplitter | 15 years ago | on: Ask HN: Resources for finding short term projects?
whosreppin.me : A site to connect voters with their local reps (django)
hckrn.ws : A mini hacker news targeted for mobile devices (node.js / couchdb)
Is that what you were looking for?skullsplitter | 15 years ago | on: Ask HN: Resources for finding short term projects?
skullsplitter | 16 years ago | on: Google has released a list of 1000 most-visited sites on the web
skullsplitter | 16 years ago | on: Hacker News Twitter list
skullsplitter | 16 years ago | on: Rogue Amoeba abandons iPhone because of App Store approval insanity
"There’s a bigger story here, however. It’s one that’s been told before, but until things change, it needs to keep being told. Simply put, the App Store is broken."
skullsplitter | 16 years ago | on: PHP Founder Rasmus Lerdorf Leaves Yahoo
skullsplitter | 16 years ago | on: Ask HN: Any way of avoiding the $800/yr FTB tax on CA LLC's?
I think Im going to register in Oregon b/c I would have access to individuals who could act as registered agents but I still need to find the answer to the above question.
skullsplitter | 16 years ago | on: 10 Books Every Entrepreneur Should Read
skullsplitter | 16 years ago | on: Ask HN: Where do you live?
skullsplitter | 16 years ago | on: Ask HN: Where do you live?
skullsplitter | 16 years ago | on: Ask HN: Where do you live?
skullsplitter | 17 years ago | on: Ask YC: Best practice for Python module imports?
a, use your head, don't let convention override reason b, In general, keep module imports at the top of the file organized by type & package with the caveat that a large # of imports (say more than 10 or 20) may indicate the module is too ambitious and is a candidate for refactoring.
skullsplitter | 17 years ago | on: Ask YC: Best practice for Python module imports?
skullsplitter | 17 years ago | on: Ask YC: Best practice for Python module imports?
I think I might be converging on a reasonable practice of doing all imports in one place while including basic comments and/or just insuring at least that imports are grouped by category / 'package'.
# Sys imports import os, sys, urllib
# django imports import django.foo ...
# google apps imports import gdata.foo ...