<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>yoshiweb.NET-blog</title>
    <link>https://yoshiweb.net/blog/</link>
    <description>FlashやActionScriptなどWeb制作に関するメモっぽいものをメインに書くつもり。</description>
    <language>ja</language>
    <generator>Nucleus CMS v3.71</generator>
    <copyright>&#169;</copyright>
    <category>Weblog</category>
    <docs>http://backend.userland.com/rss</docs>
    <image>
      <url>https://yoshiweb.net/blog/admin/nucleus2.gif</url>
      <title>yoshiweb.NET-blog</title>
      <link>https://yoshiweb.net/blog/</link>
    </image>
    <item>
 <title>BraveブラウザのLeo AIが便利</title>
 <link>https://yoshiweb.net/blog/?itemid=555</link>
<description><![CDATA[<b>たまにBraveブラウザを使ってる</b><br />
メインはChromeだけど、広告をブロックしてくれるのでBraveブラウザをたまに使ってる。<br />
<br />
このBraveブラウザには、「Leo」というAIアシスタントが組み込まれている。特別な設定やインストールなしで手軽に使える。<br />
<br />
ブラウザのサイドバーからすぐにアクセスでき、見てるサイトを要約できる。<br />
英語サイトを日本語ですぐに要約できるので便利！<br />
<br />
無料プランでは使用回数に制限があるようだけど、いまのところ課金しないで問題ない。]]></description>
 <category>雑記</category>
<comments>https://yoshiweb.net/blog/?itemid=555</comments>
 <pubDate>Wed, 5 Mar 2025 09:49:47 +0900</pubDate>
</item><item>
 <title>絶対パスのURLに変換するJSの関数</title>
 <link>https://yoshiweb.net/blog/?itemid=553</link>
<description><![CDATA[<script src="https://gist.github.com/yoshiweb/a6f761446f6e112b52afdaa20edabec5.js"></script>]]></description>
 <category>Web制作</category>
<comments>https://yoshiweb.net/blog/?itemid=553</comments>
 <pubDate>Fri, 5 Apr 2024 16:14:08 +0900</pubDate>
</item><item>
 <title>Mac に Unreal Engine 5 インストール</title>
 <link>https://yoshiweb.net/blog/?itemid=552</link>
<description><![CDATA[Mac に Unreal Engine 5 インストールしたが起動時にXcode入ってないと起動できない的な表示が出て起動できなかった。<br />
Xcodeをインストールして試したけど、変わらず。<br />
再起動してもダメ。<br />
<br />
ターミナルで `<b>sudo xcode-select -r</b>` を実行して、Xcode とそれに関連するコマンドラインツールの選択をリセットしたら起動できるようになった。]]></description>
 <category>Tool</category>
<comments>https://yoshiweb.net/blog/?itemid=552</comments>
 <pubDate>Tue, 26 Sep 2023 15:24:03 +0900</pubDate>
</item><item>
 <title>ひろばー</title>
 <link>https://yoshiweb.net/blog/?itemid=550</link>
<description><![CDATA[メタバースというワードを耳にするけど、VRが必要だったり、会員登録が面倒だったりするので仮想空間を手軽に試せる広場「ひろばー」を作ってみた。<br />
<br />
<a href="https://hillover.yoshiweb.net/">https://hillover.yoshiweb.net/</a><br />
<br />
<b>特徴</b><br />
・ログイン不要で参加できる<br />
・広場で他の人の名前なんて知らないので、ニックネームなど不要<br />
・個人情報など入力しないでください。<br />
・他の人の発言を聞き逃すと取り戻せないので、過去ログなどは表示しない。<br />
<br />
<b>機能</b><br />
・歩く<br />
・話す<br />
<br />
<b>技術</b><br />
・firebase<br />
・three.js<br />
<br />
<b>今後</b><br />
・気持ちがのって時間がとれれば...]]></description>
 <category>雑記</category>
<comments>https://yoshiweb.net/blog/?itemid=550</comments>
 <pubDate>Mon, 11 Apr 2022 15:02:19 +0900</pubDate>
</item><item>
 <title>ファイル一覧をテキストファイルに出力する (macOS)</title>
 <link>https://yoshiweb.net/blog/?itemid=545</link>
<description><![CDATA[事前準備 : Homebrewで tree をインストール<br />
<br />
<hs>brew install tree</hs><br />
<br />
<br />
実行<br />
例) テキストファイルに出力する<br />
<hs>tree ./htdocs/ -i -f > path.txt</hs><br />
<br />
例) PDFファイルのみ出力する<br />
<hs>tree ./htdocs/-i -f -P '*pdf' --prune > pdf.txt</hs>]]></description>
 <category>雑記</category>
<comments>https://yoshiweb.net/blog/?itemid=545</comments>
 <pubDate>Mon, 20 Dec 2021 10:23:56 +0900</pubDate>
</item><item>
 <title>ディレクトリがなければ作成する (node.js)</title>
 <link>https://yoshiweb.net/blog/?itemid=543</link>
<description><![CDATA[<br />
<hs><br />
const fs = require('fs');<br />
<br />
const path = 'ファイルパス';<br />
<br />
if (!fs.existsSync(path)) {<br />
    fs.mkdirSync(path, { recursive: true });<br />
}<br />
</hs><br />
<br />
参考<br />
<a href="https://note.com/teitei_tk/n/n61ce2f1bf7f3">Node.js v10.12.0からは再帰的にディレクトリを作成できる。</a><br />
<a href="https://www.gesource.jp/weblog/?p=7672">ディレクトリがなければ作成するNode.jsのコード</a><br />
]]></description>
 <category>雑記</category>
<comments>https://yoshiweb.net/blog/?itemid=543</comments>
 <pubDate>Mon, 20 Dec 2021 10:13:57 +0900</pubDate>
</item><item>
 <title>macOS Sierra (10.12) で Adobe Flash CS3 を使う</title>
 <link>https://yoshiweb.net/blog/?itemid=539</link>
<description><![CDATA[macOS Sierra (10.12) は、Java 6のサポートをしてないので Adobe Flash CS6 は使えませんが、Adobe Flash CS3は使えた！<br />
<br />
Creative Suite 3 （CS3）のライセンス認証サーバーは経年劣化で廃止されたので、新しいシリアル番号とインストーラーが必要らしい。<br />
<br />
「ログイン」してCS3のシリアル番号を入力したら新しいシリアル番号を発行してくれた。<br />
インストーラーのダウンロード時にAkamaiのアプリをインストールさせられた。<br />
<br />
<a href="https://helpx.adobe.com/jp/creative-suite/kb/cs3-product-downloads.html">Adobe Creative Suite 3 製品のダウンロード</a><br />
<a href="https://helpx.adobe.com/jp/creative-suite/kb/cs3-product-downloads.html">https://helpx.adobe.com/jp/creative-suite/kb/cs3-product-downloads.html</a><br />
<br />
※ macOS Sierra (10.12) は Adobe の <a href="https://helpx.adobe.com/jp/flash/kb/6410.html">必要システム構成</a> ではないので自己責任にてお願いします。]]></description>
 <category>Flash</category>
<comments>https://yoshiweb.net/blog/?itemid=539</comments>
 <pubDate>Wed, 10 Jan 2018 18:40:43 +0900</pubDate>
</item><item>
 <title>Adobe Animate CC と Adobe Flash CCを共存させる</title>
 <link>https://yoshiweb.net/blog/?itemid=536</link>
<description><![CDATA[Adobe Flash Professional CC が Adobe Animate CCに変更になって<br />
Adobe Creative CloudからアップデートしてAdobe Animate CCをインストールすると<br />
勝手にAdobe Flash Professional CC が削除されたｗ<br />
<br />
「最新版あれば Adobe Flash CC はいらないでしょう！」という<br />
Adobeさんの心遣いかもしれませんが、念のためAdobe Flash CCも残しておきたい場合は<br />
Adobe Creative Cloud の「製品の一覧」の「以前のバージョン」から<br />
Adobe Flash CCのバージョンを選んでをインストールすれば<br />
Adobe Animate CC と Adobe Flash CCを共存できた。<br />
<br />
CC(2015)は Adobe Flash CC 2015<br />
CC(2015.1)は Adobe Animate CC<br />
<br />
※2019年追記：Adobeが認定したバージョン以外使用できなくなったようです。<br />
参考：<a href="https://jdash.info/archives/Adobe%20CC%E3%82%92%E5%A5%91%E7%B4%84%E3%81%97%E3%81%A6%E3%81%84%E3%81%A6%E3%82%82CS6%E3%81%AF%E4%BD%BF%E7%94%A8%E7%A6%81%E6%AD%A2.html">Adobe CCを契約していてもCS6は使用禁止？ さらにCCでも古いバージョンの使用を認めない方針に。</a>]]></description>
 <category>Flash</category>
<comments>https://yoshiweb.net/blog/?itemid=536</comments>
 <pubDate>Wed, 10 Feb 2016 12:25:28 +0900</pubDate>
</item><item>
 <title>Flashで縮小した画像の描画がおかしくなる件</title>
 <link>https://yoshiweb.net/blog/?itemid=533</link>
<description><![CDATA[以前も記事にしたFlashで<a href="https://yoshiweb.net/blog/?itemid=444">画像を縮小して座標0.0から遠ざかると描画がおかしくなる</a>件ですが<br />
一応、ビットマップキャッシュを有効にすれば大丈夫っぽい感じ！！<br />
<br />
<!--<br />
※でっかいディスプレイで見ないと症状は現れないかもです。<br />
※Mac OS 10.9.5／Flash Player 19.0.0.183／Thunderbolt Display／MacBookAir では症状が現れました。<br />
<script type="text/javascript" src="http://wonderfl.net/blogparts/gSqy/js"></script><p class="ttlBpWonderfl" style="width: 465px; margin: 0; text-align: right; font-size: 11px;"><a href="http://wonderfl.net/c/gSqy/fullscreen" title="縮小した画像を右／下へ移動すると画像が正しく描画されない">縮小した画像を右／下へ移動すると画像が正しく描画されない - wonderfl build flash online</a></p>
<br />
<script type="text/javascript" src="http://wonderfl.net/blogparts/GYeL/js"></script><p class="ttlBpWonderfl" style="width: 465px; margin: 0; text-align: right; font-size: 11px;"><a href="http://wonderfl.net/c/GYeL/fullscreen" title="縮小した画像を右／下へ移動すると画像が正しく描画されない：対応策">縮小した画像を右／下へ移動すると画像が正しく描画されない：対応策 - wonderfl build flash online</a></p>
--><br />
]]></description>
 <category>Flash</category>
<comments>https://yoshiweb.net/blog/?itemid=533</comments>
 <pubDate>Tue, 8 Sep 2015 12:13:57 +0900</pubDate>
</item><item>
 <title>Google ドライブのボーナス容量の有効期限が近づいています。</title>
 <link>https://yoshiweb.net/blog/?itemid=529</link>
<description><![CDATA[Googleからキャンペーンで増やしたドライブの容量を<br />
有効期限になるから減らすよ！ってメールが来た！<br />
<br />
メールでは <b>Unknown promotion - 10G</b> しか書いてなくて<br />
なんの有効期限かわからなくて戸惑ったけど、期間的に<br />
「<a href="http://www.appbank.net/2013/09/25/iphone-application/673300.php">Quickofficeを入れたら2年間10GB容量増やしてやんよ</a>」で増やした有効期限が来たみたい！<br />
<br />
すっかり忘れてたｗｗ<br />
期限切れてもデータは消えないらしいけど、容量オーバーすると<br />
Gmailとか受信できなくなるだろうからデータ整理するかな！<br />
<br />
15GB → 25GB → 15GB... (´・ω・｀)<br />
<img src="//yoshiweb.net/blog/media/529/google_drive.png" alt="メール">]]></description>
 <category>雑記</category>
<comments>https://yoshiweb.net/blog/?itemid=529</comments>
 <pubDate>Fri, 4 Sep 2015 11:53:41 +0900</pubDate>
</item>
  </channel>
</rss>