• submit to reddit
Mitch Pronschinske05/17/13
1423 views
0 replies

Links You Don't Want To Miss (May 17)

New JavaScript and CSS tools are on their way, along with a managed NoSQL DB from Google. Plus Jekyll 1.0 and a super-jumping robot.

John Cook05/18/13
1324 views
0 replies

Extreme Syntax

Lisp practically has no syntax. It simply has parenthesized expressions. This makes it very easy to start using the language. And above all, it makes it easy to treat code as data. Lisp macros are very powerful, and these macros are made possible by the fact that the language is simple to parse.

Chris Spagnuolo05/17/13
2452 views
0 replies

How to Cross the Chasm

If you haven't heard of him before, Geoff Moore writes and speaks about the technology adoption lifecycle and the marketing and business strategies for successfully navigating this lifecycle.

Mitch Pronschinske05/17/13
2386 views
0 replies

Stupid Questions and n00bs: 10 Intriguing Things You Should Do

It really doesn’t matter how long you’ve been in this industry or which position you hold, understanding generation n00b and the value it brings should be mandatory for you.

Robert Diana05/16/13
7046 views
0 replies

The Big List of 256 Programming Languages

I am not recommending a specific language over others at this time, but providing a long list of languages based on GitHub and TIOBE.

Paul Reed05/16/13
2101 views
0 replies

The Ship Show: Does Your Entire Team Have to Git It?

Version control is becoming a ubiquitous part of the “DevOps movement,” and we talk through what level of understanding should be expected, what level of training should be provided, and whether those are different for different teams or different tools.

Allen Coin05/16/13
4270 views
1 replies

Links You Don't Want to Miss (May 16)

Today: A full-text client-side search in CSS3, Georgia Tech's online MS in Computer Science for $7,000, 3 new APIs for Android announced at Google I/O, and a Klingon translator!

Paul Hammant05/16/13
2280 views
0 replies

The Sorry State of the Anti-Software Patents Movment

Paul Hammant takes a broad look at the anti-software patent organizations, old and new, and where we are right now in the process of affecting real change in US software patent laws.

John Sonmez05/16/13
2399 views
3 replies

Bad Advice: “Stop Working So Hard”

Would we ever want to live in a world where working harder didn’t amount to anything more, but rather ended up returning you less?

Giorgio Sironi05/15/13
1137 views
0 replies

Cloning in PHP

Cloning is an operation consisting in the duplication of a data structure, usually to avoid the aliasing problem of having different code modify the same instance in inconsistent ways. In PHP, cloning can be accomplished in multiple ways - and in some cases it can be avoided altogether.

Chase Seibert05/15/13
1746 views
0 replies

Introducing Advocoders

Good companies realize they need to involve their engineering team to help recruit. That could mean hosting drink ups, sending the team to conferences and old fashioned professional networking. But what about your engineering blog?

Eric Gregory05/15/13
3523 views
0 replies

Dev of the Week: Michael Sahota

This week we're talking to Michael Sahota, Certified Scrum Master, active member of the Agile community, and co-organizer of Agile Tour Toronto.

Eric Gregory05/15/13
2784 views
0 replies

Links You Don't Want To Miss (5/15)

Today: The Universal Bytecode, an old math problem solved, the sound of sorting (algorithms), and a solution for automating development environments. Plus: the long history of selfish generations.

Abby Fichtner05/15/13
1702 views
0 replies

Who Are You Imitating?

And so now, as I’m wondering what my next “big thing” will be (no pressure, Abbs) – I also wonder who might be next. Am I exposing myself to enough awesome to let me grow or am I getting too comfortable with who and what I know today?

Nick Johnson05/14/13
4138 views
0 replies

Algorithm of the Week: Damn Cool Secure Permutations with Block Ciphers

A secure permutation is one in which an attacker, given any subset of the permutation, cannot determine the order of any other elements. A simple example of this would be to take a cryptographically secure pseudo-random number generator, seed it with a secret key, and use it to shuffle your sequence.