Categories
English geeking

LA Youth Hack Jam

Want to Teach Kids to Code? Send ‘Em to a ‘Hack Jam’
100 Kids and their adults gathered last weekend in Los Angeles to learn how to program, how to think, and how to start making things. This is what happened and why.

Enhanced by Zemanta
Categories
English

Second Reality

Almost 19 years ago was released Second Reality, a demo made by Future Crew. At this time, the 486DX2 was the best processor – the 60 MHz Pentium was available but unaffordable.

Categories
Post

Good bye Minitel

French Minitel is history! Service stopped yesterday evening. Those who lived or went to France in the 80s and 90s probably saw one.

Bye-bye Minitel - 2012-07-01

 

Enhanced by Zemanta
Categories
Post

Earthquakes in 2011

Enhanced by Zemanta
Categories
Web site

Only Stars Are Higher | English Russia

Only Stars Are Higher | English Russia.

Categories
English geeking

Elapsed time in UNIX shell

The other day I had enough calculating the time so I just wrote this script:
cat > ~/bin/timediff
#!/bin/sh
if [ -z $2 ]; then
echo "usage: $0 "
echo
echo "ex. $0 11:49 12:51"
exit 1
fi

end=`date +%s -d"$2"`
start=`date +%s -d"$1"`

diff=$(($end-$start))

diff=$(($diff/60))
hours=$(($diff/60))
min=$(($diff%60))
# Prepend a 0 if minute <10
if [ ${#min} -eq 1 ]; then
min=0$min
fi

echo "$hours:$min"

Of course, it works in some cases only. This one is fine:
$ sh ~/bin/timediff 11:49 12:51
1:02

Whereas this one will not work:
$ sh ~/bin/timediff 11:49 1:51
-9:-58

But the output is quite obvious.

Categories
English

Glances v1.3.7 released – System monitoring tool for Linux

System statistics at a glance: Official site.

From

Glances v1.3.7 released – System monitoring tool for Linux | The Hacker News THN.

Categories
English Feeds

Transportation stuff from delicious

[INFOGRAPHIC] 100 Year Old Infographics

A new exhibit at London’s Transport Museum, features a whole bunch of infographic posters all arguing the benefits of public transportation in a decidedly early 1900s style.

Here we are barrelling towards 2012 and living in the future. We invented the Internet, we invented social media, we invented FarmVille, we probably invented too, right? Wrong. Infographics have been around for a long while, as far back as early last century and probably even further back than that. , features a whole bunch of infographicy posters all arguing the benefits of public transportation in a decidedly early 1900s style.

Here we are barrelling towards 2012 and living in the fut …


[INFOGRAPHIC] The Greenest Way to Travel

With Benzinga’s Value Investor, you will receive expert analysis of the most under-the-radar stocks and learn about unique opportunities for realizing profits through long-term trades with minimal downside risk. Try Value Investors free today!

Categories
English Feeds

World Population: Where it’s thick and where it’s thin

World Population: Where it’s thick and where it’s thin: “”

(Via The Big Picture.)

Categories
English geeking

Nice OpenSSL usage tips and examples page

http://conshell.net/wiki/index.php/OpenSSL_usage_tips_and_examples