HN user

schtog

488 karma
Posts40
Comments292
View on HN
github.com 17y ago

New programming language: Ioke

schtog
1pts0
news.ycombinator.com 17y ago

Hacker news IRC channel?

schtog
1pts2
news.ycombinator.com 17y ago

Ask HN: How/Where do you host your webapp?

schtog
1pts2
news.ycombinator.com 17y ago

Ask HN: Top universities in the world?

schtog
2pts1
news.ycombinator.com 17y ago

Python+Scipy+Matplotlib vs Matlab?

schtog
73pts44
news.ycombinator.com 17y ago

What open source project should I join?

schtog
4pts3
news.ycombinator.com 17y ago

What would you like to have datamined, visualized about the forum?

schtog
1pts2
news.ycombinator.com 17y ago

PG was right about how spam will look...

schtog
1pts0
news.ycombinator.com 17y ago

Ask HN: Comparing Virtual machines

schtog
2pts0
news.ycombinator.com 17y ago

No more depression posts, solve it instead

schtog
30pts35
news.ycombinator.com 17y ago

Markov chains exposing what Palin really says

schtog
1pts0
news.ycombinator.com 17y ago

Ask HN: Did you switch to Chrome?

schtog
8pts11
www.darkroastedblend.com 17y ago

Biggest ships in the world, freedom ship etc

schtog
1pts0
www.rubyology.com 17y ago

Ruby podcasts

schtog
2pts2
news.ycombinator.com 17y ago

Ask HN: Any chance of monetizing this webapp(solarpower, price)?

schtog
4pts9
lwn.net 17y ago

Frightening bugcounts in commercial software

schtog
1pts4
www.vincentabry.com 17y ago

AI Robotics crée la Perfect Woman (un canular-hoax?)

schtog
1pts0
news.ycombinator.com 17y ago

Ask HN: Best place(s) to find datasets to practice ML and DM?

schtog
5pts2
news.ycombinator.com 17y ago

Ask HN: Best resources to learn about protein folding and algorithms for it?

schtog
10pts9
news.ycombinator.com 18y ago

Why don't more sites use SMS as a form of payment?

schtog
2pts0
news.ycombinator.com 18y ago

What can hackers do for the environment?

schtog
3pts2
news.ycombinator.com 18y ago

Ask HN: What software has made you go "wow?"

schtog
2pts4
news.ycombinator.com 18y ago

Ask HN: I want to add SMS to my service, tips/help/advice?

schtog
27pts15
news.ycombinator.com 18y ago

Ask HN: Charge money on top of SMS?

schtog
1pts0
news.ycombinator.com 18y ago

Querying Google/a search engine through my webapp?

schtog
7pts8
news.ycombinator.com 18y ago

Ask HN: Do you want to touch the screen?

schtog
4pts19
news.ycombinator.com 18y ago

Ask HN: Ethics and laws regarding scraping websites?

schtog
22pts24
news.ycombinator.com 18y ago

Ask HN: tips about VCs and angels

schtog
5pts5
news.ycombinator.com 18y ago

Ask HN: good place to store code online?

schtog
23pts45
news.ycombinator.com 18y ago

How to make money on image search?

schtog
3pts2

"Having free time was great, but in my contract was specified that everything I worked on in my free time belonged to the company."

Wow that is sick.

Fair enough, I stand corrected, I commented as I did because I interpreted it as a typical "science can't explain everything therefore it is useless" or "your theory isn't perfect therefore my theory must be correct" rant.

Just because you don't need to write your own sorting algorithms don't mean you don't have to know how to write one. First of all it is a good introduction to algorithms, analysis and construction and you still have to know the complexity of each to choose the correct one in some cases.

? chater 5 to 7 seem to cover that pretty well.

Part V Uncertain Knowledge and Reasoning 13 Uncertainty 14 Probabilistic Reasoning 15 Probabilistic Reasoning Over Time 16 Making Simple Decisions 17 Making Complex Decisions Part VI Learning 18 Learning from Observations 19 Knowledge in Learning 20 Statistical Learning Methods (pdf) 21 Reinforcement Learning Part VII Communicating, Perceiving, and Acting 22 Communication 23 Probabilistic Language Processing 24 Perception 25 Robotics Part VIII Conclusions 26 Philosophical Foundations 27 AI: Present and Future Bibliography (pdf and counts) Index (html or pdf)

Such a bad article.

Some programming tasks are boring, yes(no shit...).

All? No. Programming can be very challenging, obviously it depends on the task.

If you want a challenge I suggest you pick up computer vision, still 20-30 years down the line a largely unsolved problem. Or create tools to make games programming more productive. Or...the list goes on.

Why OO Sucks 17 years ago

I always thought that OO encourages not rigorous abstract thinking but fuzzy everyday thinking with arbitrary definitions.

Why OO Sucks 17 years ago

how is Lisp/Scheme weakly typed? It is dynamically typed and strongly too(even though the strong/weak typing definition isn't exactly clear).

In Sweden I know Chalmers teaches funcional programming as an obligatory first year course and functional programming is traditionally strong there. In Lund it is taught as an advanced course and not obligatory.

Java seems to be the default language.

I do that all the time.

I like the Dijkstra quote: "Elegance is not a dispensable luxury but a factor that decides between success and failure. "

I also think it is a great way to become a better coder to refactor programs until you think it is perfect or close to rather than just make it work and then leave it because then you will never get better than that.

Yeah it has always bothered me that GUIs are so annoyingly hard to make. I used to use Python a lot and Tk wasn't exactly a dream to work with even if something very basic was easy to get up and going.

However now I use Swing+miglayout+CLojure and making GUIs is supereasy.

Since there seem to be some confusion over what it is good for I'll post some excerpts from a Haskell-session: http://hpaste.org/13412

Basically you get the best of both worlds, static typing, ie types checked at compile-time but you don't have to write out all the types(you can however if you want to).

  add x y = x + y
  Prelude> :t add
  add :: (Num a) => a -> a -> a
Does Gödel Matter? 18 years ago

Does it really mean that a theory can't be found or just like with "everything else", we can only be 99.99999999% sure and never reach 100%? Does it necessarily mean that the imcompleteness theorem extends to all systems? The article linked somewhere else in this thread: http://www.ams.org/notices/200604/fea-franzen.pdf seems to say that it doesn't extend to other "systems".