邊喝水邊看文章,看到這篇就突然嗆到了:We’ll ship when the product is ready. ,這是引用自 IEBlog 的 IE7 的一段話:
I’ve gotten questions about the ship date. Yes, we have a date in mind. I’ll talk about the date after we get feedback from customers and partners. We’re going to release a beta and listen, then refresh the beta and listen some more. We’ll ship when the product is ready.
剛剛在 傳遞訊息 看到的「身心疲累 」:
Slashdot 上看到的爆炸消息:SHA-1 Broken 。這是對岸的強者們把 MD5、SHA-0 給幹掉後,再把 SHA-1 給幹掉…
PS:我們提到 cryptographic hash function 的 broken,通常是指 hash collision (比較容易),而非 reverse function (難度較高)。
用 Perl 寫了一支小程式,用 WWW::Mechanize 把某個 url 抓下來再貼到 ImageVenue 上:
#!/usr/bin/perl
use File::Basename;
use Getopt::Std;
use WWW::Mechanize;
use strict;
my %opt;
getopts('dp:', \%opt);
my $debug = 0;
$debug = 1 if (defined($opt{'d'}));
my $proxy;
if (defined($opt{'p'}))
{
$proxy = $opt{'p'};
}
elsif (defined($ENV{'http_proxy'}))
{
$proxy = $ENV{'http_proxy'};
}
my $url = shift() or die();
chdir('/tmp');
&main();
sub main
{
my $outfile = sprintf('%s', basename($url));
print('* Filename: ', $outfile, "\n");
# Get
my $agent = WWW::Mechanize->new();
$agent->proxy($proxy) if ($proxy ne '');
$agent->get($url);
my $content = $agent->content();
open(O, '> ' . $outfile);
print(O $content);
close(O);
print('* Filesize: ', length($content), "\n");
# then upload
$agent->get('http://www.imagevenue.com/');
$agent->form_number(1);
$agent->field('file1', $outfile);
$agent->submit();
print($agent->content()) if ($debug);
# tell me the url
$agent->form_name('form8');
my $imgurl = $agent->value('select');
chomp($imgurl);
$imgurl =~ s/\s+//g;
print('* Output URL: ', $imgurl, "\n");
# delete temp file
unlink($outfile);
}
第一次看到像這種樣子的公益廣告:(160×600 的廣告,但是只出現一小格 :p)
大家本來就預期 Microsoft 會在今年的 RSA Conference 2005 上發表一些東西,只是沒想到今天早上在 randomlog 看到的新聞會是這個:
At RSA Conference 2005, Microsoft Chairman and Chief Software Architect Bill Gates announces Internet Explorer 7.0, designed to add new levels of security to Windows XP Service Pack 2. Feb. 15, 2005, San Francisco.
在這邊有 Microsoft 網站上的說明:Gates Highlights Progress on Security, Outlines Next Steps for Continued Innovation ,在 MozillaZine 上也有一些消息:Microsoft Internet Explorer 7.0 Beta Due This Summer 。
另外,IE 7.0 將主力放在 Windows XP 及 Longhorn 上,Windows 2000 不在正式 support (但是依據文章內容,會佔 5% 的比率?),而 Windows 95/98/ME 則是完全不支援。
WordPress 1.5 release 了,代號為 “Strayhorn”,可以在下載的頁面上看到。(不過好像還沒看到正式的 release announcement?還是其實已經 announce 很久只是我沒注意到?XD)
剛剛去 PoweDNS 弄了個 Free Slave DNS Hosting,提供兩個 NS RR… (不過在同個 subnet 下,這樣就不是很好了 :P)
想要申請的人在 http://express.powerdns.com/ 這頁申請就可以了。
Posts navigation
Gea-Suan Lin's technical note and murmuring :)