<?xml version="1.0" encoding="UTF-8"?>

<feed xml:lang="ja" xmlns="http://www.w3.org/2005/Atom">
    <title>yoshiweb.NET-blog</title>
    <subtitle>FlashやActionScriptなどWeb制作に関するメモっぽいものをメインに書くつもり。</subtitle>
    <id>https://yoshiweb.net/blog/:1</id>

    <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/" />
    <link rel="self" type="application/atom+xml" href="https://yoshiweb.net/blog/atom.php" />
    <generator uri="http://nucleuscms.org/">Nucleus CMS v3.71</generator>
    <updated>2025-03-05T00:49:47Z</updated>

    <entry>
 <title type="html"><![CDATA[BraveブラウザのLeo AIが便利]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=555" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2025-03-05T00:49:47Z</updated>
 <published>2025-03-05T09:49:47+09:00</published>
 <content type="html"><![CDATA[<b>たまにBraveブラウザを使ってる</b><br />
メインはChromeだけど、広告をブロックしてくれるのでBraveブラウザをたまに使ってる。<br />
<br />
このBraveブラウザには、「Leo」というAIアシスタントが組み込まれている。特別な設定やインストールなしで手軽に使える。<br />
<br />
ブラウザのサイドバーからすぐにアクセスでき、見てるサイトを要約できる。<br />
英語サイトを日本語ですぐに要約できるので便利！<br />
<br />
無料プランでは使用回数に制限があるようだけど、いまのところ課金しないで問題ない。]]></content>
 <id>https://yoshiweb.net/blog/:1:555</id>
</entry><entry>
 <title type="html"><![CDATA[絶対パスのURLに変換するJSの関数]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=553" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2024-04-05T07:14:08Z</updated>
 <published>2024-04-05T16:14:08+09:00</published>
 <content type="html"><![CDATA[<script src="https://gist.github.com/yoshiweb/a6f761446f6e112b52afdaa20edabec5.js"></script>]]></content>
 <id>https://yoshiweb.net/blog/:1:553</id>
</entry><entry>
 <title type="html"><![CDATA[Mac に Unreal Engine 5 インストール]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=552" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2023-09-26T06:24:03Z</updated>
 <published>2023-09-26T15:24:03+09:00</published>
 <content type="html"><![CDATA[Mac に Unreal Engine 5 インストールしたが起動時にXcode入ってないと起動できない的な表示が出て起動できなかった。<br />
Xcodeをインストールして試したけど、変わらず。<br />
再起動してもダメ。<br />
<br />
ターミナルで `<b>sudo xcode-select -r</b>` を実行して、Xcode とそれに関連するコマンドラインツールの選択をリセットしたら起動できるようになった。]]></content>
 <id>https://yoshiweb.net/blog/:1:552</id>
</entry><entry>
 <title type="html"><![CDATA[ひろばー]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=550" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2022-04-11T06:02:19Z</updated>
 <published>2022-04-11T15:02:19+09:00</published>
 <content type="html"><![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 />
・気持ちがのって時間がとれれば...]]></content>
 <id>https://yoshiweb.net/blog/:1:550</id>
</entry><entry>
 <title type="html"><![CDATA[ファイル一覧をテキストファイルに出力する (macOS)]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=545" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2021-12-20T01:23:56Z</updated>
 <published>2021-12-20T10:23:56+09:00</published>
 <content type="html"><![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>]]></content>
 <id>https://yoshiweb.net/blog/:1:545</id>
</entry><entry>
 <title type="html"><![CDATA[ディレクトリがなければ作成する (node.js)]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=543" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2021-12-20T01:13:57Z</updated>
 <published>2021-12-20T10:13:57+09:00</published>
 <content type="html"><![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 />
]]></content>
 <id>https://yoshiweb.net/blog/:1:543</id>
</entry><entry>
 <title type="html"><![CDATA[macOS Sierra (10.12) で Adobe Flash CS3 を使う]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=539" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2018-01-10T09:40:43Z</updated>
 <published>2018-01-10T18:40:43+09:00</published>
 <content type="html"><![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> ではないので自己責任にてお願いします。]]></content>
 <id>https://yoshiweb.net/blog/:1:539</id>
</entry><entry>
 <title type="html"><![CDATA[Adobe Animate CC と Adobe Flash CCを共存させる]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=536" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2016-02-10T03:25:28Z</updated>
 <published>2016-02-10T12:25:28+09:00</published>
 <content type="html"><![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>]]></content>
 <id>https://yoshiweb.net/blog/:1:536</id>
</entry><entry>
 <title type="html"><![CDATA[Flashで縮小した画像の描画がおかしくなる件]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=533" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2015-09-08T03:13:57Z</updated>
 <published>2015-09-08T12:13:57+09:00</published>
 <content type="html"><![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 />
]]></content>
 <id>https://yoshiweb.net/blog/:1:533</id>
</entry><entry>
 <title type="html"><![CDATA[Google ドライブのボーナス容量の有効期限が近づいています。]]></title>
 <link rel="alternate" type="text/html" href="https://yoshiweb.net/blog/?itemid=529" />
 <author>
  <name>yoshiweb</name>
 </author>
 <updated>2015-09-04T02:53:41Z</updated>
 <published>2015-09-04T11:53:41+09:00</published>
 <content type="html"><![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="メール">]]></content>
 <id>https://yoshiweb.net/blog/:1:529</id>
</entry>
</feed>