Windows 7 でファイル名に ~ (チルダ)を含むファイルを検索する
2011-06-23-1: [Windows]
検索窓に
名前:~="~"
を入力。同様に、「$」を含むものを検索する場合は、
名前:~="$"
で検索。
2011-06-23-1: [Windows]
検索窓に
名前:~="~"
を入力。同様に、「$」を含むものを検索する場合は、
名前:~="$"
で検索。
2011-06-07-2: [PHP][Zend Framework]
$config = array(
'siteUrl' => 'http://example.com/oauth',
'consumerKey' => 'xxxxx',
'consumerSecret' => 'xxxxx',
'callbackUrl' => 'http://example.com/callback',
'authorizeUrl' => 'https://example.com/oauth/authorize',
);
$client = new Zend_Http_Client(null, array(
'adapter' => 'Zend_Http_Client_Adapter_Proxy',
'proxy_host' => 'proxyサーバのホスト名',
'proxy_port' => proxyサーバのポート番号,
));
$consumer = new Zend_Oauth_Consumer($config);
$consumer->setHttpClient($client);
2011-06-07-1: [PHP][Zend Framework]
$client = new Zend_Http_Client(null, array(
'adapter' => 'Zend_Http_Client_Adapter_Proxy',
'proxy_host' => 'proxyサーバのホスト名',
'proxy_port' => proxyサーバのポート番号,
));
$twitter = new Zend_Service_Twitter(array(
'accessToken' => $access_token, // Zend_Oauth_Token_Access
));
$twitter->setLocalHttpClient($client);