This was Intended to be a BSD only blog, but now it's about all Unix Like Free Operating Systems, Linux, FreeBSD etc.
Tuesday, July 30, 2013
Fwd: Embedded RTOS E-News
From: "Embedded News" <embedded_news@mentor.com>
Date: Jul 30, 2013 5:55 PM
Subject: Embedded RTOS E-News
To: "John Sokol" <john.sokol@gmail.com>
|
Saturday, July 27, 2013
Ballmer admits Microsoft built too many Surface RTs, disappointed with Windows sales | The Verge
The article is about average. The 486 comments (as of Jul-27-2023) have some real meat.
Friday, July 26, 2013
Sunday, July 21, 2013
Fwd: ai takes over internet
---------- Forwarded message ----------
From: "Bill Crawford"
Date: Jul 20, 2013 11:39 PM
Subject: ai takes over internet
"MIT is claiming they can make the Internet faster if we let computers redesign TCP/IP instead of coding it by hand. They used machine learning to design a version of TCP that's twice the speed and causes half the delay, even with modern bufferbloated networks. They also claim it's more 'fair.' The researchers have put up a lengthy FAQ and source code where they admit they don't know why the system works, only that it goes faster than normal TCP."
Saturday, July 20, 2013
Oracle switches Berkeley DB license
Oracle had the right to change the BerkeleyDB license to AGPL, but many will view Oracle's switch as a betrayal of trust
http://www.infoworld.com/d/open-source-software/oracle-switches-berkeley-db-license-222097
From the articleFuture versions of Berkeley DB will instead use the GNU Affero General Public License (AGPL). This is also a strong copyleft license, but with an important difference. The AGPL says "your modified version must prominently offer all users interacting with it remotely through a computer network ... an opportunity to receive the Corresponding Source of your version."
Friday, July 19, 2013
Saturday, July 13, 2013
Thursday, July 11, 2013
NOTES on Implementing an Email Parser with Python
import email
# read a file which has just one message
f = open("mbox",'r')
emailMessage = email.message_from_file(f)
f.close()
Or you can read the entire file first by doing:
import email
# Process the message
emailMessage = email.message_from_string(str)
Either way, the email message has been processed for ease of use. The header has been stored in a python dictionary, and the body of the message is in a blob.
The list of available rfc822 headers can be gotten by:
print emailMessage.keys()
Next, you might want to get the value from a field. The lookup is not case sensative.
print emailMessage.get('subject')
And of course you'd like to get the body of the message.
print emailMessage.payload()
Monday, July 08, 2013
Wednesday, July 03, 2013
Tuesday, July 02, 2013
funny photo of random number algorithm
From: Ted
Debian was producing weak crypto keys for a few years, and nobody noticed.
http://www.gergely.risko.hu/debian-dsa1571/random4.jpg
Monday, July 01, 2013
Teen Faces Years in Prison for ‘Sarcastic Comment’ He Made on Facebook
"A Texas teen has been jailed since late March for what his father says was just a dumb joke he posted on Facebook.
(...)
http://gawker.com/teen-faces-years-in-prison-for-sarcastic-comment-he-m-598970268