aes | 13 years ago | on: CoffeeScript: less typing, bad readability
aes's comments
aes | 14 years ago | on: YouPorn passwords available for download, thousands of users exposed
aes | 14 years ago | on: Portable sunshine: Earbuds that shine light into your ears
aes | 14 years ago | on: Dmr's home page
http://webcache.googleusercontent.com/search?q=cache:http://...
aes | 14 years ago | on: NYTimes Sues US For Refusing To Reveal Secret Interpretation Of Patriot Act
aes | 14 years ago | on: 3.5 Inches
Since none of these characters can be easily produced on a standard US keyboard, I suspect that the blame belongs not on the author but on his publishing system that thought he meant "4 feet" (or perhaps "4 arcminutes").
aes | 14 years ago | on: Understanding "Prototypes" in JavaScript
return newObject;
'man' and 'jeremy' are objects, not functions.aes | 15 years ago | on: Turn any page into Katamari Damacy
javascript:var i,s,ss=['https://github.com/anttisykari/kathack/raw/master/kh.js','http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js'];for(i=0;i!=ss.length;i++){s=document.createElement('script');s.src=ss[i];document.body.appendChild(s);}void(0);aes | 15 years ago | on: Cost of ASCII art in Tumblr's Page Source
aes | 15 years ago | on: A brief glimpse of Nokia's popularity outside the Western world
For the little glimpses that I've seen, UI development using Qt Quick and QML and is actually pretty nice. Nothing like the Symbian hell, and seemed a good deal more fun than developing for Android. (Can't say it's on par with iOS though, at least not yet.)
This is the first time I'm actually _excited_ by a Nokia technology.
Now is a good time to check it out, since the first phones supporting 4.7 are supposed to come out "soon" (my source at Nokia was reluctant at naming a specific date). And they just put out a new technology preview:
http://labs.qt.nokia.com/2011/01/20/qt-sdk-1-1-technology-pr...
If Qt / QML Quick seems a bit barebones, there's a library called Qt Components which adds things like checkboxes, progress bars etc.:
aes | 15 years ago | on: Ask HN: I built it, "they" didn't come...
1. The landing page does not tell what the service is for and who is it for.
On the first look, it looks like just another URL shortener - but why would I use it over something like 3.ly or j.mp?
2. I tried to read the explanation but bored out. I don't care what "healthy link shortening" is or what rev="canonical" does. The blog post is longwinded and filled with jargon and terms I don't understand. "Publisher"? Am I a "publisher"? Do I want to be? What is the target audience? Am I in the target audience? It's difficult to find out.
3. I put in "google.com" and out comes INVALID_URI.
4. Not having a "Submit" button feels somehow awkward. I'm not sure what I should do in order to shorten the URL. I eventually discovered that pressing Enter and clicking on the "isn't short" text works, but I'd feel better with a "Submit" button.
aes | 15 years ago | on: HN Domain Exchange: Add your unused domains
You might want to send a confirmation to the legitimate contact email address obtained through whois before accepting exchange propositions.
P.S. domainnameexchange.com seems to be available
aes | 15 years ago | on: Chmod -x chmod
cp sh chmod.new
cp chmod chmod.new
aes | 15 years ago | on: Actual drawbacks to omitting semi-colons?
C programmers have always used semicolons and never wasted a second thinking whether they should.
aes | 15 years ago | on: Don't Be Ugly By Accident
http://cdn.okcimg.com/blog/camera/SexAndSmartPhonesByAge.png
aes | 15 years ago | on: Symbian-Guru.com Is Over
Also, Apple had Steve Jobs.
This does not look good for Nokia.
aes | 16 years ago | on: Ooc - modern object oriented c
http://en.wikipedia.org/wiki/Out_of_character
On a serious note: if you label your language as a C, people will be expect C syntax.
I once stumbled upon BitC, but was disappointed because it looked like LISP.
The point, I think, is that the example above should be an error instead of compiling into something you wouldn't expect.
Here's a syntax I've seen a lot:
or even That style is also handy to construct a long list of object literals.> This is called destructuring assignment,
I think destructuring assignment is something else entirely. http://coffeescript.org/#destructuring
> its probably better to use isnt instead of !=, although rather than !=, you would want !==
'!=' is equivalent to 'isnt'. And '!==' is not CoffeeScript at all.