Author Archive

Cat with line numbers

“cat” has always been an easy way to quickly look up a relatively small text file. However sometimes there is a need to have line numbers displayed too.

This is how it is done with cat:

cat -n file.txt

or even

cat file.txt | nl

Orange ElePHPant

It finally arrived after about six months of waiting since respective Kickstarter project announcement. Thank you Eli White and php[architect]!

elephpant

SAFe in 7 minutes

A short video that explains in details what Scaled Agile Framework (SAFe) is as well as defines new terminology.

Spotify Engineering Culture

A valuable insight into Spotify engineering culture that has been influencing Agile adoption by other teams and companies. This is Part 1 and Part 2 hasn’t been recorded yet. Stay tuned to Spotify Labs.

Startup ideas

Apparently there is a very straight forward way to figure out an idea for your next startup. 🙂

craigslist

The word for bear in various languages

The word for bear in various languages

P.S.: Now it makes sense why this special agent is called Oso. 🙂

Buddy System

DryerSocks

And here is a little more serious write up about the buddy system at SlideShare Engineering Blog.

The Old Reader

The Old ReaderIt seems majority of Google Reader subscribers migrated over to Feedly after the former was shut down over a month ago. While Feedly is indeed a nice and well thought app, I still felt it was an overkill for my mere need of staying up to date with several blogs via RSS.

After trying a few more competitors, I finally settled with The Old Reader: simple and familiar UI, easy export, and also important – no unnecessary bells and whistles. On top of that guys at Cerca Apps already had their first beta of the unofficial client for Android rolled out.

The problem with Google Reader going away seemed to be solved almost seamlessly. Well that is what I thought until couple weeks later The Old Reader went public with Desperate times call for desperate measures blog post. Turned out the team behind The Old Reader simply could not handle current exponential growth since the site was created well before announcement of Google Reader shut down with intention to run it for “friends and family”. There was a call for help though and therefore a good chance that things will not be back to square one.

As of now things seemed to settle down. The site was migrated to a new data center to serve current needs better and, of course, faster.

Kudos to Dmitry and Elena and others involved for keeping The Old Reader up and running!

Astrid is back as Tasquid Tasks

An ex-colleague of mine, @shaded2, has been working tirelessly to bring Astrid Android app back as Tasquid Tasks.

While currently it is mostly stabilized fork of the original open sourced Astrid, it does have a new name and logo. Based on current plans the next upcoming feature is adding an alternative (open source) website backend for Tasquid to sync with (since Astrid.com is not available anymore).

Tasquid

Stay tuned – hopefully Tasquid will keep up with Astrid’s original level of awesomeness!

JavaScript: Serialize JSON object to a query string

JavaScript (of course nested objects would require more efforts)

var data = { one: 'first', two: 'second' };
var result = '';
for(key in data) {
    result += key + '=' + data[key] + '&';
}
result = result.slice(0, result.length - 1); 
console.log(result);

jQuery (api.jquery.com/jQuery.param/)

var data = { one: 'first', two: 'second' };
var result = $.param(data);
console.log(result);

YUI (yuilibrary.com/yui/docs/api/classes/QueryString.html#method_stringify)

var data = { one: 'first', two: 'second' };
var result = Y.QueryString.stringify(data);
console.log(result);

« Previous PageNext Page »