HN user

ncarlson

546 karma
Posts27
Comments96
View on HN
news.ycombinator.com 10mo ago

Ask HN: Has anyone else been unemployed for over two years?

ncarlson
459pts565
reference.wolfram.com 2y ago

New and Improved Features in Mathematica 14.0

ncarlson
1pts1
news.ycombinator.com 9y ago

Ask HN: When did the terms Front-End, Back-End, and Full-Stack become prevalent?

ncarlson
2pts1
news.ycombinator.com 14y ago

Ask HN: How can I self-publish talks like InfoQ? (Software question)

ncarlson
1pts0
news.ycombinator.com 14y ago

Ask HN: How do I prevent repetitive strain injury (RSI)?

ncarlson
1pts0
news.ycombinator.com 15y ago

Does the Posterous home page look normal to you?

ncarlson
4pts2
ncarlson.com 15y ago

Working for Bitcoin: Update

ncarlson
25pts16
ncarlson.com 15y ago

Experiment: Will code for Bitcoin

ncarlson
1pts1
www.meetup.com 15y ago

There's a Python UnConference tomorrow in the Denver/Boulder area

ncarlson
1pts0
news.ycombinator.com 15y ago

Ask HN: Is there any good reason to use Google Checkout?

ncarlson
4pts3
i.imgur.com 16y ago

Google updated their search UI. I'm not a fan.

ncarlson
1pts2
news.ycombinator.com 16y ago

Ask HN: Who's hiring? (march 2010)

ncarlson
17pts2
news.ycombinator.com 16y ago

Ask HN: Who's looking for employment?

ncarlson
1pts2
ncarlson.com 16y ago

New AI benchmark - The Toy Box Problem

ncarlson
1pts0
news.ycombinator.com 16y ago

Ask HN: Any tips for hiring a freelance programmer?

ncarlson
5pts2
news.ycombinator.com 16y ago

Ask HN: Have any of you ever wanted to write a compiler or interpreter?

ncarlson
8pts3
news.ycombinator.com 16y ago

Ask HN: Is it just me, or are HN comments becoming more and more negative?

ncarlson
74pts157
news.ycombinator.com 16y ago

Ask HN: Stock data question (again)

ncarlson
2pts2
news.ycombinator.com 16y ago

Ask HN: A question about historical stock data.

ncarlson
3pts4
news.ycombinator.com 16y ago

Ask HN: What's your least favorite tech word? Mine's "non-trivial".

ncarlson
5pts37
www.youtube.com 16y ago

Into the Future: Man and Machines

ncarlson
1pts0
rivit.cs.byu.edu 16y ago

The Magnetic Lasso Algorithm

ncarlson
6pts0
news.ycombinator.com 17y ago

Off-topic: Why do people put [scribd] in a post title when linking to a pdf?

ncarlson
1pts12
news.ycombinator.com 17y ago

Ask HN: Where should I move to maximize my career potential?

ncarlson
7pts16
news.ycombinator.com 17y ago

Any hackers in Denver?

ncarlson
5pts4
news.ycombinator.com 17y ago

Ask HN: Getting accepted into a top level CS program.

ncarlson
20pts23
news.ycombinator.com 17y ago

Ask: Is anyone else using Erlang?

ncarlson
5pts2

How the higher level thought is occurring continues to be a mystery. This is an emergent behavior that wasn’t predicted prior to the first breakthroughs which were intended for translation, not for this type of higher level reasoning.

I'm curious what you mean by higher level thought (or reasoning). Can you elaborate or provide some references?

VMWare had half of its employees laid off in the past two year. Hock Tan cornered the market, taking over VMWare and its competitor, Citrix. Was this caused by Sec 174, or was it just another predatory acquisition?

There's a LOT of pushback against the idea that AI is not magic. Imagine if there was a narrative that said, "[compilers|kernels|web browsers] are magic. Even though we have the source code, we don't really know what's going on under the hood."

That's not my problem. That's your problem.

AI we don’t have a model.

So, some engineers just stumbled upon LLMs and said, "Holy smokes, we've created something impressive, but we really can't explain how this stuff works!"

We built these things. Piece by piece. If you don't understand the state-of-the-art architectures, I don't blame you. Neither do I. It's exhausting trying to keep up. But these technologies, by and large, are understood by the engineers that created them.

42.be (IPv6 only) 9 years ago

Hey zbuf, if you go to any of Cleanfeed's blog posts, the FAQ and Contact links in the footer are broken.

  The headphone jack was putting the additional risk on your device to be crushed.
Can you expand on this? I'm assuming the force required to collapse the 3.5mm cavity would be incredibly high.
  Jacks themselves were good spots to break due to mechanical stress, especially the cheap ones.
The same can be said about the lightning connector.
  It was literally stopping any innovation. Without the jack, new alternatives will pop up at an incredible pace.
This is forced obsolescence. Suppose the jack remained in iPhone 7. Apple would have a much harder time selling wireless earbuds.

These Ask HN's can really be a crap shoot.

  Ask HN: When did the terms Front-End, Back-End, and Full-Stack become prevalent?
  1 point by ncarlson 2 hours ago | past | web | discuss
  
  Ask HN: How can I self-publish talks like InfoQ? (Software question)
  1 point by ncarlson 1531 days ago | past | web
  
  Ask HN: How do I prevent repetitive strain injury (RSI)?
  1 point by ncarlson 1832 days ago | past | web
  
  Ask HN: Is it just me, or are HN comments becoming more and more negative?
  74 points by ncarlson 2497 days ago | past | web | 157 comments

The IoT camera module market seems to be underserved. Here's my feature wishlist:

* A monochrome sensor option

* Better sensor documentation. Where are the quantum efficiency graphs?

* Larger sensors.

* Less emphasis on megapixels, more emphasis on efficiency.

* Exposure control in microseconds

* Binning

* C, CS, or F lens mount. Heck, I'd even accept a M12 mount, so long as the lens isn't glued into place.

Mechanized LambdaJS 14 years ago

It's amazing how similar Javascript and Lua are. For example, the following three statements are equivalent:

    > JS:   { x : 2 + 3, y : 9 }["x"]  * (11 + 23)
    > Lua: ({ x = 2 + 3, y = 9 })["x"] * (11 + 23)
    > Lua: ({ x = 2 + 3, y = 9 }).x    * (11 + 23)
GitHub for Windows 14 years ago

> "Scary crypto stuff"? So you don't understand how PKI works and you're trying to use distributed source control?

Is this an honest question, or are you alluding to the idea that someone who doesn't understand PKI should not use distributed source control?

I see what you're saying. Yeah, one certainly needs to be careful with those sort of high-level abstractions. I remember when I first started learning WPF, I ran into the exact problem you described. I had a data grid bound to an sqlite database. Without optimization, every row update was making three of four calls to the database. When there were a few thousand records, the UI would screech to a halt.

I can't endorse KnockoutJS because I've never used it. However, I'd like to address the two points you made.

> 1. It's magic box coding (as in I put these simple commands in and the environment just handles it for me and I have little idea how)

Is this not abstraction? I'm not familiar with the internals of the Python interpreter, but I'm able to be productive and creative with it.

> 2. It (by Microsoft's admission) hogs bandwidth. In the desktop world that wasn't a problem but in web applications its a big one.

I'm not convinced that this is a problem outside of edge-case scenarios. However, from my understanding, this limitation is overcome in two ways: 1. Large application are broken up into small modules which can be loaded lazily. 2. Time. The average bandwidth of an internet user increases exponentially over time.

> Meanwhile, many early-adopting merchants find that the burst in customers immediately disappears, and since they can’t perpetually discount 75%, those merchants stop using Groupon.

This is the crux of the argument, and no sources are provided. If you're going to write a persuasive argument based on empirical data, you need to cite your sources.

Sure. But before everyone gets all uppity about US censorship, lets not forget that both China and North Korea are: 1.) Spying on their citizens. 2.) Not above an internet kill switch.

Do these comments do anything to further discussion?

> they are FDIC

My question would be, are individual Dwolla accounts protected on a per depositor basis? Or, is it just Dwolla Corp's own bank account which is protected under FDIC. Their website doesn't make that clear.

It's entirely possible that user funds are stored in a bank account, owned by Dwolla, and that bank account is FDIC insured. If that's the case, then that bank account is only insured up to $250,000 USD.

I think what's needed most at the moment is an easy way for US dollars to be exchanged for Bitcoin. This was easy enough when Mt Gox was accepting Paypal.

However, now that Paypal has suspended Mt Gox's account, anyone wanting to work with that exchange now has to jump through additional hoops by opening up a Dwolla or Liberty Reserve account. Personally, I found these sites to be rather shady looking.