rdw20101009 | 15 years ago | on: Ask HN: What Python web programming frameworks and tools are you using?
rdw20101009's comments
rdw20101009 | 15 years ago | on: Has a USB memory stick ever failed on you?
I had also bought a 4GB PNY memory stick a few months ago that would corrupt data. I detected it because I was PGP-encrypting the contents, but the signature would not verify upon copying to another machine. I tried several times, then reformatted several times, then tried a few more times before returning the stick for a replacement (in-store return this time).
I have had about a dozen sticks otherwise that seem to work perfectly, but I don't really trust them. I also use Dropbox (love, love, love it), several external USB drives, and a NAS for backups.
rdw20101009 | 15 years ago | on: Ask YC: How to learn the most programming possible in 9 months?
If you already know how to program, then nine months might be a decent timeframe for adding a new tool (or two) to your toolbelt. If you do not already know how to program, then nine months will be just enough to make you dangerous.
I am a web application security engineer (among other things), so I screened and was forced to reject all frameworks because they don't adequately address security (not even webpy), and because they are too heavy.
Instead, I am building a very lightweight, simple, but integrated web content generation layer directly in Python using built-in string formatting. I construct a page using a trivial DOM-like object model that renders to a string web response (HTML, CSS, JS). I push Model data into the DOM-like View under the direction of a page Controller (MVC pattern). However, my View contains the logic to properly encode output contextually to avoid common security vulnerabilities in the web response. Likewise, I have exhaustive input validation to deal with the data in the web request.