Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://30neeet.blog40.fc2.com/?xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:cc="http://web.resource.org/cc/" xml:lang="ja" xmlns:atom="http://www.w3.org/2005/Atom">
  3.  <channel rdf:about="http://30neeet.blog40.fc2.com/">
  4.    <title>TRANSLATION LOG</title>
  5.    <link>http://30neeet.blog40.fc2.com/</link>
  6.    <description></description>
  7.    <dc:language>ja</dc:language>
  8.    <atom:link rel="self" href="http://30neeet.blog40.fc2.com/?xml"/>
  9.    <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/>
  10.    <items>
  11.      <rdf:Seq>
  12.        <rdf:li rdf:resource="http://30neeet.blog40.fc2.com/blog-entry-195.html"/>
  13.        <rdf:li rdf:resource="http://30neeet.blog40.fc2.com/blog-entry-194.html"/>
  14.        <rdf:li rdf:resource="http://30neeet.blog40.fc2.com/blog-entry-193.html"/>
  15.        <rdf:li rdf:resource="http://30neeet.blog40.fc2.com/blog-entry-190.html"/>
  16.        <rdf:li rdf:resource="http://30neeet.blog40.fc2.com/blog-entry-189.html"/>
  17.      </rdf:Seq>
  18.    </items>
  19.  </channel>
  20.  <item rdf:about="http://30neeet.blog40.fc2.com/blog-entry-195.html">
  21.    <link>http://30neeet.blog40.fc2.com/blog-entry-195.html</link>
  22.    <title>フィリップ・シーモア・ホフマン特集</title>
  23.    <description>Doubt This morning before I spoke with Mrs. Miller,I took the precautionof calling your last parish.What did he say?Who?The pastor.I did not speak to the pastor. spoke to a nun.You should have spoken to the pastor.I spoke to a nun.You know that&amp;#039;s not the proper routefor you to have taken, Sister.The church is very clear. You&amp;#039;re supposed to go through the pastor.Why? You have an understanding,you a</description>
  24.    <content:encoded><![CDATA[<H1>Doubt </H1><br><iframe width="560" height="315" src="https://www.youtube.com/embed/nS8tqsjySaI" frameborder="0" allowfullscreen></iframe><br><div class="transcript"><br><span style="color:#FF0000">This morning before I spoke with Mrs. Miller,I took the precaution<br>of calling your last parish.</span><br><span style="color:#3300FF">What did he say?</span><br><span style="color:#FF0000">Who?</span><br><span style="color:#3300FF">The pastor.</span><br><span style="color:#FF0000">I did not speak to the pastor. spoke to a nun.</span><br><span style="color:#3300FF">You should have spoken to the pastor.</span><br><span style="color:#FF0000">I spoke to a nun.</span><br><span style="color:#3300FF">You know that's not the proper route<br>for you to have taken, Sister.<br>The church is very clear. You're supposed to go through the pastor.</span><br><span style="color:#FF0000">Why? You have an understanding,you and he?</span><br><span style="color:#3300FF">No, you have no right to go rummaging through my past!</span><br><span style="color:#FF0000">You have a history.This is your third parish in five years.<br>Why?</span><br> <span style="color:#3300FF">Call the pastor!Ask him why I left.It's perfectly innocent.</span>.<br><span style="color:#FF0000"> I'm not calling the pastor.</span><br> <span style="color:#3300FF">I'm a good priest.</span><br><span style="color:#FF0000">Go after another child and<br>another child, until you are stopped.</span><br><span style="color:#3300FF">What nun did you speak to?</span><br><span style="color:#FF0000">I won't say.</span><br><span style="color:#3300FF">Yeah, I've not touched a child.</span><br><span style="color:#FF0000">You have!</span><br><span style="color:#3300FF">You haven't the slightest proof of anything.</span><br><span style="color:#FF0000">But I have my certainty.And armed with that, I'll go to your last parish and the one before that.If necessary, I'll find a parent.Trust me, Father Flynn, I will.</span><br><span style="color:#3300FF">You have no right to act on your own! You have taken vows, obedience being one!You answer to us! You have no right to step outside the church!</span><br><span style="color:#FF0000">I will step outside the church if that's what needs to be done,though the door should shut behind me! I will do what needs to be done, though I'm damned to hell!You should understand that,or you will mistake me.<br>Now, did you give Donald Miller wine to drink?</span><br><span style="color:#3300FF">Have you never done anything wrong?</span><br> <span style="color:#FF0000">I have.</span><br> <span style="color:#3300FF">No mortal sin?</span><br><span style="color:#FF0000">Yes.</span><br></div>]]></content:encoded>
  25.    <dc:subject>暗唱したい映画のセリフ</dc:subject>
  26.    <dc:date>2015-04-04T15:37:44+09:00</dc:date>
  27.    <dc:creator>kumbakaa</dc:creator>
  28.    <dc:publisher>FC2-BLOG</dc:publisher>
  29.  </item>
  30.  <item rdf:about="http://30neeet.blog40.fc2.com/blog-entry-194.html">
  31.    <link>http://30neeet.blog40.fc2.com/blog-entry-194.html</link>
  32.    <title>[MySQL]SELECT ... WHERE .... INNER JOIN .... ON....ダメよ</title>
  33.    <description>SQLが苦手なのでいつも躓いているので備忘録。SET @id = 1;SELECT a,b,c,dFROM data AS wd WHERE d.id=@idINNER JOIN words AS w ON w.id = d.id;と書いていてエラーが出てた。SELECT...INNER JOIN構文をよく理解してませんでした。SET @id = 1;SELECT a,b,c,dFROM data AS wd  INNER JOIN words AS w ON w.id = d.idWHERE d.id=@id;正しくはこうでした↑SELECY文の中に挟み込むんですね。</description>
  34.    <content:encoded><![CDATA[SQLが苦手なのでいつも躓いているので備忘録。<br><br>SET @id = 1;<br>SELECT a,b,c,d<br>FROM data AS wd <br>WHERE d.id=@id<br>INNER JOIN words AS w ON w.id = d.id;<br><br>と書いていてエラーが出てた。<br>SELECT...INNER JOIN構文をよく理解してませんでした。<br><br>SET @id = 1;<br>SELECT a,b,c,d<br>FROM data AS wd <br> INNER JOIN words AS w ON w.id = d.id<br>WHERE d.id=@id;<br><br>正しくはこうでした↑SELECY文の中に挟み込むんですね。 ]]></content:encoded>
  35.    <dc:subject>プログラミング挑戦記</dc:subject>
  36.    <dc:date>2014-02-19T14:11:04+09:00</dc:date>
  37.    <dc:creator>kumbakaa</dc:creator>
  38.    <dc:publisher>FC2-BLOG</dc:publisher>
  39.  </item>
  40.  <item rdf:about="http://30neeet.blog40.fc2.com/blog-entry-193.html">
  41.    <link>http://30neeet.blog40.fc2.com/blog-entry-193.html</link>
  42.    <title>XAMPP Apache - Busy... started[80] 起動できない時の最終手段</title>
  43.    <description>XAMPPコントロールパネルでapacheのstartを押しても、apacheが動いてくれない時があります。Busy...Started [Port 80]とか出てますが、動かない。その時はまず、httpd.confのListen 80をListen 8080 など80以上の番号に変えます。それでも変わんねーよ、とググってたところskypeを切って、もう一度start押してみなとstackoverflowにあり、できた!感激。というわけで備忘録として記す。</description>
  44.    <content:encoded><![CDATA[XAMPPコントロールパネルでapacheのstartを押しても、apacheが動いてくれない時があります。<br><br>Busy...<br>Started [Port 80]<br><br>とか出てますが、動かない。<br><br>その時はまず、httpd.confの<br><br>Listen 80<br><br>を<br><br>Listen 8080 など80以上の番号に変えます。<br><br>それでも変わんねーよ、とググってたところ<br><br><strong>skypeを切って、もう一度start押してみな</strong><br><br>とstackoverflowにあり、できた!感激。<br>というわけで備忘録として記す。]]></content:encoded>
  45.    <dc:subject>プログラミング挑戦記</dc:subject>
  46.    <dc:date>2014-02-17T14:14:19+09:00</dc:date>
  47.    <dc:creator>kumbakaa</dc:creator>
  48.    <dc:publisher>FC2-BLOG</dc:publisher>
  49.  </item>
  50.  <item rdf:about="http://30neeet.blog40.fc2.com/blog-entry-190.html">
  51.    <link>http://30neeet.blog40.fc2.com/blog-entry-190.html</link>
  52.    <title>アメリカのイタズラ電話 : OwnagePranks (youtube)</title>
  53.    <description>OwnagePranksというアメリカ人のイタズラ電話のyoutubeアカウントについて紹介します。OwnagePranksyoutubeを見渡してみるといくつかアメリカ人によるイタズラアカウントがあります。どうも「youtubeコメディアン」というジャンルが一部確立されているようです。例えば、Jack Valeというコメディアンのアカウントでは、pooterというオナラの音が出るおもちゃを使って街にでてオナラをしてリアクションを撮っています。とにかく更新</description>
  54.    <content:encoded><![CDATA[OwnagePranksというアメリカ人のイタズラ電話のyoutubeアカウントについて紹介します。<br><a href="http://www.youtube.com/user/OwnagePranks" target="_blank" title="OwnagePranks">OwnagePranks</a><br><br>youtubeを見渡してみるといくつかアメリカ人によるイタズラアカウントがあります。どうも「youtubeコメディアン」というジャンルが一部確立されているようです。例えば、<a href="http://www.youtube.com/user/jackvalefilms" target="_blank" title="Jack Vale">Jack Vale</a>というコメディアンのアカウントでは、pooterというオナラの音が出るおもちゃを使って街にでてオナラをしてリアクションを撮っています。とにかく更新頻度が高く、彼はその<a href="http://thepooter.com/" target="_blank" title="pooter">pooterを販売して生計を立てたりしてます</a>。それから、Greg Bensonという人の<a href="http://www.youtube.com/user/MediocreFilms" target="_blank" title="MidiocreFilms">MidiocreFilms</a>。インド系のRahatによる<a href="http://www.youtube.com/user/MagicofRahat" target="_blank" title="MagicOfRahat">MagicOfRahat</a>とか。<br><br>あげ始めたらキリがなくて、OwnagePranksの説明に行けないので、これらのyoutubeイタズラ系アカウントについてはまた別の機会に説明しますが、彼らのビデオは面白いものもあるんですが総じてヌルいのです。<br><br><span style="font-size:x-large;">OwnagePranks : 9人のキャラ</span><br><br><a href="http://blog-imgs-44.fc2.com/3/0/n/30neeet/860790_10151342157413929_2022380347_o.jpg" target="_blank"><img src="http://blog-imgs-44.fc2.com/3/0/n/30neeet/860790_10151342157413929_2022380347_o.jpg" alt="ownagepranks" border="0" width="80%" height="80%" /></a><br><br><br><br>OwnagePranksは匿名、顔出しなしのイタズラ電話専門のyoutubeアカウントです。アメリカ人のアカウント主(名前は不明)が人種やキャラクターがバラバラの9人格の声色とキャラクターを使い分けます。アジア系、インド系、ヒスパニック系、中東系、英語のネイティブでも、黒人系、ヒルビリー系、ゲイ系、オタク系と各種英語の訛りや声色をマスターしており、また、その声によって名前を使い分けています。アジア系の時は「Buk Lau」とか「ランガハ・ティママンゴーヤン・ティラムゲイ」(どうもアジア人の名前っぽく聞こえるらしい)、インド系のRakesh、ヒスパニック系のJuan、中東系のAbdo、黒人系のTyrone、ヒルビリー系のBilly、ゲイのChris、オタク系のJohnなど。アカウント主の普通の訛りのないアメリカ英語の場合はRussell Jonson。総勢9名。<br><br>一番人気なのは短気なアジア系のBuk Lauでしょう。<br><iframe width="420" height="315" src="//www.youtube.com/embed/MmTiqKPnhiQ?list=PL6943A5E1575B5DC2" frameborder="0" allowfullscreen></iframe><br><br>もともと音声のみのアカウントでしたがあまりにも人気が出過ぎて、上のようなアニメも作られるようになりました。ちなみにBuk Lauのキャラクターはあまりに人気が出過ぎて、Buk Lauの声を切り出して、フラッシュを使った<a href="http://www.buklau.com/" target="_blank" title="サウンドボード">サウンドボード</a>も作られています。またその声を使ってイタ電をするyoutubeアカウントも多数。(この辺りは日本でも流行した架空請求業者へのイタ電で<a href="http://dic.nicovideo.jp/a/%E5%B1%B1%E7%94%B0%E3%83%9C%E3%82%A4%E3%82%B9" target="_blank" title="山田ボイス">山田ボイス</a>が作られたのと似ている)<br><br>イタズラは主に、お店にクレームを入れたり、料理を作らせておいて取りに行かない、女性の店員にエッチな事を言うなど、あらゆる手を使って相手を怒らせる・困らせるというもの。色々なパターンがありますが<span style="font-size:large;">結構非道です</span>。<br><br><a href="http://www.youtube.com/watch?v=iXVNNfIsCi8" target="_blank" title="Racist Starbucks Prank (Arab Voice)">Racist Starbucks Prank (Arab Voice)</a>…アラブ系のAbdoのキャラでスターバックスに電話。キャラメルフラペチーノを頼んだら店員がカップの縁に「Osama」と書いた、と難癖をつける。<br><a href="http://www.youtube.com/watch?v=l0-X1-1lk-Q " target="_blank" title="Apple Macbook Retina Display Prank">Apple Macbook Retina Display Prank</a>…黒人のTyroneの声でAppleの店に電話。「RetinaディスプレイはAVは綺麗に見れるのか」と女性店員にハラスメント<br><a href="http://www.youtube.com/watch?v=Ffe7fF5LKAo" target="_blank" title="Christmas Tattoo Prank #1">Christmas Tattoo Prank #1</a>…アジア系のBuk Lauの声で、Tattooショップに電話。「クリスマスに彼女を驚かせるために、金玉にツリーのオナメントのタトゥーを入れたいのですが」→断られる。(これには続編があって<a href="http://www.youtube.com/watch?v=gVTBxpHZHIQ" target="_blank" title="Butterfly Tattoo Prank #2">Butterfly Tattoo Prank #2</a> では黒人のTyroneの声で「チ◯ポにタトゥーを入れろ」→断られる。<a href="http://www.youtube.com/watch?v=2Js5e4tHHKs" target="_blank" title="Valentine's Tattoo Prank #3">Valentine's Tattoo Prank #3</a>ではゲイのクリスの声で「彼を驚かせるために尻の穴付近にWを2つ(W * W = WOW)彫りたい」→イタズラ電話認定・断られる)<br><br>などとにかくたくさんありますが、このアカウントを遡ると「お前、洒落にならんな」というイタ電もあったりします。<br><br><span style="font-size:x-large;">洒落にならない非道なイタ電</span><br><br>まぁ本当はこれを紹介したかったのですが。<br><br>最近は「9つのキャラ」を売りにしてどんどんマイルドになっています。2013/12/18現在で、160万人も登録者のいるyoutubeアカウントで、<a href="http://ownagepranks.spreadshirt.com/" target="_blank" title="Tシャツ">Tシャツ</a>とか売ったりしているので。<br>このアカウントはどうも5年位前から人気があったようで、その当時および数年はかなりエッジの聞いたイタ電をしていました。例えばこれ。<br><br><iframe width="420" height="315" src="//www.youtube.com/embed/aYlAPq_Svtk" frameborder="0" allowfullscreen></iframe><br><br>病院に電話「妊娠中の妻が車で移動中に出産しそう」→<br>電話に出た看護師必死で応対・安全な出産の仕方を教える→<br>イタ電主は女性と赤ん坊の泣き声音声で「何とか出産成功」を演出、その後「生まれてきた赤ん坊が黒人だ」と言い、(偽の)妻に向かって「浮気したのか?俺のアソコが小さいから不満だったのか?」→<br>看護師「赤ん坊の安全を第一に!」と懸命にサポート…<br><br><iframe width="420" height="315" src="//www.youtube.com/embed/BZwINV4AWhY" frameborder="0" allowfullscreen></iframe><br><br>Enzyte(実在する精力増強剤の会社)の社員を装い、「おたくのカイル・モハメド君(15歳)がオンラインで当社の製品を購入しました。『私は18歳以上です』のチェックボックスにチェックが無いため確認のためお電話しました」→<br>両親慌てる。<br><br><iframe width="420" height="315" src="//www.youtube.com/embed/7gKvyKuWZTM" frameborder="0" allowfullscreen></iframe><br><br>どうやら昔はustreamかどこかで生放送でイタズラ電話をかけてたらしい。その音声を切り出してミラー・アップロードしてる人がいくつかいて、その中によりヒドいイタ電があります。<br><br>これは、、<br>警察を装い電話「おたくの娘のダニエルが公衆の面前でエッチしていました。」<br><br><iframe width="420" height="315" src="//www.youtube.com/embed/BUW8uSajS7g" frameborder="0" allowfullscreen></iframe><br><br>病院の事務を装い女性に電話「あなたの彼氏がHIVの検査に病院に来ました。HIV陽性でした。最近性彼氏と性交渉をしましたか?彼の性器があなたの性器に触れましたか」→<br>挙句、彼女泣き出す。<br><br>(さすがにこの動画に「やり過ぎだよ」とツッコミを入れたら。コメントに高評価を沢山もらった)<br><br><hr><br><br>日本でこんなアカウントがあったら2chの鬼女板が特定に走り、まとめブログで名前や所属を晒しあげられ、夕方のニュースで「ネットの動画サイトにイタズラ電話を投稿」など神妙な顔でアナウンサーが報道、という流れになりそう。<br>しかし、動画には「あくまでコメディのために行われており、特定の人を傷つける意図はありません」と一言ディスクレイマーが入っていますし、コメント欄は「死ぬほど笑わせてもらった。ありがとう」みたいなコメントで溢れかえっています。<br>]]></content:encoded>
  55.    <dc:subject>ビデオクリップ</dc:subject>
  56.    <dc:date>2013-12-18T09:50:30+09:00</dc:date>
  57.    <dc:creator>kumbakaa</dc:creator>
  58.    <dc:publisher>FC2-BLOG</dc:publisher>
  59.  </item>
  60.  <item rdf:about="http://30neeet.blog40.fc2.com/blog-entry-189.html">
  61.    <link>http://30neeet.blog40.fc2.com/blog-entry-189.html</link>
  62.    <title>coreserverでcronのテストを早くしたい時。</title>
  63.    <description>sshでログインします。やり方は、以下のリンクに書いてあるとおり、teratermをダウンロードしてsshでログインします。CORESERVERにSSH接続するそしてcronで動かすシェルスクリプトを直接動かします。coreserverの場合だとusername@123:~&amp;gt; sh /virtual/username/hoge.shと、shコマンドとルート・ディレクトリ直下にあるシェルスクリプトをフルパスで入力。これで、いちいちクロンジョブの設定時間まで待ってテストしなくてすむわけ</description>
  64.    <content:encoded><![CDATA[sshでログインします。<br><br>やり方は、以下のリンクに書いてあるとおり、teratermをダウンロードしてsshでログインします。<br><br><a href="http://www.white-ring.com/coreserver-ssh-connect/" target="_blank" title="CORESERVERにSSH接続する">CORESERVERにSSH接続する</a><br><br>そしてcronで動かすシェルスクリプトを直接動かします。<br><br>coreserverの場合だと<br><br>username@123:~> sh /virtual/username/hoge.sh<br><br>と、shコマンドとルート・ディレクトリ直下にあるシェルスクリプトをフルパスで入力。<br><br>これで、いちいちクロンジョブの設定時間まで待ってテストしなくてすむわけです・・・。<br>「何だそんなことか」とかいうなよ。<br><br>]]></content:encoded>
  65.    <dc:subject>未分類</dc:subject>
  66.    <dc:date>2013-09-13T22:32:55+09:00</dc:date>
  67.    <dc:creator>kumbakaa</dc:creator>
  68.    <dc:publisher>FC2-BLOG</dc:publisher>
  69.  </item>
  70. </rdf:RDF>
  71.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//30neeet.blog40.fc2.com/%3Fxml

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda