Viewing profile — GeoJawDguJin
GeoJawDguJin
HN member- Joined
- Fri, Jan 23, 2009, 2:39 AM UTC
- HN karma
- 106
- Public activity
- 33 items
- HN profile
- View on Hacker News ↗
About GeoJawDguJin
No profile information was provided.
Recent public activity
-
comment
Comment #1157257
MacVim's full screen mode has the neatest implementation I've seen of this. Play with the 'fuoptions' setting, which gives you control over the margin color and the maximization be…
-
comment
Comment #1147299
( ≖‿≖)
-
comment
Comment #1142493
Because... what? Any skilled engineer is somehow automagically also blessed with entrepreneurial spirit?
-
comment
Comment #1138452
And how is it that other third party software mysteriously has access to APIs that Flash allegedly doesn't? For example, MPlayer is able to offload work to the GPU.
-
comment
Comment #1089992
The Hulu developers didn't pick Flash because it was "easy." They picked it because it allowed them to retain a high degree of control over their streaming video content -- control…
-
comment
Comment #1057468
That's kind of a bogus question to begin with. Africa is not exactly culturally homogenous, and in fact Egypt (and a lot of nearby civilizations) would be more appropriately regard…
-
comment
Comment #1021008
Currently, Apple only makes membrane keyboards. Even as membrane keyboards go, the best I can say about them (subjectively) is that they're not quite as awful as most of the compet…
-
comment
Comment #1011622
I've seen some people use "myth" and "cult" to describe the theistic and worshipful aspects of religion, respectively. Unfortunately these words both have other, more common meanin…
-
comment
Comment #975103
In the most general case it uses boxing strategies, but it's also able to behave like C++ with certain compile-time optimizations turned on (at the cost of slowing down compilation…
-
comment
Comment #975067
No, the simplest case for Haskell would be type variables. For example, the map function doesn't need typeclasses at all: map :: (a -> b) -> [a] -> [b] For the record, in Go+generi…
-
comment
Comment #963122
These days, the Cocoa text system on Macs is so ridiculously feature-complete that you can do this in web browsers and chat programs as well, along with “smart quotes” and automati…
-
comment
Comment #950600
"But a pastebin like no other in the Internet." Isn't this pretty much a reimplementation of codepad.org? So that's not entirely accurate...
-
comment
Comment #947750
MacRuby relies on the Objective-C garbage collector, which is disabled on the iPhone.
-
comment
Comment #832813
It's a Haskell library: http://hackage.haskell.org/package/parsec Here's a tutorial that uses it to parse a simplified Scheme: http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_…
-
comment
Comment #682683
Rails folks are like that. Even though the rest of the Ruby community is much more reasonable, the weekly Rails debacle has driven a lot of people away from Ruby, including me. If …
-
comment
Comment #631087
That's nice. Now let's see an official client for set-top boxes, and maybe phones. It's very buggy, by the way. Crashes within 30 seconds every time I use it.
-
comment
Comment #519449
There are a lot of bogus links showing up on the front page with obviously falsified vote counts (numbers starting with the digits "1337"). I'd say, yeah, it's been seriously compr…
-
story
Ask HN: Wireless text-mode thin client?
There are a lot of devices floating around these days (iPod Touch, eeepc, everything in between) that make it a lot more convenient to get distracted by the internet. However, for …
-
comment
Comment #473810
"Ada was created for the D.O.D according to their needs." Fixed that for you.
-
comment
Comment #473663
As if they're hard to write...? (define (foldr f end xs) (if (null? xs) end (f (car xs) (foldr f end (cdr xs))))) (define (foldl f start xs) (if (null? xs) start (foldl f (f start …
-
comment
Comment #471421
Typesafe generics have been in ML from the get-go (1970s) from what I remember. People like to talk about how type inference is useful, but it's really the generic polymorphism tha…
-
comment
Comment #459343
Some of them do. There are lots of redundant functions in CL, for reasons of backwards compatibility.
-
comment
Comment #453181
I didn't bring up Lisp machines. I'd like to see a Lisp OS of some kind, though.
-
comment
Comment #453052
> Could this be handled by macro programming on a lisp machine? Sure! Now all we need is a lisp machine that anyone can run on modern hardware. Any ideas?
-
comment
Comment #452998
iPhone, iPhone, iPhone. If you know OOP and C (that's regular C), you can pick up Objective-C in a matter of hours. If you don't know C already, you'll have to learn it anyway as p…