Daniel's Tumblog2008-06-20T15:38:01ZWould you work with micromanaging boss, no salary, and all your work thrown away?Stanislav Shalunov2008-06-20T15:38:01Z

If you think the coming nuclear winter will make job market tough for employees, you need to hear about the job offer my daughter got recently.

Indeed!

Tags: HUMOR INSIGHT EDUCATION

Project EaRing: A Meta-Literal MachineZed Shaw2008-06-18T16:36:56Z

In conclusion, you're fucked. :)

Tags: PROGRAMMING HUMOR INSIGHTFUL HATE

In Defence of (0/:l)(_+_) in ScalaRicky Clarkson2008-01-07T10:16:30Z

"Optimising your notation to not confuse people in the first 10 minutes of seeing it but to hinder readability ever after is a really bad mistake."

Hear hear!

Tags: PROGRAMMING FUNCTIONAL CATAMORPHISMS SCALA

Psychopaths in the software industryRickard Öberg2008-01-06T18:47:38Z

Since perhaps not many of you are familiar with this topic, I thought it'd be appropriate to write down some notes about it, to relate what is happening in our software industry, of which Zed's rant is but one description, to how psychopaths think, and in particular, how they operate in an organizational setting.

Tags: PSYCHOLOGY BUSINESS

autoblissMatt Mahoney2008-01-06T00:22:24Z

autobliss 1.0 simulates a programmable 2-input logic gate that you can program using reinforcement learning, i.e. reward and punishment. It can learn any of the 16 possible 2-input logic functions, i.e.AND, OR, XOR, NAND, etc. You train it by rewarding it when it gives the correct output (0 or 1) for a given input (00, 01, 10, 11), and punishing it when it gives the wrong output.

I'd like to see implementations of this in other languages when I have time.

Tags: PROGRAMMING C AI

A Guide to Deploying Rails ApplicationsAndrzej Krzywda2008-01-06T00:21:15Z

The only time when I slow down a bit is when I create and deploy a new project. If I saved the time somehow I could spend this time solving business problems instead.

More sage advice.

Tags: RAILS PROGRAMMING WEB-DEVELOPMENT

Io has a Very Clean Mirrorwhy the lucky stiff2008-01-06T00:19:56Z

Did you know that Io’s introspection and meta tricks put Ruby to serious shame? Where Ruby once schooled Java, Io has now pogoed.

Io should be getting a boost in users after this.

Tags: IO PROGRAMMING OBJECT-ORIENTED REFLECTION

Continuations in Uncommon WebBill Clementson2008-01-06T00:18:47Z

For those of you unfamiliar with UCW, you might question how it can be "continuation-based" when CL doesn't support continuations. Well, Marco Baringer (the creator of UCW) has written a CPS transformer that saves the lexical and GUI state in a web application written with UCW.

Wow.

Tags: PROGRAMMING LISP CONTINUATIONS

Character Mandelbrot in Common LispJ.P. Larocque2008-01-06T00:17:39Z

Mandelbrot in Common Lisp, rendered with textual characters.

Tags: PROGRAMMING LISP FRACTALS MATH GEOMETRY

Hamming's problemChung-chieh Shan2008-01-06T00:16:45Z

Here’s Dijkstra’s solution in Haskell...

Exactly what it sounds like. Short, sweet, very cool.

Tags: PROGRAMMING HASKELL