<?xml version="1.0" encoding="UTF-8" ?>
<feed xml:lang="ja" xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:thr="http://purl.org/syndication/thread/1.0">
  <title type="text">ふぼじぇくと</title>
  <subtitle type="html">アルゴリズムの探求とJavaによる実装</subtitle>
  <link rel="self" type="application/atom+xml" href="https://chichihaha.blog.shinobi.jp/atom"/>
  <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/"/>
  <updated>2006-10-21T07:24:14+09:00</updated>
  <author><name>夢幻</name></author>
  <generator uri="//www.ninja.co.jp/blog/" version="0.9">忍者ブログ</generator>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/215</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/vscode/vscode%E3%81%A7portablegit%E3%82%92%E4%BD%BF%E3%81%86" />
    <published>2026-01-03T11:55:06+09:00</published> 
    <updated>2026-01-03T11:55:06+09:00</updated> 
    <category term="VSCode" label="VSCode" />
    <title>VSCodeでPortableGitを使う</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[VSCodeで<ol><li>File =&gt; Preference =&gt; Settings</li><li>検索窓(Search Settings)で「git.path」を入力</li><li>出てきた「Edit in settings.json」のリンクをクリック</li><li>Json形式で、git.path に cmd/git.exe へのフルパスを入力</li></ol>"git.path": "{PortableGitを展開したフォルダ}\\cmd\\git.exe"<br />
<br />
<br />
Gitユーザー名とメールアドレスを登録する<ol><ol><li>VSCodeのターミナルでコマンドプロンプトを開く（パワーシェルではない）</li><li>PortableGitのパスを通す<br />
<br />
PATH=%PATH%;"{PortableGitを展開したフォルダ}\\cmd"<br />
<br />
(git -v or git --version でversionが表示されたらOK)</li><li>Gitユーザー名とメールアドレスを登録する<br />
<br />
（グローバル設定）<br />
git config --global user.name "ユーザー名"<br />
git config --global user.email "メールアドレス"<br />
<br />
（リポジトリごとの設定）<br />
git config user.name "ユーザー名"<br />
git config user.email "メールアドレス"</li></ol></ol>]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/214</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/wsl/wsl2%20ubuntu%E3%81%ABchrome%E3%82%92%E3%82%A2%E3%83%83%E3%83%97%E3%83%87%E3%83%BC%E3%83%88" />
    <published>2025-05-10T14:35:20+09:00</published> 
    <updated>2025-05-10T14:35:20+09:00</updated> 
    <category term="WSL" label="WSL" />
    <title>WSL2 UbuntuにChromeをアップデート</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[sudo apt update<br />
sudo apt upgrade<br />
でアップデートできた。<br />
<br />
apt update:アップデートが可能なパッケージのリストを更新する。<br />
apt list --upgradable:アップデートが可能なパッケージのリストを確認する。<br />
apt upgrade:実際にインストールされているパッケージのバージョンアップを行う。<br />
<br />
個別のパッケージのみアップデート<br />
sudo apt install --only-upgrade &lt;パッケージ名&gt;]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/213</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/wsl/wsl2%20ubuntu%E3%81%ABchrome%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB" />
    <published>2025-02-16T11:33:16+09:00</published> 
    <updated>2025-02-16T11:33:16+09:00</updated> 
    <category term="WSL" label="WSL" />
    <title>WSL2 UbuntuにChromeをインストール</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[<a href="https://learn.microsoft.com/ja-jp/windows/wsl/tutorials/gui-apps" title="">Linux 用 Windows サブシステム で Linux GUI アプリを実行する</a><br />
<br />
を参考にしてUbuntuをインストール<br />
<br />
$ cd /tmp<br />
$ sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb<br />
$ sudo dpkg -i google-chrome-stable_current_amd64.deb # 安定したバージョンを取得<br />
$ sudo apt install --fix-broken -y # パッケージを修正<br />
$ sudo dpkg -i google-chrome-stable_current_amd64.deb # パッケージを構成<br />
$ google-chrome --version<br />
Google Chrome 133.0.6943.98<br />
<br />
アップデートは削除して再インストール<br />
sudo apt --purge remove google-chrome-stable<br />
<br />
（参考）<br />
<a href="https://dev.to/yutagoto/wsl2nigoogle-chromewoinsutorusuru-lij" title="">WSL2にGoogle Chromeをインストールする</a><br />
<br />
$ google-chrome<br />
起動すると文字化け<br />
<br />
sudo apt install language-pack-ja<br />
sudo apt install fonts-ipafont<br />
sudo apt install fonts-ipaexfont<br />
fc-cache -fv<br />
<br />
（参考）<br />
<a href="https://lef237.hatenablog.com/entry/2022/12/05/163550" title="">【WSL2, Debian, Ubuntu】システムテスト等でChromeを立ち上げた際にWSL2側の問題で文字化けしてしまう問題を解決する方法</a>]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/212</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E6%88%90%E9%95%B7%E6%97%A5%E8%A8%98/%E6%A4%9C%E6%9F%BB%E7%B5%90%E6%9E%9C%E3%83%BB%E3%83%BB%E3%83%BB_212" />
    <published>2012-04-04T23:55:57+09:00</published> 
    <updated>2012-04-04T23:55:57+09:00</updated> 
    <category term="成長日記" label="成長日記" />
    <title>検査結果・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[次男の血小板数は４万４千だった・・・<br />
４月４日の検査結果が４万４千とは・・・^^;<br />
<br />
若い血小板の割合が高いから<br />
造られてもいるけど壊されている・・・orz]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/211</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E6%88%90%E9%95%B7%E6%97%A5%E8%A8%98/%E3%81%9F%E3%82%93%E3%81%98%E3%82%87%E3%81%86%E3%81%B3%E3%83%BB%E3%83%BB%E3%83%BB_211" />
    <published>2012-03-16T23:55:09+09:00</published> 
    <updated>2012-03-16T23:55:09+09:00</updated> 
    <category term="成長日記" label="成長日記" />
    <title>たんじょうび・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[今日は次男の誕生日^^<br />
<br />
赤ちゃんが10秒ほど立てるようになって・・・<br />
３歩ほど歩いた^^<br />
<br />
子供の成長は早いものだ・・・]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/210</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E6%88%90%E9%95%B7%E6%97%A5%E8%A8%98/%E5%A4%A7%E3%81%8D%E3%81%AA%E4%B8%80%E6%AD%A9%E3%83%BB%E3%83%BB%E3%83%BB" />
    <published>2012-03-03T23:55:37+09:00</published> 
    <updated>2012-03-03T23:55:37+09:00</updated> 
    <category term="成長日記" label="成長日記" />
    <title>大きな一歩・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[ひなまつり～～～<br />
<br />
赤ちゃんが4秒ほど立ったりするようになって数日・・・<br />
倒れこむようにして小さな一歩を・・・<br />
<br />
お兄ちゃんにとっては小さな一歩かもしれないが<br />
僕にとっては大きな一歩なのだぁ～～～^^<br />
]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/209</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E3%81%9D%E3%81%AE%E4%BB%96/%E8%87%AA%E5%88%86%E3%81%AE%E5%A3%B0%E3%81%A7%E3%82%AA%E3%83%AC%E3%82%AA%E3%83%AC%E8%A9%90%E6%AC%BA%E3%83%BB%E3%83%BB%E3%83%BB" />
    <published>2012-02-29T23:55:55+09:00</published> 
    <updated>2012-02-29T23:55:55+09:00</updated> 
    <category term="その他" label="その他" />
    <title>自分の声でオレオレ詐欺・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[昨日NHKで<br />
「クローズアップ現代で初音ミク特集」が放送された<br />
<br />
前半は初音ミクが登場したが・・・<br />
後半は音声合成技術についてだった<br />
<br />
病気などで声を失った人の声を<br />
音声合成技術によって取り戻そうと言うものである<br />
<br />
ボランティアの人々の協力によって多くの声の蓄積を・・・<br />
いろんな地域・年代・性別の声をデータベース化することで<br />
<br />
これまでは本人の声を2,3時間収録しなければ<br />
不可能だった合成が1,2分の収録で合成可能に・・・<br />
<br />
本人の声が失われてしまった人も<br />
兄弟姉妹の声から合成することも・・・<br />
<br />
非常に素晴らしい医療技術なのだが悪用されると・・・<br />
自分の声でオレオレ詐欺も・・・<br />
<br />
技術には善も悪もないので良い方向に発展欲しいな<br />
]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/208</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E3%81%9D%E3%81%AE%E4%BB%96/nhk%E3%81%AB%E5%88%9D%E9%9F%B3%E3%83%9F%E3%82%AF%E3%83%BB%E3%83%BB%E3%83%BB" />
    <published>2012-02-26T23:55:22+09:00</published> 
    <updated>2012-02-26T23:55:22+09:00</updated> 
    <category term="その他" label="その他" />
    <title>NHKに初音ミク・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[NHKに初音ミクが・・・<br />
<u><a href="http://www.youtube.com/watch?v=W6gLTW0kobE" target="_blank">2月28日（火）放送！「クローズアップ現代で初音ミク特集」</a></u><br />
<br />
最近いろんなところで活躍してる＾＾<br />
<u><a href="http://b.hatena.ne.jp/articles/201201/7193" target="_blank">大河ドラマ「平清盛」のデモ制作に「初音ミク」</a></u><br />
<br />
<u><a href="http://www.youtube.com/watch?v=MGt25mv4-2Q&feature=related" target="_blank">Google ChromeのCM</a></u>ソングに起用された<u><a href="http://www.youtube.com/watch?v=ufvSRNxdzOs&feature=related" target="_blank">「Tell Your World」</a></u>が<br />
iTunes Storeでは配信初日にシングルランキングで1位を獲得<br />
とiTunes Japanがtweetしてる<br />
<br />
見てみたいけどチャンネル権もらえるだろうか・・・＾＾；]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/207</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E6%88%90%E9%95%B7%E6%97%A5%E8%A8%98/%E3%81%82%E3%81%8B%E3%81%8A%E3%81%AB%E3%81%82%E3%81%8A%E3%81%8A%E3%81%AB%E3%83%BB%E3%83%BB%E3%83%BB" />
    <published>2012-02-03T23:55:40+09:00</published> 
    <updated>2012-02-03T23:55:40+09:00</updated> 
    <category term="成長日記" label="成長日記" />
    <title>あかおにあおおに・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[今日は節分<br />
保育園から手作りお面を持って帰った<br />
<br />
お姉ちゃんは赤鬼<br />
弟は青鬼<br />
<br />
お兄ちゃんたちも帰ってきて<br />
赤ちゃんにお面を・・・<br />
<br />
おもちゃ状態になってる・・・＾＾；]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
  <entry>
    <id>chichihaha.blog.shinobi.jp://entry/206</id>
    <link rel="alternate" type="text/html" href="https://chichihaha.blog.shinobi.jp/%E6%88%90%E9%95%B7%E6%97%A5%E8%A8%98/%E3%81%82%E3%81%91%E3%81%BE%E3%81%97%E3%81%A6%E3%81%8A%E3%82%81%E3%81%A7%E3%81%A8%E3%81%86%E3%83%BB%E3%83%BB%E3%83%BB" />
    <published>2012-01-23T00:00:00+09:00</published> 
    <updated>2012-01-23T00:00:00+09:00</updated> 
    <category term="成長日記" label="成長日記" />
    <title>あけましておめでとう・・・</title>
    <content mode="escaped" type="text/html" xml:lang="utf-8"> 
      <![CDATA[今日は陰暦１月１日<br />
あけましておめでとぉ～～～<br />
<br />
赤ちゃんも上から２本<br />
白い歯が顔を出しました＾＾]]> 
    </content>
    <author>
            <name>夢幻</name>
        </author>
  </entry>
</feed>