OnTimeUpdates: schedule updates to Twitter and Facebook
0
Site works OnTimeUpdates to deploy Comments directly to Facebook and Twitter once without having to navigate between them to spread this one, can be at the site also schedule updates autonomic both the Facebook and Twitter to publish at a certain time and will be published automatically, the site also you can upload images to your Facebook Facebook and the lifting of such scheduling.
To visit the website: http://ontimeupdates.com
New project Play Wii online “using WebBrowsers”
0The idea of the project is to create a website on the Internet for the Games of collective and individual, using Wii .
And the construction of two sections:
1 – server system linked Wii processors.
2 – Client (Flash) to activate the browser Highlighted Camera
We still plan the project will be an open-source can be for all involved to work or ideas
Wait for your comments.
Loomnit share anything, anywhere “Chrome extension ” 1.0 :)
1
Dropbox Nokia application v1.2 soon
14After the first version of the program I’m received a lot of comments on it. Most of these problems because i don’t have Access to (Dropbox API)but the past week received this message

And started working .
In the coming weeks will be the second edition is ready
And will be published under a GLP and Free.
Thank you to everyone who sent me notes and reports the error
Patent Absurdity: how software patents broke the system
0
Patent Absurdity explores the case of software patents and the history of judicial activism that led to their rise, and the harm being done to software developers and the wider economy. The film is based on a series of interviews conducted during the Supreme Court’s review of in re Bilski— a case that could have profound implications for the patenting of software. The Court’s decision is due soon…
Game Design (2nd Edition) E-Book
0
“Game Design, Second Edition” offers a behind-the-scenes look at how a game gets designed and developed – from the day the idea is born to the day the box hits the shelves. (more…)
PHP function time since
0for share :
-
Function time_since($event_time)
-
{
-
$diff = time() - $event_time;
-
-
switch (true)
-
{
-
case $diff < 60:
-
return $diff >= 2 ? sprintf('%d seconds ago', $diff) : 'a second ago';
-
case $diff < 3600:
-
$rem = $diff/60;
-
return $rem >= 2 ? sprintf('%d minutes ago', $rem) : 'a minute ago';
-
case $diff < 86400:
-
$rem = $diff/3600;
-
return $rem >= 2 ? sprintf('%d hours ago', $rem) : 'an hour ago';
-
case $diff < 604800:
-
$rem = $diff/86400;
-
return $rem >= 2 ? sprintf('%d days ago', $rem) : 'yesterday';
-
case $diff < 2419200:
-
$rem = $diff/604800;
-
return $rem >= 2 ? sprintf('%d weeks ago', $rem) : 'last week';
-
case $diff < 29030400:
-
$rem = $diff/2419200;
-
return $rem >= 2 ? sprintf('%d months ago', $rem) : 'last month';
-
default:
-
$rem = $diff/29030400;
-
return $rem >= 2 ? sprintf('%d years ago', $rem) : 'last year';
-
}
-
}







