- Developers don't have to worry about design
- Or, only 'hybrids' have to.
- Design is only the front-end part of the application
- Maaaaybe architecture design ("Big Design Up Front"/BDUF)
Both of These are Wrong
| #!/bin/bash | |
| COUNTER=0 | |
| while [ $COUNTER -lt 10000 ]; do | |
| curl http://localhost:8081 & curl http://localhost:8081 | |
| let COUNTER=$COUNTER+1 | |
| echo "FINISHED ATTEMPT $COUNTER" | |
| done |
| /* Safari: Preferences > Advanced > User Stylesheet | |
| Firefox: Insert into ~/Library/Application\ Support/Firefox/Profiles/<profile_id>/chrome/userContent.css | |
| For myself, I keep the file in Dropbox, and I symlinked it into the FF location. | |
| */ | |
| /* Hides Facebook ad divs, and the like button */ | |
| .ego_section { display: none; } | |
| div#pagesNav { display: none; } | |
| div#appsNav { display: none; } |
Both of These are Wrong
The goal of HacerFest is to set aside 48 hours (or really, however much you want), to not think about your day to day tasks, and focus on some creative project you've wanted to make or do.
'Hacer' in the Spanish verb for 'to make' or 'to do'. It's a fantastic verb for creative work, which is often making or doing something.
| Inspecting the available layers in GeoServer ... | |
| Traceback (most recent call last): | |
| File "/Users/nrb/dev/geonode/bin/django-admin.py", line 5, in <module> | |
| management.execute_from_command_line() | |
| File "/Users/nrb/dev/geonode/lib/python2.7/site-packages/django/core/management/__init__.py", line 429, in execute_from_command_line | |
| utility.execute() | |
| File "/Users/nrb/dev/geonode/lib/python2.7/site-packages/django/core/management/__init__.py", line 379, in execute | |
| self.fetch_command(subcommand).run_from_argv(self.argv) | |
| File "/Users/nrb/dev/geonode/lib/python2.7/site-packages/django/core/management/base.py", line 191, in run_from_argv | |
| self.execute(*args, **options.__dict__) |
| Day job: Research programmer, will be freelancing full time come 9/12/2011 | |
| Favorite Python project: SQLAlchemy or NLTK | |
| Favorite Conference: PyCon | |
| Python Experience Level: Intermediate |