When I realize that I've run a truncate query in production
/* by Cr4zy */

romaâ
hello vonnie
occasionally subtle
Cosimo Galluzzi
NASA
One Nice Bug Per Day
taylor price
Three Goblin Art
d e v o n
Game of Thrones Daily
noise dept.

â
Keni

Discoholic đŞŠ

PR's Tumblrdome
Show & Tell

Andulka

#extradirty

çĽćĽ / Permanent Vacation
Misplaced Lens Cap

seen from Lithuania

seen from South Korea

seen from France

seen from United Kingdom

seen from United States

seen from United States
seen from Vietnam
seen from United Kingdom

seen from France
seen from United Kingdom

seen from France
seen from Australia

seen from TĂźrkiye

seen from United Kingdom

seen from Germany

seen from Germany
seen from United States
seen from TĂźrkiye
seen from Mexico
seen from United States
@cleverstack-blog
When I realize that I've run a truncate query in production
/* by Cr4zy */

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
When all tests pass, except the very last one.
/* by Mauricio Klein */
When a project goes out of control
/* by amabo kcarab */
Creating the âSpotify Music Managerâ Example Application using CleverStack, AngularJS & NodeJS.
Yet another createAbstractBridgeGeneratorLayerForServerResponseFactory.
/* by Cezary KluczyĹski */
Java haha

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Using my own framework like a boss
/* by thendrluca */
When the deadline is dangerously approaching
/* by dawadam */
In a recent interview Joel Spolsky detailed 3 skills every software developer should learn. Read on to find out what they are and let us know if you agree.
Awesome article, spot on
Happy halloween!
Earlier this year, a number of Node.js developers started their own fork of the framework, io.js, after a public spat with the âstewardâ of the framework, Joyent. Today, the Linux FoundationâŚ

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
10 posts!
When the new guy starts writing in CoffeeScript
by @codedependant
6 points and 1 comments so far on reddit
Take a look at the video on youtube via http://bit.ly/1LR4Pk6Â
Introduction to CleverStack video, as featured on youtube and our blog (follow the bit.ly link)
(via http://bit.ly/1iu6V1N)
Unix Philosophy and Node.js
At TxJS the other day, I gave a talk where I mentioned that the Unix Philosophy is a crucial part of the patterns, opinions, and culture of Node.js. As usual, I made my slides available online well in advance of the talk video being available.
For some reason, this brief mention of âUnix Philosophyâ set off a few peoplesâ ire. Since I had only 25 minutes, and every slide could probably be its own talk entirely, I was rather light on elaboration. Chances are, the video wonât add all that much context. But the goal was to pique conversation, so maybe thatâs a success if it invites criticism. After all, uninformed trolling is just an invitation for education, so I thought Iâd explain.
Eric S. Raymond collected a few of the best explanations of the Unix Philosophy in his book, The Art Of Unix Programming. He elaborates on 17 specific principles, but my favorite formulation of the Unix Philosophy is the terse explanation from Doug McIlroy as quoted by Salus in A Quarter Century of Unix:
This is the Unix philosophy:
Write programs that do one thing and do it well.
Write programs to work together.
Write programs to handle text streams, because that is a universal interface.
McIlroyâs slightly longer original 4-point formulation is this:
(i) Make each program do one thing well. To do a new job, build afresh rather than complicate old programs by adding new features.
(ii) Expect the output of every program to become the input to another, as yet unknown, program. Donât clutter output with extraneous information. Avoid stringently columnar or binary input formats. Donât insist on interactive input.
(iii) Design and build software, even operating systems, to be tried early, ideally within weeks. Donât hesitate to throw away the clumsy parts and rebuild them.
(iv) Use tools in preference to unskilled help to lighten a programming task, even if you have to detour to build the tools and expect to throw some of them out after youâve finished using them.
Mike Gancarz, who worked on the X Window System, summed up the Unix Philosophy in 9 points:
Small is beautiful.
Make each program do one thing well.
Build a prototype as soon as possible.
Choose portability over efficiency.
Store data in flat text files.
Use software leverage to your advantage.
Use shell scripts to increase leverage and portability.
Avoid captive user interfaces.
Make every program a filter.
That last point really resonates with something that Ryan Dahl has often said, âEvery program is a proxy.â The first 3 are basically James Hallidayâs rules for living.
All too often, people get hung up on the wrong aspects of the Unix Philosophy, and miss the forest for the trees. The Unix Philosophy is not about a specific implementation, or anything that is necessarily unique to any Unix operating system or program. Itâs not about file descriptors, pipes, sockets, or signals. Those sorts of complaints are like saying that someone is not a buddhist unless they speak Pali.
Unix Philosophy is an outlook for software development, not any specific technical development in software. It is an ideal to reach for, and perhaps ironically, it is an ideal that instructs us to occasionally eschew idealism in favor of practicality.
In Node, the basic building block that people share and interact with is not a binary on the command line, but rather a module loaded in by require(). The universal interface is a text stream, but itâs a JavaScript Stream object, rather than a stdio pipe. (The stdio pipes are of course represented by JavaScript streams, because that is our universal interface, so what else would we use?)
So, in terms of Node.js, hereâs how Iâd express the Unix Philosophy. Alas, I am no McIlroy, and I lack the time or skill to write this any shorter.
Write modules that do one thing well. Write a new module rather than complicate an old one.
Write modules that encourage composition rather than extension.
Write modules that handle data Streams, because that is the universal interface.
Write modules that are agnostic about the source of their input or the destination of their output.
Write modules that solve a problem you know, so you can learn about the ones you donât.
Write modules that are small. Iterate quickly. Refactor ruthlessly. Rewrite bravely.
Write modules quickly, to meet your needs, with just a few tests for compliance. Avoid extensive specifications. Add a test for each bug you fix.
Write modules for publication, even if you only use them privately. You will appreciate documentation in the future.
Working is better than perfect.
Focus is better than features.
Compatibility is better than purity.
Simplicity is better than anything.
The Unix Philosophy is an ideology of pragmatism. It is about balancing the twin needs of writing good software, and writing any software at all. Itâs a practical set of advice for trading a moderate increase in development cost for a much larger reduction in maintenance costs.
In the real world, we are faced with the completely unfair constraint of being human while writing programs and while debugging them, and none of these costs can ever be reduced to zero. This ideology is contextual, and can be applied at all levels of the stack. It is an open acknowledgement that we are actually not smart enough to know how to write the software we need the first time around, because we usually can only fully understand our problems once we have finished solving them.
None of these rules are sacrosanct! In fact, in many cases, they can be at odds, or even completely contradictory. However, if we keep our units of programming small, with simple universal interfaces, we can find leverage the piecemeal structure as a quality ratchet, swapping out clumsy parts as we go along.
Nothing about the Unix Philosophy explicitly relates to a culture of software sharing. However, it should be no mystery that it comes from the software community where we argue at length about the best way to make our programs properly Free. Software that is developed according to these principles is easier to share, reuse, repurpose, and maintain.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
The getting started with CleverStack video (via http://bit.ly/1YmDT4R)
You can also take a look at our introduction video via http://bit.ly/1LR4Pk6
CleverStack, the Enterprise-grade, Open-Source Full-Stack JavaScript Framework built on NodeJS and Angular, MEAN and so much more!
The official CleverStack blog via http://bit.ly/1ONbHnM