Wednesday, October 20, 2004
What is Mono?
What is Mono?: "Mono is a comprehensive open source development platform based on the .NET framework that allows developers to build Linux and cross-platform applications with unprecedented productivity. Mono's .NET implementation is based on the ECMA standards for C# and the Common Language Infrastructure."
Omnividea FOBS - FFMpeg C & JMF Bindings
Omnividea FOBS - FFMpeg C & JMF Bindings provides ffmpeg interface to java JMF
BTQueue 0.0.17 has been released
Due to some minor bugs in 0.0.16, I decided to release this version to fix those bugs. Furthermore, sourceforge got some problems yesterday. No one can download.
Link: BTQueue
Link: BTQueue
Bugs in 0.0.16
I've got bug reports of version 0.0.16. Most of them are unnecessary error message, e.g. scrape error due to network failed. Another bug relates to incompatibility of Popen4 on windows since I changed from popen to Popen4.
I plan to release 0.0.17 which is a minor bug fix version very soon. Keep your eyes on btqueue!.
I plan to release 0.0.17 which is a minor bug fix version very soon. Keep your eyes on btqueue!.
O'Reilly Network: Seven Cool Mono Apps
Seven Cool Mono Apps by Edd Dumbill -- Edd Dumbill takes a look at seven of the cool open source programs being built on Mono. It seems like Mono is getting ready for production development.
Tuesday, October 19, 2004
Converting Between Binary and Decimal in Perl
Recipe 2.4. Converting Between Binary and Decimal: "To convert a Perl integer to a text string of ones and zeros, first pack the integer into a number in network byte order[1] (the 'N' format), then unpack it again bit by bit (the 'B32' format)."
sub dec2bin {
my $str = unpack("B32", pack("N", shift));
$str =~ s/^0+(?=\d)//; # otherwise you'll get leading zeros
return $str;
}
sub bin2dec {
return unpack("N", pack("B32", substr("0" x 32 . shift, -32)));
}
Bookmarks Synchronizer
Mozilla Update :: Extensions -- More Info: Bookmarks Synchronizer is a tool for synchronizing your bookmarks at home and anywhere like office with internet access.
Subscribe to:
Posts (Atom)

