aka) Author: Christian Davén Version: 2.0 Author URI: http://www.daven.se/usefulstuff/ */ # adds an options page to the options menu function SUP_add_options_page() { if(function_exists("add_options_page")) add_options_page("Smart Update Pinger", "Smart Update Pinger", 5, basename(__FILE__), "SUP_show_options_page"); } # shows the options page function SUP_show_options_page() { $ping = get_option("SUP_ping"); $uris = get_option("ping_sites"); $pingservicesnow = "今すぐ ping を送信!"; if(isset($_POST["ping"]) && $_POST["ping"] == $pingservicesnow) { SUP_log("手動で ping を送信中 ..."); SUP_ping_services(); } elseif(isset($_POST["submit"])) { $uris = $_POST["uris"]; $ping = 0; if($_POST["ping"] == 1) $ping = 1; update_option("SUP_ping", $ping); update_option("ping_sites", $uris); echo '

設定を保存しました.

'; } $checked = ''; if($ping == 1) $checked = 'checked="checked"'; echo '

ping 送信先のサーバ

以下に登録されている ping サーバへは記事を投稿する際,自動的に ping 送信や更新通知がなされます。WordPress が通常行うような,以前書いた記事の編集時ではありません

注意: このリストは オリジナルのアップデートサービスリストと同期します。.

複数サーバを登録する際は改行で URI を分けて下さい

Ping 送信ログ

このプラグインのログです(下に行くほど新しいログです)

'.SUP_get_last_log_entries(100).'

'; } # telling WordPress to ping if the post is new, but not if it's just been edited function SUP_ping_if_new($id) { global $wpdb, $post_title; if(get_option('SUP_ping') == 1 and get_option('ping_sites') != "") { # fetches data directly from database; the function "get_post" is cached, # and using it here will get the post as is was before the last save $row = mysql_fetch_array(mysql_query( "SELECT post_date,post_modified FROM $wpdb->posts WHERE id=$id")); # if time when created equals time when modified it is a new post, # otherwise the author has edited/modified it if($row["post_date"] == $row["post_modified"]) { if($post_title) SUP_log("Pinging services (new post: “".$post_title."”) ..."); else SUP_log("Pinging services (新規の記事の投稿) ..."); SUP_ping_services(); # Try commenting the line above, and uncommenting this line below # if pinging seems to be out of order. Please notify the author if it helps! # generic_ping(); } else { if($post_title) SUP_log("NOT pinging services (“".$post_title."” の設定が変更されました)"); else SUP_log("NOT pinging services (記事が編集されました)"); } } else SUP_log("NOT pinging services (管理者が ping 送信を無効にしています)"); } # More or less a copy of WP's "generic_ping" from functions.php, # but uses another function to send the actual XML-RPC messages. function SUP_ping_services() { $services = get_settings('ping_sites'); $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines $services = trim($services); if ( '' != $services ) { $services = explode("\n", $services); foreach ($services as $service) SUP_send_xmlrpc($service); } } # A slightly modified version of the WordPress built-in ping functionality ("weblog_ping" in functions.php). # This one uses correct extendedPing format (WP does not), and logs response from service. function SUP_send_xmlrpc($server = '', $path = '') { global $wp_version; include_once (ABSPATH . WPINC . '/class-IXR.php'); // using a timeout of 3 seconds should be enough to cover slow servers $client = new IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path)); $client->timeout = 3; $client->useragent .= ' -- WordPress/'.$wp_version; // when set to true, this outputs debug messages by itself $client->debug = false; $home = trailingslashit( get_option('home') ); # the extendedPing format should be "blog name", "blog url", "check url" (whatever that is), and "feed url", # but it would seem as if the standard has been mixed up. it's therefore best to repeat the feed url. if($client->query('weblogUpdates.extendedPing', get_settings('blogname'), $home, get_bloginfo('rss2_url'), get_bloginfo('rss2_url'))) { SUP_log("- ".$server." への ping 送信が成功しました (拡張フォーマット)"); } else { # pinging was unsuccessful, trying regular ping format if($client->query('weblogUpdates.ping', get_settings('blogname'), $home)) { SUP_log("- ".$server." への ping 送信が成功しました"); } else { SUP_log("- ".$server." への ping 送信が失敗しました。 以下のエラーメッセージが返されました: “".$client->error->message."”"); } } } $post_title = ""; # Receives the title of the post from a filter below function SUP_post_title($title) { global $post_title; $post_title = $title; return $title; } # ----- # Log stuff $logfile = ABSPATH."wp-content/smart-update-pinger.log"; # for debugging function SUP_log($line) { global $logfile; $fh = @fopen($logfile, "a"); @fwrite($fh, strftime("%D %T")."\t$line\n"); @fclose($fh); } function SUP_get_last_log_entries($num) { global $logfile; $lines = @file($logfile); if($lines === false) return "Error reading log file (".$logfile."). This could mean that the wp-content directory is write-protected and no log data can be saved, that you have manually removed the log file, or that you have recently upgraded the plugin."; else { $lines = array_slice($lines, count($lines) - $num); $msg = ""; foreach($lines as $line) $msg .= trim($line)."
"; return $msg; } } # ----- # adds a filter to receive the title of the post before publishing add_filter("title_save_pre", "SUP_post_title"); # adds some hooks # shows the options in the administration panel add_action("admin_menu", "SUP_add_options_page"); # calls SUP_ping whenever a post is published add_action("publish_post", "SUP_ping_if_new"); # calls SUP_ping_draft when changing the status from private/draft to published # add_action("private_to_published', 'SUP_ping_draft'); # removes the "WordPress official" pinging hook remove_action("publish_post", "generic_ping"); # activates pinging if setting doesn't exist in database yet # (before the user has changed the settings the first time) if(get_option("SUP_ping") === false) { update_option("SUP_ping", 1); } ?> 浦安の美容室 Amour Pico Staff ブログ
更新履歴
2026年5月
« 5月    
 123
45678910
11121314151617
18192021222324
25262728293031

こんにちは。もう4月も終わってしまいますね・・・

 

一年の1/3が終わってしまうと思うと年月が経つのが

早く感じてしまいます・・・

 

  

さて、話は変わりますが、あの有名な餃子の王将。

初です。行ってきました。昨日・・・

先週に続き千葉ニュータウンのジョイフルへ行き

その帰りに西白井店の王将へ!!

  

  

アメトークの王将芸人でやってて興味はあったんですが

この辺にないんですよ・・・

 

 

焼き飯食べて、唐揚げ食べて

 

 

なんか色々頼んで・・・

 

ん~~、バーミャンで良いかな!?

って感想でした。

 

と、言うわけで昨日行ってきました。

 

行くとこ無かったらとりあえず、ジョイフル本田・千葉ニュータウン店。

http://www.joyfulhonda.com/index.html

 

ウチの店って、西日がもの凄いんですよ。

なんで、ロールスクリーンを目当てにGO!!

敷井家、5人で行こうとした矢先、長女杏奈が40度の発熱!!

これは、これはぁ~!!!

一人で行くことになりましたとさ☆☆

  

高速をビュ~~ン!!っと、ひとっ飛び。

 

到着!!

まずは、ロールスクリーン&着付用カーテンを購入!!

  

 

店のディスプレイにも使わせてもらってるアンティークショップ

『THE GLOBE Old Friend』さんで、何かないかなぁ~~

って、物色中\(◎o◎)/!

数点目を付けて来て、カーテン取りに来る日まで

いろいろ考えてきます★

本当にイイっす!!ココ。

 

 

でもって、スンゴイ広さの園芸コーナー。

広い庭でもあれば良いんですがね(*^_^*)

今回は覗くだけ・・・

 

 

で、帰りには毎回ガソリン満タンにして帰ります。

何故だかどこよりも安いスタンド!

この日は【139円】(^v^)

  

で、ジョイフルの向いにあるBIGHOPのサンマルクカフェへ。

ウチの奥さん、ここのチョコクロワッサン好きだから。

まさかね。

手ぶらで帰ったら何かが起きそうな予感がしたから・・・ね!!

是非是非、行ってみてください!!

初めまして。

4月中旬よりアムールピコの一員となりました。吉田恵です。

まだまだ不慣れな所もありますが、一生懸命頑張っていきますのでよろしくお願いします。

家は葛西ですが、あまり浦安に来る事がないので、浦安情報をいろいろ教えて下さい。

楽しくお話できればと思っています。

お待ちしております。

僕たちは、お客様との出会い・巡り合いも一期一会かと思います。

『あなたとこうして出会っているこの時間は、

二度と巡っては来ないたった一度きりのものです

。だから、この一瞬を大切に思い、

今出来る最高のおもてなしをしましょう』

千利休の言葉。

これは、スタッフにも言えることなんですよね!!

と言うことで、NEW FACE入社です☆

吉田恵 スタイリスト 美容歴8年

お店でお待ちしております(*^_^*)

 

本日、15:20~18:20まで予定されていた計画停電は中止になりました。

 

 

引き続き営業いてまいります。

皆様のご来店、心よりお待ちしております。

 

 

しばらくの間、節電営業となります。

また、計画停電による営業時間の変更もありますが

ご理解をお願申し上げます。

 

アムールピコ

今回の地震により、大きな被災を受けた地域が改善されている事を願います。

私の携帯にも毎日、残念な事にチェーンメールや
確信のない情報や詐欺メールが飛び交ってます。

自分で見て確認した情報や、ネットで公式に開設されてるサイトと確認した上で

義援金を送りましょう。

少しでも何か手助けしたいと思ってる人達の気持ちを、逆手にとる人達がいると思うと

非常に悲しいことと思いますが、実際に起こってることは事実。

十分に気を付けましょう!

本日も節電営業のアムールピコからでした。

「東北地方太平洋沖地震」により、

東北から関東の全域に渡り被災された方々へ、心よりお見舞い申し上げます。

本日浦安市一帯、計画停電の対象外地域の指定を受け、明日16日(水)以降の

営業時間変更のお知らせがございます。

アムールピコでは、出来る限り節電に協力しようと考えておりますので、

ご予約状況により早めに営業を打ち切らせて戴く事がございます。

また、営業中においてもなるべく仕事に支障のない明るさ・温度の中での

おもてなしとなります。

今のこの状況下の中で、皆様の元気の元となれれば・・・

と思い、今まで以上に【アムール】を込めてお仕事に努めていきます。

今後ともよろしくご愛顧頂けますようお願い申し上げます。

また、これから先の状況の変化に合わせて迅速にかつ臨機応変に対応させて

戴きたく思っておリます。

アムールピコ  敷井敦彦

こんにちは。敷井です。

この間のValentine’s-Day。私、お客様からたくさん戴きました。

シャンパンからマカロン、そしてチョコレート。

どうもありがとうございます(*´∀`*)

美味しかった~(^^♪

 

ところが、ウチのスタッフときたら・・・

2月12日の営業中。

ちょっとしたタイミングに抜け出す佐々木。

なんか買ってきた。

で、営業後・・・・

【ほい、バレンタイン☆】

???

【12日ですが・・・?】

【あっ! えっ!? 間違えたΣ(゚д゚lll)】

 

確か、去年はスーパードライの500缶×6だったのに

今年は350缶。。。

しかも本気で日付間違えてるし。

本命とかあげる相手がいないと、こうなっちゃうんだな・・・

その数日前にいらした佐々木のお母さん。

『いつもお世話になっております。』

と、

【うぁ~~~(*´∀`*) ありがとうございますm(__)m】

発泡酒しか家では呑ませてもらってない僕には、超豪華!!

佐々木家では、水と同じ感覚でビール!!なのか・・・

そして、うちのアシスタント佐藤なんか

『作ろうと思ったんですが・・・面倒くさくて。テヘッ(#^.^#)』

テへッじゃね~よ。

別に頼んでないし。

要らないし。

でも、俺は美容師やってて毎年スタッフから貰ってた。

チャンチャン。

こんな私に愛のクリックを・・・

コンニチハ。新しいラーメン屋さんの開拓に励む敷井です。

バイパスを行徳方面から浦安に向けて来ると、

相之川を通り過ぎたあたりの右側には真っ赤な看板の【魁力屋】

何度か行きましたよ~。美味しい~(^^♪

スタッフの方が大勢いて、マニュアルのようなものが

あるのか、オーダー時はちょいとかしこまっちゃう感じ・・かな。

悪い感じではないんですがね(´<_` )

チェーン店だな~って印象。

数日後、前から気になってた所へ!!

場所は、魁力屋から更に浦安へ向け150m程。

コンビニ三角地帯(セブン、ローソン、ファミマの所)の

交差点の左側へ10m程。

【横浜げんき亭】

照明が落ち着いた感じで、居心地良さ気。

私の帰り道なんですが、いつもお客さん入ってます。

そんで、漫画がたくさんある!!ホントに。

食べ終わっても、すぐに帰らない方いるみたいです。

で、肝心なラーメンは・・・

《お上品な味》

具はオーソドックス。と、思いきや!!

チャーシューが溶ける(*´∀`*)

スープにコクがある!

良い(^_-)-☆

是非一度・・・

そして、クリックを(^_-)-☆

Amour Pico から皆さまへ

アムールピコ

アムールピコは東京メトロ東西線の浦安駅から徒歩2分の美容室。ストレートパーマ・縮毛矯正が得意です!ヘアショーや講師活動等で活躍したスタイリストによるヘアメイクで、あなたのキレイをお手伝いします。

アムールピコ スタッフ一同

店舗概要

店舗概要

〒279-0001
千葉県浦安市当代島1-1-6
ストリームマンション駅前
【TEL】047-720-2936
【定休日】毎週火曜日・第3月曜日