Posted by Delicious auto poster
Wed, 20 May 2009 07:19:30 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 06 May 2009 07:19:10 GMT
- How to get VMWare 6.5 workstation working again after Ubuntu upgrade
- Upgraded Intrepid->Jaunty today, and needed to follow the recipe in this forum post to get vmWare working again. I’m sure this is obvious to lots of people, but it was useful to me to find this nice short recipe.
- Posted: Tue May 05 16:41:03 UTC 2009
- How to implement COMET with PHP
- Useful little demo showing how to do Comet. The PHP part is comparatively uninteresting. The little javascript class to do the client-side COMET is instructive.
- Posted: Tue May 05 16:29:55 UTC 2009
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 29 Apr 2009 07:20:07 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Fri, 24 Apr 2009 07:19:53 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Thu, 16 Apr 2009 07:19:41 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Sat, 21 Mar 2009 07:19:59 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 25 Feb 2009 07:19:11 GMT
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Delicious auto poster
Wed, 04 Feb 2009 07:19:40 GMT
- Lessons Learned: Sharding for startups
- Interesting article on how to go about preparing for sharding before you have the volume that requires sharding. So you can shard when you need to, but don’t pay the overhead if your app never reaches the point of needing to scale.
- Posted: Tue Feb 03 20:23:46 UTC 2009
- “Bill de hÓra: “Just use POST
- Interesting article on one of the sticky issues in designing REST interfaces that accept partial updates to resources.
- Posted: Tue Feb 03 16:21:02 UTC 2009
Click here for all of my del.icio.us bookmarks.
no comments
Posted by Jonathan Altman
Sat, 31 Jan 2009 06:32:00 GMT
Summary
I did not think I would actually make today one of the 100 days, but I pushed through. I guess the incentive of challenging myself is working ;-)
Accomplishments
- Finished debugging the last part of adding the second controlled list admin table. Add and remove working
- Added the third and final admin table
- Committed
Issues
Ready to move on past admin page. Data for the main part of the application can now be entered and things are ready to move to building the main part of the app now.
LOC counts are harder if you don’t commit your code every day. I will have to figure out how I can reconcile committing the done LOCs versus not breaking the build, as it were. I believe using git’s staging capability will be important for doing that, or I might have to go to trunk and a stable branch, or I can use git clone and keep unstable local and my remote repos stable. Any way will teach me more about git, but it will be easier to manage the tasks of this challenge and the requirements of good codebase hygiene to figure one of them out.
Posted in technical | Tags 100x100, challenge, coding | no comments
Posted by Jonathan Altman
Fri, 30 Jan 2009 05:11:00 GMT
Summary
After having to make the day I thought up the idea be my Prologue, January 29 turned out to be fairly easy to make 100 lines of code. Not every day will be this easy, I bet. I also know that I opted for get things done over polish things to perfection. There is definitely some code that should be factored out and made common, but the pattern hasn’t emerged to my brain yet. But the functionality has definitely moved forward
Accomplishments
So here are the accomplishments today:
- Moved a little forward on getting Google App Engine SDK debuggable in NetBeans. I’m pretty sure what I’ve done is leading me down a blind alley and will end up being scrapped, but I can now start up my app in the Google App Engine SDK from inside NetBeans. But breakpoints clearly don’t work, and I am pretty sure it has to do with the execution model of Google App Engine and so the only way to get it working right would be to delve into the internals of the SDK to fix
- Got the major admin page for my app moving significantly forward. There are 3 “control table” models that provide the inventory in this application, and there’s what I hope is a nice AJAX-y admin page from which I want users to be able to manage those lists. First of 3 lists is done, so you can add and remove items. Made good progress on the second list supporting add and remove
Issues
Code is not in a completely stable state: second list’s table for add/remove is not adding quite correctly yet. That will be tomorrow’s work. I should probably put a bit of effort into understanding more about how to debug Google App Engine SDK by either getting it in an interpreter/debugger where I can see breakpoints, or learning how to do printf/stderr/console type logging in it. I am sure it can be done, and answer is probably a google search away. But I’m making progress without it, so it is not the biggest issue.
Posted in technical | Tags 100x100, challenge, coding | no comments