Live data from Hacker News

Viewing profile — GeoJawDguJin

GeoJawDguJin

HN member
Joined
Fri, Jan 23, 2009, 2:39 AM UTC
HN karma
106
Public activity
33 items

About GeoJawDguJin

No profile information was provided.

Recent public activity

  1. 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…

  2. comment
    Comment #1147299

    ( ≖‿≖)

  3. comment
    Comment #1142493

    Because... what? Any skilled engineer is somehow automagically also blessed with entrepreneurial spirit?

  4. 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.

  5. 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…

  6. 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…

  7. 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…

  8. 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…

  9. 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…

  10. 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…

  11. 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…

  12. 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...

  13. comment
    Comment #947750

    MacRuby relies on the Objective-C garbage collector, which is disabled on the iPhone.

  14. 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_…

  15. 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 …

  16. 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.

  17. 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…

  18. 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 …

  19. comment
    Comment #473810

    "Ada was created for the D.O.D according to their needs." Fixed that for you.

  20. 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 …

  21. 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…

  22. comment
    Comment #459343

    Some of them do. There are lots of redundant functions in CL, for reasons of backwards compatibility.

  23. comment
    Comment #453181

    I didn't bring up Lisp machines. I'd like to see a Lisp OS of some kind, though.

  24. 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?

  25. 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…