memo.xight.org

日々のメモ

カテゴリ : Google

4ページ目 / 全7ページ

Google Homepage API

Summary

Google Homepage のモジュール (Widget)を定義できるAPIが公開.
クリックして拡大

bulkfeeds.net のサーチボックスの場合

<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs
  title="Bulkfeeds Search"
  directory_title="Bulkfeeds Search"
  title_url="http://bulkfeeds.net/"
  description="Search on Bulkfeeds"
  author="Tatsuhiko Miyagawa"
  author_email="miyagawa@gmail.com"
  author_location="Tokyo, Japan"
  render_inline="optional"
  height="60"
  scrolling="true"
/>
<Content type="html">
<![CDATA[
<p>
<form action="http://bulkfeeds.net/app/search2" target="_top">
<input type="text" name="q" value="" />
<input type="submit" value="Search" />
</form>
</p>
]]>
</Content>
</Module>

Reference

Updates from code.google.com: Google Releases Homepage API
http://google-code-updates.blogspot.com/2005/12/google-releases-homepage-api.html
Google Homepage API - Overview
http://www.google.com/apis/homepage/
Google グループ : Google Homepage API
http://groups.google.com/group/Google-Homepage-API
blog.bulknews.net - Bulkfeeds Search module for Google HomePage
http://blog.bulknews.net/mt/archives/001867.html

chalow Google Music Search Plug-in

Source

### Google音楽検索へのリンクプラグイン
# usage: {{google_music('キーワード')}}
sub google_music {
	my ($str) = @_;
	my $prefix = q(http://www.google.com/musicsearch?q=);
	return qq(<a href="$prefix$str" title="Google Music - $str">Google 音楽検索 - $str</a>);
}

Google Music Search

Summary

キーワードを入れると,Artists,Songs,Albums などにマッチする検索結果を表示.
アーティストを選択すると,そのアーティストのアルバムなども検索可能.
クリックして拡大クリックして拡大

Reference

Google 音楽検索 - enya

Google の電卓機能がもの凄い理由

answer to life the universe and everything

Googleの電卓機能は '人生、宇宙、すべての答え' の答えを知っている.
answer to life the universe and everything

ダグラス・アダムズのSFコメディ「銀河ヒッチハイク・ガイド」シリーズ3冊目「宇宙クリケット大戦争」で,
ネズミのグループに対してスーパーコンピューターのディープ・ソートが与える回答より.

Amazon - 銀河ヒッチハイク・ガイド: DVD

Reference

SUNPILLAR情報館 裏技室 - Google電卓
http://www.mc.ccnw.ne.jp/sunpillar/game/urawaza/other/google_calculator.html
dive into mark - 2003-08-14 - Google calculator
http://diveintomark.org/archives/2003/08/14/calculator

Wikipedia - 人生、宇宙、すべての答え
Wikipedia - The Answer to Life, the Universe, and Everything

銀河ヒッチハイク・ガイド: DVD



via

はてな - Googleの、ヘルプにも載っていない意外な使い方と知られざる裏技を教えてください。
http://www.hatena.ne.jp/1132893049

絵文録ことのは - 2003-10-19
http://kotonoha.main.jp/2003/10/19googleculculate.html

ウェブマスターのための Google情報

Summary

「リンクの先読み機能」を発見
http://www.google.co.jp/intl/ja/webmasters/faq.html#prefetching

Reference

Google - ウェブマスターのための Google 情報 - 高度な質問
http://www.google.co.jp/intl/ja/webmasters/faq.html
Google - ウェブマスターのための Google 情報 - Googlebot
http://www.google.co.jp/intl/ja/webmasters/bot.html
Google - ウェブマスターのための Google 情報 - ウェブマスターのためのガイドライン
http://www.google.co.jp/intl/ja/webmasters/guidelines.html
Google グループ : google.public.support.general
http://groups.google.co.jp/group/google.public.support.general?lnk=lr&hl=ja

Google Sitemaps の Verify

Summary

1. Google Sitemaps で指定されたファイル名 (GOOGLExxxxxxxxxxxxxxxx.html) で空のファイルを作成
2. 指定されたURIに配置.
3. Google Sitemaps で verify を行う.
4. stats を見ることが可能.

chalow Google Local Plug-in

Source

### Google Local Plug-in
# usage: {{google_local('what','where')}}
sub google_local {
	my ($what,$where) = @_;
	my $prefix = q(http://local.google.co.jp);

	my $what_enc = q();
	$what_enc = Jcode->new($what)->utf8;
	$what_enc =~ s/([^0-9a-z_ ])/'%'.unpack('H2', $1)/gei;
	$what_enc =~ s/\s/+/g;

	my $where_enc = q();
	$where_enc = Jcode->new($where)->utf8;
	$where_enc =~ s/([^0-9a-z_ ])/'%'.unpack('H2', $1)/gei;
	$where_enc =~ s/\s/+/g;

	my $ret  = qq(<a href="$prefix/local?q=$what_enc&near=$where_enc" title="Google Local - $where の $what">);
	   $ret .= qq(Google Local - $where の $what);
	   $ret .= qq(</a>);
	return $ret;
}

map.rails2u.com

Summary

クリックして拡大
  郵便番号から住所を取得.
  そのまま緯度,経度を取得してGoogle Mapsを表示.
  郵便番号は日本郵政公社のデータ[2005-10-20-2]を,
  緯度,経度は街区レベル位置参照情報ダウンロードサービス[2003-11-14-4]のデータを利用.

Reference

  map.rails2u.com
  http://map.rails2u.com/
  map.rails2u.com - help
  http://map.rails2u.com/help.html
  日本郵政公社 - 郵便番号データ
  http://www.post.japanpost.jp/zipcode/dl/kogaki.html
  街区レベル位置参照情報ダウンロードサービス
  http://nlftp.mlit.go.jp/isj/top.html

via

  cl.pocari.org - 2005-07-12
  http://cl.pocari.org/2005-07-12-2.html

Google Sitemaps とChangeLogメモ

Summary

  Googleのロボット巡回時に取りこぼしを防ぐ目的で,Webサイト運営者がURLの一覧を提供可能.
  利用にはGoogleのアカウントが必要.
  cli2sitemap.pl を利用すれば cl.itemlist から Google sitemaps 用の XMLが生成可能.

Reference

  Google Sitemaps
  https://www.google.com/webmasters/sitemaps/

  絵文録ことのは - 2005-06-04 - Google Sitemaps グーグル・サイトマップ (ベータ版) FAQとプロトコル全訳
  http://kotonoha.main.jp/2005/06/04google-sitemaps.html

  たつをのChangeLog - 2005-06-13 - Google Sitemaps に取り掛かる
  http://chalow.net/2005-06-13-1.html

Google Web Accelerator

Summary

  Google は 2005-05-04 に Webブラウジングを高速化するアプリケーション
  `Google Web Accelerator' をGoogle Labs にて公開.
  Web ページの読み込み速度を向上させるソフトウェア.
  送信データの圧縮,差分情報のみのダウンロードなどのアプローチで高速化を実現.

Reference

  Google Web Accelerator
  http://webaccelerator.google.com/

via

  SEM リサーチ - 2005-05-05 - Google、ブラウジングを高速化するGoogle Web Acceleratorを公開
  http://www.sem-r.com/21/23/20050505090402.html