タグ

2007年2月23日のブックマーク (3件)

  • New Media

    Creativity in the digital age—where media, art, and technology meet. What is New Media? The term “new media” emerged in the 1990s to describe the intersection of media, art, and technology. Today, it’s a mix of computer science, visual arts, culture, history, sciences, and more, leading to countless career paths. New Media BA  at Purchase In small classes with plenty of opportunities for hands-on

    New Media
    hassylin
    hassylin 2007/02/23
    1ドルをきれいに丸く折る
  • リンク先の Favicon(ファビコン) を自動で表示 | *LOVE IS DESIGN*

    コメント欄やトラックバック一覧など、いろんな場所に使えそうな Favicon(ファビコン)を自動で表示できる API をご紹介します。 コンパクトで無駄に場所をとらないので、ちょっとしたアクセントにいかがでしょうか。 Favicon API (ファビコン) α版 URLを入力して「作成ボタン」を押すだけで、そのサイトのFavicon(ファビコン)を PNG 形式の画像に自動変換してくれます。 サムネイル表示もいいけど、先日 ロサンゼルスで働くウェブデザイナーさん のところにトラックバックをしたら、トップページのトラックバック一覧に自分のファビコンが表示されて、ちょっぴりうれしい気分になりました。 というわけで、さっそくトラックバックのタイトルに送信元のファビコンが表示されるようにカスタマイズしてみました。ぜひこちらの記事にトラックバックしてファビコン自慢してください。トラックバックがたくさ

    リンク先の Favicon(ファビコン) を自動で表示 | *LOVE IS DESIGN*
    hassylin
    hassylin 2007/02/23
    トラックバックにFaviconつけるアイデアはいいかも
  • String::Diff

    NAME String::Diff - Simple diff to String SYNOPSIS use String::Diff; use String::Diff qw( diff_fully diff diff_merge diff_regexp );# export functions # simple diff my($old, $new) = String::Diff::diff('this is Perl', 'this is Ruby'); print "$old\n";# this is [Perl] print "$new\n";# this is {Ruby} my $diff = String::Diff::diff('this is Perl', 'this is Ruby'); print "$diff->[0]\n";# this is [Perl] pr

    String::Diff
    hassylin
    hassylin 2007/02/23
    Stringのdiffをとる。diff部分にタグ埋め込める。