pre - posterous

Its no big deal...

Telling a short story has a greater impact that just parroting the facts.

Filed under  //   about a girl   presentation  

Symfony and YUI3 presentation

Loads of interesting stuff here. Hopefully they will post video as well

Filed under  //   javascript   php   symfony   yui  
Posted April 3, 2010

Luc Bessons upcoming movie

I have no idea what this movie is about but I am intrigued

Filed under  //   luc besson   movies  

Dry Erase White Board Paint for Offices | IdeaPaint

Media_httpwwwideapain_hwzut

I need to have one of these on my new pad. I have a giant whiteboard already tho.

Still something about having a giant wall. The only thing cooler if it was scrollable, like butcher paper, so I have infinite space...or maybe more high tech and like a touch screen device. I probably could only afford the low-tech butcher paper type tho...

Filed under  //   creativity   sketching   whiteboard  

Games in our everyday life

Interesting presentation on how games and gaming will be in every part of our life courtesy of corporations that want to keep us engaged

Filed under  //   gaming  

Paul Rand on Visual Design

Paul Rand giving a brief overview of the principles of visual design.

Filed under  //   paul rand   visual design  

YUI & Prototype Bookmarklet

I often want to manipulate or enhance a page I am looking at on the web browser. To make it easier I created a couple bookmarklets that add YUI 2.0 and Prototype 1.6 to the DOM. I'm posting them below for future reference, normally you could drag them to your toolbar but this blog platform doesn't allow bookmarklets.

Add YUI 2.8

Add Prototype

Filed under  //   bookmarklet   javascript   prototype   yui  

Import/Export from sqlite

I had to help a friend not to long ago implement an embedded database interface. He works on a WindowsCE application an the licensing fees on the proprietary embedded db he was using was killing him. After evaluating several alternatives we settles on SQLite. I was surprised at how relatively easy it has been to implement, I have not worked with C/C++ since school years ago but everything came thru quite well. The most trouble I had was walking through all the framework boilerplate COM stuff for WinCE, very verbose.

I recently had to port the db interface to OSX and again it was straightforward. Its a credit to the developers/maintainers of SQLite. Here are two snippets that gave me some trouble to sort out since I was unable to find working examples. The devices my friend works with have maybe 16MB memory tops but needs to handle file BLOBs that can be much larger than that. All examples I found had to do with loading the entire BLOB into memory but I needed chunking.

Import a BLOB

Export a BLOB

Filed under  //   c++   database   programming   sqlite  

Good interview questions?

Actually I do not know if these are good interview questions but they give me a good sense of a person that is applying for a web dev position.

I like to get a general feel of the person being interviewed and whether I could pair program with that person.

A general question is, how would you do the following in HTML/CSS? (and I show them this image):

If you had a List of this data structure (show a generic object with two fields), how would you go about sorting them by field 1 and secondary sort by field 2? I dont require a strict implementation but just general knowledge in pseudo-code

How would you go about implementing a file upload service? This is more of a discussion, I want to know how they think. Do they focus on the server-side, client-side. Drill into whichever area the pick, from form implementation, client validation, communication between client and server, form processing on the server..etc

This generic interview takes less than an hour and has served as a good indicator of the knowledge of the candidate and whether I can work with them.

Filed under  //   employment   interview