richchan | 14 years ago | on: All Programmers Are Self-Taught
richchan's comments
richchan | 14 years ago | on: I just got meta-copied
richchan | 14 years ago | on: Are you a Facebook employee?
richchan | 14 years ago | on: Shell.js: a javascript shell around files in dropbox
Please leave any comment/suggestions.
p.s. it only accepts javascript syntax right now. Writing a more shell-like parser is a potential TODO.
richchan | 14 years ago | on: Advice to young programmers
Any correctly written code can probably be considered good. The rest is about how well it is designed and how it performs in different situations.
richchan | 15 years ago | on: Ask HN: Is it hard to compete at Google Apps Marketplace?
richchan | 15 years ago | on: Solving The Hacker News Problem
But then people may have not like having their up-votes be so transparent..
richchan | 15 years ago | on: (Literally) Drawing the HTML 5 Logo in Canvas with Javascript
The "borders" for each layer are easier -- all the coordinates come from the SVG, after translating and scaling.
richchan | 15 years ago | on: (Literally) Drawing the HTML 5 Logo in Canvas with Javascript
richchan | 15 years ago | on: (Literally) Drawing the HTML 5 Logo in Canvas with Javascript
Anyway, thanks for pointing it out. I will try to fix it when I get home. Before then, have fun with the "interesting effects". =)
richchan | 15 years ago | on: Http://www.Google.com/search?q=recursion
richchan | 15 years ago | on: How Two Shoe Enthusiasts With No Programming Experience Built An iPhone App
richchan | 15 years ago | on: Wikipedia is down
.. and the thousands of tweets coming in about it.
richchan | 15 years ago | on: Google is down
richchan | 15 years ago | on: Orion - web based IDE from Eclipse
It looks like they are really only putting a web frontend on top of eclipse, so all the computation heavy stuff happens on the backend and gets sent back to the browser asynchronously. In other words, it should work as fast as the desktop eclipse (minus latency issues).
richchan | 15 years ago | on: Scalable ACID
I am not sure I am convinced by their results though. They say their deterministic system seems viable when comparing its performance to traditional systems under short in-memory transactions. That is a special case that is clearly in their favor though. In that situation, the amount of time spent in processing data is greatly reduced so the network overhead becomes much more significant - so the system that does less network communications will obviously win...
I guess it may potentially be good for in-memory database systems for stuff like OLTP apps (e.g. VoltDB and TimesTen), but then I think most OLTP apps are okay with a more relaxed isolation...
richchan | 15 years ago | on: New Kindle Leaves Rivals Farther Behind
I wonder if there will be Kindle apps (and app store??) coming any time soon.
richchan | 15 years ago | on: Piwik hits 1.0 - Open source web analytics
Anyone has some stats on how much hit on the server it is doing?
richchan | 15 years ago | on: Twitter announces Site Streams beta
richchan | 15 years ago | on: SocialDeck acquired by Google
Working with and learning from other people is way more effective (than just writing code) in figuring out how to identify good and bad code. And I think formal CS education usually gives people the right tools (like algos, design patterns, data structures, etc.) to understand and work with others.