Great interview of Jaron Lanier
Who owns the future….
Real-time Identification of live video
This reminds me of Raconteur from Daniel Suarez’s book “Kill Decision”. The future is here !
NeuralTalk and Walk from Kyle McDonald on Vimeo.
Interesting…FPV Monocular Head Mount Micro Display for Aerial
Need to see which daemons are listening for connection requests on a *nix machine
Need to see which daemons are listening for connection requests on a *nix machine ?
“sockstat -4l” for IPv4, and “sockstat -l” for IPv4 and IPv6.
Google Spreadsheet remembers manual calculations !?
How do I not know this ?!
Google Docs Remembers Spreadsheet Formulas So You Don’t Have To
It even recognizes when you want to nest a function within another function. For people who aren’t Excel masters, this should greatly speed up spreadsheet work.
Google API Test
function onOpen() {
getTVID();
}
function getTVID() {
var sheet = SpreadsheetApp.getActiveSheet();
sheet.getRange(‘A1:Z100’).clearContent();
var threads = GmailApp.search(‘from:tv@gmail.com “TV on “‘);
for (var i=0; i < threads.length; i++)
{
var messages = threads[i].getMessages();
for (var j=0; j < messages.length; j++)
{
if (!messages[j].isUnread())
{
continue;
}
tid=messages[j].getSubject();
pid=messages[j].getSubject();
dte= messages[j].getDate();
tvid=tid.slice(tid.length-9, tid.length);
pvid=pid.slice(5, tid.length-12);
sheet.appendRow([dte,pvid,tvid]);
}
}
}
Daemon
In multitasking computer operating systems, a daemon (/ˈdiːmən/ or /ˈdeɪmən/)[1] is a computer program that runs as a background process, rather than being under the direct control of an interactive user.
The future of workstations