Viewing profile — kreeger
kreeger
HN member- Joined
- Tue, Apr 26, 2011, 7:17 PM UTC
- HN karma
- 38
- Public activity
- 24 items
- HN profile
- View on Hacker News ↗
About kreeger
Recent public activity
-
comment
Comment #8991785
For a moment there, I thought this was related to the Eero language project ( http://eerolanguage.org ).
-
comment
Comment #8232601
While I like Swift (from what I've played with it, around SourceKitService crashing every two seconds), it doesn't provide you with the "just enough rope" that Objective-C does. Ma…
- story
-
comment
Comment #8022202
Correct; Apple has made the latest Xcode beta available to "free" developer accounts, as of today (source: https://developer.apple.com/news/?id=07112014a ).
-
comment
Comment #7970159
When I worked for Universal Uclick, we released the GoComics app all at the same time for iOS, Android, and Windows Phone. I worked on the iOS release until its launch, and we had …
-
comment
Comment #7458492
DHH is reporting that criminals are bringing down the Basecamp network of sites in a blackmail attempt. A working writeup is on a gist from DHH right here: https://gist.github.com/…
-
comment
Comment #7428681
I'm beginning to appreciate the concept of Interactors and Entities more these days (application-specific business logic versus application-independent business logic), now that I'…
-
comment
Comment #7227734
Granted, to each their own, but the one thing I concern myself with is readability and learning curve, especially on projects where there's even the remotest possibility that someb…
-
comment
Comment #6458447
I glossed over that originally, apologies; I've updated my comment.
-
comment
Comment #6458240
Kudos to Mattt Thompson and the whole community of collaborators that put work into this release. AFNetworking makes a large part of my job making iOS apps a joy, and I can't wait …
-
comment
Comment #5774690
My favorite line from the article: "Even so, his specialty has been hardware, designing a product out of materials such as aluminum and glass - not software, which is based in code…
-
comment
Comment #5262592
Another person trying to make this a "Hacker News vs. Reddit" thing, which still doesn't appeal to the reason sectors of my brain. Definitely not a ripoff; Mashable's clearly grasp…
-
comment
Comment #5245573
Split panes is pretty much the main reason I need iTerm2. That, combined with system-wide hotkey toggling (which I used to get on Terminal with Visor), and Send Commands to All Ses…
-
comment
Comment #4982739
I'm with thwarted on this one. I don't want to put my repo on a service where I have to opt-out of things based on extraneous files in my repo. That's extra clutter in my repo for …
-
comment
Comment #4939945
I'm not a computer scientist, but I speculate it's due to Objective-C's compilation with LLVM.
-
comment
Comment #4916220
As I'm not terribly familiar with AirBnb and its terms, why won't it let the poster spell out "Google"?
-
comment
Comment #4909834
I can't stress enough how important it is to _not_ use `and` and `or`. As a former die-hard fan of those operators, it bit me in the ass so hard when those didn't exactly work the …
-
comment
Comment #4857955
Andrews McMeel Universal / Universal Uclick, Kansas City, MO, looking for a full-time software engineer. We're an awesome, closely-knit tech department with a core web / design / s…
-
comment
Comment #4584110
The Xbox never was an open platform to begin with, unlike the PC. The PC has never been the kind of platform to lock stuff down; while Microsoft may have their merits for doing so,…
-
comment
Comment #4553865
Thank you (x3) for the explanation on how this works and what went wrong. Your comment alone is more insightful on any of these articles that've been submitted on this problem. You…
-
comment
Comment #4298605
Wait a minute, they snagged the Bukkit guys? I must have totally missed that. I'd love a link, if you've got one.
-
comment
Comment #4298585
You also may want to investigate adding a podspec for CocoaPods. http://cocoapods.org/
-
comment
Comment #3883835
Design or number of users regardless, people really need to stop using the word 'disrupt'. It's one of the top reasons I steer clear of TechCrunch.
-
comment
Comment #3334052
So it's not just me, then. IMO, writing `someThing ||= {}` is much more eloquent than `var someThing = someThing || {}`. The first point he raises is a valid argument; CoffeeScript…