正しいXHTMLだ

このコミットが含まれているのは:
守矢諏訪子 2022-03-31 02:06:42 +09:00
コミット fe6bb7556b
130個のファイルの変更3105行の追加2879行の削除

3
config
ファイルの表示

@ -11,8 +11,9 @@ blog/**/*.md:
directorify
tags tags/*.tag
markdown chroma=emacs
template page
inner-template
template post
template page
*.tag: blog/**/*.md
ext .html

ファイルの表示

@ -1,15 +1,10 @@
{{ define "header" }}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
{{ define "header" }}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="{{ html .Site.Other.Author }}" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="{{ html .Site.Other.Title }}" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="{{ .Site.Other.Url }}/{{ .Url }}" />
<meta property="og:image" content="{{ .Rel "static/egaokero.jpg" }}" />
<link rel="alternate" type="application/atom+xml" title="{{ html .Site.Other.Title }} feed" href="{{ .Rel "blog.atom" }}" />
<title>{{ .Site.Other.Title }}{{ if .Title }}: {{ .Title }}{{ end }}</title>
<link rel="stylesheet" type="text/css" href="{{ .Rel "static/style.css" }}" />
@ -19,25 +14,37 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
{{ end }}
{{ define "container" }}
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
{{ end }}
{{ end }}
{{ define "footer" }}
{{ define "footer" }}
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
{{ end }}
{{define "date"}}
<time datetime="{{ .Format "2006-01-02T15:04:05Z07:00" }}">
{{ .Format "2006年01月02日" }}
</time>
{{ .Format "2006年01月02日" }}
{{end}}
{{ define "page" }}{{ template "header" . }}
{{ define "page" }}
{{ template "header" . }}
{{ template "container" . }}
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -63,11 +70,11 @@
</p>
<hr />
{{ .Content }}
{{ template "footer" . }}{{ end }}
{{ template "footer" . }}
{{ end }}
{{ define "post" }}
<article>
<header>
<div class="header">
<h1>{{ .Title }}</h1>
<a href="/">トップページに戻る</a>
<div class="info">
@ -76,11 +83,11 @@
{{ range $i, $t := .Tags }}{{if $i}},{{end}}
<a href="/tags/{{ $t }}/">{{ $t }}</a>{{ end }}
</div>
</header>
<section>
</div>
<hr />
<div>
{{ .Content }}
</section>
</article>
</div>
{{ end }}
{{define "tag"}}

ファイルの表示

@ -1,16 +1,12 @@
title: トップページ
----
<article>
<p class="lead">
ようこそ、あたしのウェブページへ!諏訪子です。
</p>
</article>
<p class="lead">
ようこそ、あたしのウェブページへ!諏訪子です。
</p>
{{ range (((.Site.Pages.Children "blog/").Where "Url" "/$").WhereNot "Draft" "true") }}
<section class="mb5 {{ if .Date.Year | changed "year" }}mt15{{ end }}">
<div class="mb5 {{ if .Date.Year | changed "year" }}mt15{{ end }}">
{{ template "date" .Date }}
<a href="{{ $.Rel .Url }}">{{ .Title }}</a>
</section>
</div>
{{ end }}

ファイルの表示

@ -19,7 +19,7 @@ body {
border: 4px #dde22d ridge;
}
.container, header {
.container {
margin: 0 auto;
background-color: #170b15;
max-width: 840px;
@ -63,7 +63,7 @@ h1 {
text-decoration: underline;
}
header > h1 {
.header > h1 {
font-size: 1.5em;
text-decoration: none;
}

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/about/" />
<meta property="og:image" content="../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../blog.atom" />
<title>テクニカル諏訪子: 私について</title>
<link rel="stylesheet" type="text/css" href="../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -78,9 +76,19 @@
大きすぎるになったら、政府は大企業にコントロールされています。<br />
そのループで動いていますので、政府はなくなったら、大企業もなくなると思います。</p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -33,168 +33,6 @@
<content type="html">
&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.1//EN&#34; &#34;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#34;&gt;
&lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xmlns:xsi=&#34;http://www.w3.org/2001/XMLSchema-instance&#34; xsi:schemalocation=&#34;http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd&#34; lang=&#34;ja&#34; xml:lang=&#34;ja&#34;&gt;
&lt;head&gt;
&lt;meta content=&#34;text/html; charset=utf-8&#34; http-equiv=&#34;content-type&#34; /&gt;
&lt;meta name=&#34;author&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta name=&#34;description&#34; content=&#34;デジタル自主のロリ神様&#34; /&gt;
&lt;meta property=&#34;og:title&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:type&#34; content=&#34;website&#34; /&gt;
&lt;meta property=&#34;og:locale&#34; content=&#34;ja_JP&#34; /&gt;
&lt;meta property=&#34;og:site_name&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:url&#34; content=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/webdev-javascript-ha-fuyou/&#34; /&gt;
&lt;meta property=&#34;og:image&#34; content=&#34;../../static/egaokero.jpg&#34; /&gt;
&lt;link rel=&#34;alternate&#34; type=&#34;application/atom+xml&#34; title=&#34;テクニカル諏訪子 feed&#34; href=&#34;../../blog.atom&#34; /&gt;
&lt;title&gt;テクニカル諏訪子: 【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要&lt;/title&gt;
&lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;../../static/style.css&#34; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&#34;jswarning&#34; id=&#34;jswarning&#34;&gt;注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。&lt;/div&gt;
&lt;script type=&#34;text/javascript&#34;&gt;
document.getElementById(&#39;jswarning&#39;).style.display = &#39;block&#39;;
&lt;/script&gt;
&lt;div class=&#34;container&#34;&gt;
&lt;img src=&#34;/static/Eqjk_WgVQAE2psn-new.jpeg&#34; class=&#34;header-img&#34; alt=&#34;ヘッダー&#34; /&gt;
&lt;p&gt;
&lt;a href=&#34;/&#34;&gt;トップ&lt;/a&gt; |
&lt;a href=&#34;/about/&#34;&gt;自己紹介&lt;/a&gt; |
&lt;a href=&#34;/contact/&#34;&gt;連絡先&lt;/a&gt; |
&lt;a href=&#34;/freelancer/&#34;&gt;フリーランス&lt;/a&gt; |
&lt;a href=&#34;/service/&#34;&gt;サービス&lt;/a&gt; |
&lt;a href=&#34;/webring/&#34;&gt;リング&lt;/a&gt; |
&lt;a href=&#34;/i2pabout/&#34;&gt;I2Pについて&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;/blog.atom&#34;&gt;&lt;img src=&#34;/static/rssa.png&#34; alt=&#34;RSS&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://social.076.ne.jp/TechnicalSuwako&#34;&gt;&lt;img src=&#34;/static/mastodon.png&#34; alt=&#34;Mastodon&#34; /&gt;/&lt;img src=&#34;/static/pleroma.png&#34; alt=&#34;Pleroma&#34; /&gt;でフォロー&lt;/a&gt; |
&lt;a href=&#34;https://video.076.ne.jp/c/technicalsuwako&#34;&gt;&lt;img src=&#34;/static/peertube.png&#34; alt=&#34;PeerTube&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://www.technicalsuwako.jp&#34;&gt;&lt;img src=&#34;/static/clearnet.png&#34; alt=&#34;一般ネット&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/&#34;&gt;&lt;img src=&#34;/static/tor.png&#34; alt=&#34;Tor&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://technicalsuwako.i2p/&#34;&gt;&lt;img src=&#34;/static/i2p.png&#34; alt=&#34;I2P&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
支援♡:
&lt;a href=&#34;/support/monero/&#34;&gt;&lt;img src=&#34;/static/monero.png&#34; alt=&#34;Monero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/wownero&#34;&gt;&lt;img src=&#34;/static/wownero.png&#34; alt=&#34;Wownero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/bitcoin&#34;&gt;&lt;img src=&#34;/static/bitcoin.png&#34; alt=&#34;Bitcoin&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;私の建前は本音と同じですので、投稿を書いたらあんま丁寧じゃないと思いますね。&lt;br /&gt;
正直に要点に触れないと、社会又はデジタルの問題が大きくなりますから。&lt;br /&gt;
何で上記の事を教えるの?と思ったら、これはネットの重体の問題について記事ですので、今回は特に甘くないです。&lt;/p&gt;
&lt;p&gt;なお、下記は本当の会社のウエブサイトを論いますが、これは責めるためじゃなくて、磨きに手伝う為です。&lt;br /&gt;
&lt;a href=&#34;/freelancer/&#34;&gt;フリーランスウエブ開発者&lt;/a&gt;ですので、欲しければ&lt;a href=&#34;/contact/&#34;&gt;ご連絡下さい&lt;/a&gt;。&lt;br /&gt;
私は15年間ぐらいウエブ開発の経験がありますので、正しい開発方法でやります。&lt;/p&gt;
&lt;p&gt;実は、ネット上90%のウエブサイトはJSは全然要らないです。&lt;br /&gt;
Ameboみたいなブログを読むにはJSは必須だったら、ウエブ開発者は正しくウエブページの作り方を&lt;a href=&#34;https://youtube.076.ne.jp/watch?v=OHLp0xEYKXY&#34;&gt;全然わからない&lt;/a&gt;という意味です。&lt;/p&gt;
&lt;h1 id=&#34;httpswwwinterlinkorjpservicefletsindexhtml&#34;&gt;&lt;a href=&#34;https://www.interlink.or.jp/service/flets/index.html&#34;&gt;株式会社インターリンク&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_003758.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_004131.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
上はJavaScriptはON、下はJavaScriptはOFF&lt;/p&gt;
&lt;p&gt;JSはONの場合、1:24分でページが読み込みました。&lt;br /&gt;
何故!?&lt;br /&gt;
JSを使う場所は一体何処ですか?&lt;/p&gt;
&lt;p&gt;比べて、JSはOFFの場合、同じページは2.66秒で読み込みました。&lt;br /&gt;
所で、JSはONのブラウザでプロクシーを使わなくて、JSはOFFのブラウザでTorプロクシーを使いました。&lt;br /&gt;
この問題はそんなに大変です!!&lt;/p&gt;
&lt;p&gt;読者は株式会社インターリンクの社長だったら、欲しければフリーランス契約者として修正出来ます。&lt;br /&gt;
ウエブサイトはスピードアップしたら、確かにお客様数アップにされます。&lt;/p&gt;
&lt;h1 id=&#34;httpswwwsoumugojpsenkyosenkyo-sdataindexhtml&#34;&gt;&lt;a href=&#34;https://www.soumu.go.jp/senkyo/senkyo_s/data/index.html&#34;&gt;総務省&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_010026.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_010616.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
上はJavaScriptはON、下はJavaScriptはOFF&lt;/p&gt;
&lt;p&gt;これは政府のウエブサイトですので、確かにうまく動いていませんね。&lt;br /&gt;
全部の政府に反対で、我々日本人に政府無くた方が良いと思うのに、殆ど全ての老人様は投票(選挙=奴隷向け提案箱)したいですので、これも含めます。&lt;br /&gt;
政府もフリーランス契約で募集したら迎えです。&lt;br /&gt;
政府か自由市場か、どっちでもから報酬を受け取ったら良いです。&lt;/p&gt;
&lt;p&gt;JSはONの場合、2:12分で読み込みました。「favicon.ico」含めては4:24分になりました。「000392553.gif」が読み込んだ後は結局7:36分になりました。&lt;br /&gt;
JSはOFFの場合は14秒で、「000392553.gif」が読み込んだ後は結局52秒で読み込みました。&lt;/p&gt;
&lt;p&gt;でも、アクセシビリティツールがありますので、JSは必要な点がありますが、JS無しでもアクセス出来ますので、良かったです。&lt;br /&gt;
でも、JSはONの場合は本当に本当に遅すぎます。&lt;/p&gt;
&lt;h1 id=&#34;dbrgi-hungarian-bar--dininghttpsdobrogibusinesssite&#34;&gt;&lt;a href=&#34;https://dobrogi.business.site/&#34;&gt;DÖBRÖGI Hungarian Bar &amp;amp; dining&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_011906.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
&lt;a href=&#34;/blog/cryptocurrency-kakunin-with-cointop/&#34;&gt;最近このレストランに行きましたので&lt;/a&gt;、ホームページを確認します。&lt;br /&gt;
JSはONにしたらも、メニューボタン及び「お問い合わせ」リンクが動いていません。&lt;br /&gt;
理由はちょっと違いますが、それも不味いですCDNの利用。&lt;br /&gt;
24件リソースのうちに、22件はグーラグから来ます。&lt;/p&gt;
&lt;p&gt;CDNを使う事が本当に悪習です。&lt;br /&gt;
プライバシーを守りたったらどう?&lt;br /&gt;
CDNのサーバーは重くなったらどう?&lt;br /&gt;
CDNからウイルスを受け取ったらどう?&lt;br /&gt;
いつでも自分でホスティングした方が良いです!!&lt;/p&gt;
&lt;h1 id=&#34;clip-studiohttpswwwclipstudionetoekakiarchives151661&#34;&gt;&lt;a href=&#34;https://www.clipstudio.net/oekaki/archives/151661&#34;&gt;CLIP STUDIOのイラスト・漫画描き方ナビ&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_013327.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
JSがONとOFFの違いが無いみたいですが、JS無しでも広告を見えるのは怖すぎますね。&lt;br /&gt;
20秒で読み込みますが、これは沢山JPEGとPNGファイルがありますから。&lt;br /&gt;
DOMだけは2~4秒で読み込みますので、悪くないです。&lt;br /&gt;
確認した時、フェイクブックの「sdk.js」、グーラグの「conversation.js」と「gtm.js」、及びツイッターの「widgets.js」だけを受け取れませんでした。&lt;br /&gt;
でも、受け取れなくた方が良いですので、これは良い物です。&lt;/p&gt;
&lt;p&gt;なお、Clipboard.jsは要りません。&lt;br /&gt;
コピペ機能性の無いブラウザが存在しませんので、全然不要です。&lt;/p&gt;
&lt;h1 id=&#34;httpstabelogcomtokyo&#34;&gt;&lt;a href=&#34;https://tabelog.com/tokyo/&#34;&gt;食べログ&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_025444.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
食べログは結構面白いです。&lt;br /&gt;
JSはOFFにしたら、「エリアから探す」でホバーオーバーしたら、メニューが来ます。&lt;br /&gt;
でも、このメニューで「市区町村から探す」をクリックしたら、少しだけページダウンにされます。&lt;br /&gt;
そうして、各レストランの最初の写真以外、JS無しで読み込みません。&lt;/p&gt;
&lt;p&gt;トップページで、「エリアから探す」部分で都市をクリックしたら、何も起こっていません。&lt;br /&gt;
理由はこれです:&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_030147.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_030251.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
まだわからない場合「a href」タグは何処?&lt;br /&gt;
バカみたいに凄いデカイdivタグがありますが、リンクタグがありません…&lt;/p&gt;
&lt;p&gt;所で、貴方はレストランのランキングサイトですので、「新型コロナウイルス拡大における対応のお願い」というプロパガンダは要りません。&lt;br /&gt;
もう2022年ですよ、コロナはオワコンです&lt;/p&gt;
&lt;p&gt;でも、これ好き:&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_031659.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;h1 id=&#34;uta-nethttpswwwuta-netcommovie316351&#34;&gt;&lt;a href=&#34;https://www.uta-net.com/movie/316351/&#34;&gt;Uta-Net&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_014847.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
JSはONだったら、歌詞をコピペ出来ません。&lt;br /&gt;
これは著作権の為だと思いますが、著作権はただの詐欺ですので、自由にコピペ出来る様にした方が良いです。&lt;br /&gt;
又は、JSはOFFにすると、コピペを出来る様になります&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_015043.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
所で、JS無しで動画を見えませんので、URLを貼って下さい。&lt;br /&gt;
その場合は自分でVLCで開ける様になります。&lt;/p&gt;
&lt;h1 id=&#34;peertubehttpsdocsjoinpeertubeorginstall-any-os&#34;&gt;&lt;a href=&#34;https://docs.joinpeertube.org/install-any-os&#34;&gt;PeerTubeの説明書&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_015413.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
一体何で説明書を読む為JSは必須ですか?&lt;br /&gt;
普通本を読む為、水着を着用しないと開けませんか?&lt;br /&gt;
マジで辞めなさい…&lt;/p&gt;
&lt;h1 id=&#34;httpsjpmercaricom&#34;&gt;&lt;a href=&#34;https://jp.mercari.com/&#34;&gt;メルカリ&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_020056.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
真っ白ページです。&lt;br /&gt;
何故!?&lt;br /&gt;
市場サイトですよ!!&lt;br /&gt;
JavaScriptは必須だったら可笑しいでしょ&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;下記は市場にJavaScriptは不要の証拠です&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_020230.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
ジモティーはJSが無しでもOKです。&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220328_020423.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
アマゾンさえもJS無しでもOKです。&lt;br /&gt;
一体何でアマゾンを使うかと思ったら、ねぇ、沢山の買いたい漫画や電子機器はアマゾンだけで買えますから。&lt;/p&gt;
&lt;h1 id=&#34;deeplhttpswwwdeeplcomtranslator&#34;&gt;&lt;a href=&#34;https://www.deepl.com/translator&#34;&gt;DeepL&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;Screenshot_20220328_022615.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
わからなければ、DeepLはGoolag翻訳みたいな翻訳機です。&lt;br /&gt;
まずは、Linuxですので、IEを使えません。&lt;br /&gt;
でも、JSはOFFだったら、UAをわかりませんので、しょうがないです。&lt;br /&gt;
酷い点は、全然ポップアップを閉じれません。&lt;br /&gt;
手動で「ie11Modal_backdrop」クラスを持っているDIVを削除したら、閉じれます。&lt;br /&gt;
でも、JS無しで使えませんので、意味がありません。&lt;br /&gt;
JSの無い翻訳機が存在しないよと思ったら、&lt;a href=&#34;https://simplytranslate.org/&#34;&gt;これは何&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;以上&lt;/p&gt;
&lt;hr /&gt;
&lt;a href=&#34;https://github.com/piranha/gostatic&#34;&gt;gostatic&lt;/a&gt;で創作しました。&lt;a href=&#34;https://git.076.ne.jp/TechnicalSuwako/StaticSuwako&#34;&gt;&lt;img src=&#34;/static/git.png&#34; alt=&#34;Git&#34; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
</entry>
@ -220,110 +58,6 @@ JSの無い翻訳機が存在しないよと思ったら、&lt;a href=&#34;https
<content type="html">
&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.1//EN&#34; &#34;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#34;&gt;
&lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xmlns:xsi=&#34;http://www.w3.org/2001/XMLSchema-instance&#34; xsi:schemalocation=&#34;http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd&#34; lang=&#34;ja&#34; xml:lang=&#34;ja&#34;&gt;
&lt;head&gt;
&lt;meta content=&#34;text/html; charset=utf-8&#34; http-equiv=&#34;content-type&#34; /&gt;
&lt;meta name=&#34;author&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta name=&#34;description&#34; content=&#34;デジタル自主のロリ神様&#34; /&gt;
&lt;meta property=&#34;og:title&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:type&#34; content=&#34;website&#34; /&gt;
&lt;meta property=&#34;og:locale&#34; content=&#34;ja_JP&#34; /&gt;
&lt;meta property=&#34;og:site_name&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:url&#34; content=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/lynx-tor-and-utf8-use-way/&#34; /&gt;
&lt;meta property=&#34;og:image&#34; content=&#34;../../static/egaokero.jpg&#34; /&gt;
&lt;link rel=&#34;alternate&#34; type=&#34;application/atom+xml&#34; title=&#34;テクニカル諏訪子 feed&#34; href=&#34;../../blog.atom&#34; /&gt;
&lt;title&gt;テクニカル諏訪子: 【Lynx】TorとUTF-8で使い方&lt;/title&gt;
&lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;../../static/style.css&#34; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&#34;jswarning&#34; id=&#34;jswarning&#34;&gt;注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。&lt;/div&gt;
&lt;script type=&#34;text/javascript&#34;&gt;
document.getElementById(&#39;jswarning&#39;).style.display = &#39;block&#39;;
&lt;/script&gt;
&lt;div class=&#34;container&#34;&gt;
&lt;img src=&#34;/static/Eqjk_WgVQAE2psn-new.jpeg&#34; class=&#34;header-img&#34; alt=&#34;ヘッダー&#34; /&gt;
&lt;p&gt;
&lt;a href=&#34;/&#34;&gt;トップ&lt;/a&gt; |
&lt;a href=&#34;/about/&#34;&gt;自己紹介&lt;/a&gt; |
&lt;a href=&#34;/contact/&#34;&gt;連絡先&lt;/a&gt; |
&lt;a href=&#34;/freelancer/&#34;&gt;フリーランス&lt;/a&gt; |
&lt;a href=&#34;/service/&#34;&gt;サービス&lt;/a&gt; |
&lt;a href=&#34;/webring/&#34;&gt;リング&lt;/a&gt; |
&lt;a href=&#34;/i2pabout/&#34;&gt;I2Pについて&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;/blog.atom&#34;&gt;&lt;img src=&#34;/static/rssa.png&#34; alt=&#34;RSS&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://social.076.ne.jp/TechnicalSuwako&#34;&gt;&lt;img src=&#34;/static/mastodon.png&#34; alt=&#34;Mastodon&#34; /&gt;/&lt;img src=&#34;/static/pleroma.png&#34; alt=&#34;Pleroma&#34; /&gt;でフォロー&lt;/a&gt; |
&lt;a href=&#34;https://video.076.ne.jp/c/technicalsuwako&#34;&gt;&lt;img src=&#34;/static/peertube.png&#34; alt=&#34;PeerTube&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://www.technicalsuwako.jp&#34;&gt;&lt;img src=&#34;/static/clearnet.png&#34; alt=&#34;一般ネット&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/&#34;&gt;&lt;img src=&#34;/static/tor.png&#34; alt=&#34;Tor&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://technicalsuwako.i2p/&#34;&gt;&lt;img src=&#34;/static/i2p.png&#34; alt=&#34;I2P&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
支援♡:
&lt;a href=&#34;/support/monero/&#34;&gt;&lt;img src=&#34;/static/monero.png&#34; alt=&#34;Monero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/wownero&#34;&gt;&lt;img src=&#34;/static/wownero.png&#34; alt=&#34;Wownero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/bitcoin&#34;&gt;&lt;img src=&#34;/static/bitcoin.png&#34; alt=&#34;Bitcoin&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Javascriptは要りません&lt;br /&gt;
毎月新しいパソコン・スマホを購入必要はありません!!&lt;br /&gt;
ですから、コマンドライン用ブラウザを使いましょう!!&lt;/p&gt;
&lt;p&gt;最近まで、好みなコマンドライン用ブラウザはw3mでした。&lt;br /&gt;
理由は、画像を見える、及び日本語文字を表示出来る事です。&lt;br /&gt;
でも、画像は見にくいです。&lt;br /&gt;
そうして、lynxで日本語文字を表示出来る様に出来ましたので、lynxは第一になりました。&lt;/p&gt;
&lt;h1 id=&#34;heading&#34;&gt;インストール&lt;/h1&gt;
&lt;p&gt;まずはlynx及びtorsocksをインストールして下さい。&lt;br /&gt;
Arch・Manjaro・Artixの場合&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;sudo pacman -S lynx torsocks
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Debian・Ubuntu・Devuanの場合&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;sudo apt install lynx torsocks
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Voidの場合&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;sudo xbps-install -S lynx torsocks
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;OpenBSDの場合&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;sudo pkg_add lynx torsocks
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;ところで、現在はOpenBSDを確認中ですので、後は初めてBSDについて記事を書きつもりです。(多分)&lt;/p&gt;
&lt;h1 id=&#34;heading-1&#34;&gt;コンフィグファイル&lt;/h1&gt;
&lt;p&gt;初めて使うする前、まずはコンフィグファイルを受け取りましょう。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;mkdir ~/.config/lynx
sudo cp /etc/lynx.cfg ~/.config/lynx &lt;span style=&#34;color:#666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; sudo chown -R &lt;span style=&#34;color:#a2f;font-weight:bold&#34;&gt;$(&lt;/span&gt;whoami&lt;span style=&#34;color:#a2f;font-weight:bold&#34;&gt;)&lt;/span&gt;:&lt;span style=&#34;color:#a2f;font-weight:bold&#34;&gt;$(&lt;/span&gt;whoami&lt;span style=&#34;color:#a2f;font-weight:bold&#34;&gt;)&lt;/span&gt; ~/.config/lynx
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;.zshrcファイルを編集して下さい。&lt;br /&gt;
bashを使ったら、.bashrcを編集して下さい。&lt;/p&gt;
&lt;p&gt;私はzshを使っていますので、bashを使ったら、自分で「.zshrc」は「.bashrc」に変えて下さい。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;nvim ~/.zshrc
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;下記の文字を貼って下さい。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;export LYNX_CFG=~/.config/lynx/lynx.cfg
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;「ZZ」又は「:wq」で保存して閉じて下さい。&lt;br /&gt;
次:&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;&lt;span style=&#34;color:#a2f&#34;&gt;source&lt;/span&gt; ~/.zshrc
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;lynxのコンフィグファイルを編集して下さい。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;nvim ~/.config/lynx/lynx.cfg
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;「/CHARACTER_SET」で検索して、下記に変更して下さい。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;CHARACTER_SET:utf-8
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;「/ASSUME_LOCAL_CHARSET」で検索して、下記に変更して下さい。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;ASSUME_LOCAL_CHARSET:utf-8
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;「/PREFERRED_LANGUAGE」で検索して、下記に変更して下さい。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;PREFERRED_LANGUAGE:ja
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;「ZZ」又は「:wq」で保存して閉じて下さい。&lt;/p&gt;
&lt;h1 id=&#34;tor&#34;&gt;Tor通して実行して&lt;/h1&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;torsocks lynx 6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;Screenshot_20220325_092848.png&#34;&gt;&lt;img src=&#34;Screenshot_20220325_092848.png&#34; alt=&#34;&#34; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;左はqutebrowserで、右はlynxです。&lt;/p&gt;
&lt;p&gt;以上&lt;/p&gt;
&lt;hr /&gt;
&lt;a href=&#34;https://github.com/piranha/gostatic&#34;&gt;gostatic&lt;/a&gt;で創作しました。&lt;a href=&#34;https://git.076.ne.jp/TechnicalSuwako/StaticSuwako&#34;&gt;&lt;img src=&#34;/static/git.png&#34; alt=&#34;Git&#34; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
</entry>
@ -345,102 +79,6 @@ bashを使ったら、.bashrcを編集して下さい。&lt;/p&gt;
<content type="html">
&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.1//EN&#34; &#34;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#34;&gt;
&lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xmlns:xsi=&#34;http://www.w3.org/2001/XMLSchema-instance&#34; xsi:schemalocation=&#34;http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd&#34; lang=&#34;ja&#34; xml:lang=&#34;ja&#34;&gt;
&lt;head&gt;
&lt;meta content=&#34;text/html; charset=utf-8&#34; http-equiv=&#34;content-type&#34; /&gt;
&lt;meta name=&#34;author&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta name=&#34;description&#34; content=&#34;デジタル自主のロリ神様&#34; /&gt;
&lt;meta property=&#34;og:title&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:type&#34; content=&#34;website&#34; /&gt;
&lt;meta property=&#34;og:locale&#34; content=&#34;ja_JP&#34; /&gt;
&lt;meta property=&#34;og:site_name&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:url&#34; content=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/cryptocurrency-kakunin-with-cointop/&#34; /&gt;
&lt;meta property=&#34;og:image&#34; content=&#34;../../static/egaokero.jpg&#34; /&gt;
&lt;link rel=&#34;alternate&#34; type=&#34;application/atom+xml&#34; title=&#34;テクニカル諏訪子 feed&#34; href=&#34;../../blog.atom&#34; /&gt;
&lt;title&gt;テクニカル諏訪子: 【仮想通貨】cointopで確認する方法&lt;/title&gt;
&lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;../../static/style.css&#34; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&#34;jswarning&#34; id=&#34;jswarning&#34;&gt;注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。&lt;/div&gt;
&lt;script type=&#34;text/javascript&#34;&gt;
document.getElementById(&#39;jswarning&#39;).style.display = &#39;block&#39;;
&lt;/script&gt;
&lt;div class=&#34;container&#34;&gt;
&lt;img src=&#34;/static/Eqjk_WgVQAE2psn-new.jpeg&#34; class=&#34;header-img&#34; alt=&#34;ヘッダー&#34; /&gt;
&lt;p&gt;
&lt;a href=&#34;/&#34;&gt;トップ&lt;/a&gt; |
&lt;a href=&#34;/about/&#34;&gt;自己紹介&lt;/a&gt; |
&lt;a href=&#34;/contact/&#34;&gt;連絡先&lt;/a&gt; |
&lt;a href=&#34;/freelancer/&#34;&gt;フリーランス&lt;/a&gt; |
&lt;a href=&#34;/service/&#34;&gt;サービス&lt;/a&gt; |
&lt;a href=&#34;/webring/&#34;&gt;リング&lt;/a&gt; |
&lt;a href=&#34;/i2pabout/&#34;&gt;I2Pについて&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;/blog.atom&#34;&gt;&lt;img src=&#34;/static/rssa.png&#34; alt=&#34;RSS&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://social.076.ne.jp/TechnicalSuwako&#34;&gt;&lt;img src=&#34;/static/mastodon.png&#34; alt=&#34;Mastodon&#34; /&gt;/&lt;img src=&#34;/static/pleroma.png&#34; alt=&#34;Pleroma&#34; /&gt;でフォロー&lt;/a&gt; |
&lt;a href=&#34;https://video.076.ne.jp/c/technicalsuwako&#34;&gt;&lt;img src=&#34;/static/peertube.png&#34; alt=&#34;PeerTube&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://www.technicalsuwako.jp&#34;&gt;&lt;img src=&#34;/static/clearnet.png&#34; alt=&#34;一般ネット&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/&#34;&gt;&lt;img src=&#34;/static/tor.png&#34; alt=&#34;Tor&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://technicalsuwako.i2p/&#34;&gt;&lt;img src=&#34;/static/i2p.png&#34; alt=&#34;I2P&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
支援♡:
&lt;a href=&#34;/support/monero/&#34;&gt;&lt;img src=&#34;/static/monero.png&#34; alt=&#34;Monero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/wownero&#34;&gt;&lt;img src=&#34;/static/wownero.png&#34; alt=&#34;Wownero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/bitcoin&#34;&gt;&lt;img src=&#34;/static/bitcoin.png&#34; alt=&#34;Bitcoin&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;日前、東京でビットコインキャッシュ(BCH)のミートアップに参加しました。&lt;br /&gt;
今回は赤坂のハンガリーレストランにありましたので、食べ物は凄く美味しかったです(でも、高い)。&lt;br /&gt;
うまケロ(PinePhoneで撮った)&lt;br /&gt;
&lt;img src=&#34;0054b7e40cb0d79dafd4bc27ae66fdd191b365367099d340638fe93ebdc96af2.jpg&#34; alt=&#34;&#34; /&gt; &lt;img src=&#34;c30d8df9aecbf7f118e17d08416f653b5a9d5ac4e688866074f9b11125695332.jpg&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;video src=&#34;majiyabakune.mp4&#34; controls=&#34;controls&#34; style=&#34;max-height: 400px;&#34;&gt;&lt;/video&gt;&lt;/p&gt;
&lt;p&gt;このミートアップで、「スマホで、どのウォレットを使うの?」と聞いた方が居ました。&lt;br /&gt;
BCHの場合は、Electron-Cashを使っていますね。&lt;br /&gt;
&lt;img src=&#34;elec1.png&#34; alt=&#34;&#34; /&gt; &lt;img src=&#34;elec2.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;みんなはExodus Walletというアプリを使っています。&lt;br /&gt;
画面を見たら、cointopが思い浮かびました。&lt;/p&gt;
&lt;p&gt;あたしがオススメ複数仮想通貨を比べられるアプリはcointopです。&lt;br /&gt;
インストールするには、Archの場合&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;yay -S cointop
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;それ以外:&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;go get github.com/cointop-sh/cointop
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://cointop.sh/&#34;&gt;cointop.sh&lt;/a&gt;でも試せます。&lt;/p&gt;
&lt;p&gt;メイン画面で、全ての通貨が表示されています。&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220317_231702.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;小文字「f」を押したら、お気に入りリストに保存します。&lt;br /&gt;
大文字「F」を押したら、お気に入り画面に変えます。&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220317_232028.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;「C」を押したら、比べる用政府通貨を変えられます。&lt;br /&gt;
例えば、日本円は「C」→「g」。&lt;br /&gt;
米ドルは「C」→「x」。&lt;br /&gt;
ユーロは「C」→「9」。&lt;br /&gt;
等&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220317_234129.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;「e」を押したら、今持っている仮想通貨の値を変更出来ます。&lt;br /&gt;
「0」又は空の場合、ポートフォリオから消えます。&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220317_232511.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;「P」を押したら、ポートフォリオリストに変えます。&lt;br /&gt;
&lt;img src=&#34;Screenshot_20220317_233633.png&#34; alt=&#34;&#34; /&gt;&lt;br /&gt;
(XMRとLBC以外、全ては嘘数字ですので、XMRとLBCの値だけを隠します。)&lt;/p&gt;
&lt;p&gt;「Q」を押したら、トップページに戻ります。&lt;br /&gt;
「/」を押したら、仮想通貨を探します(vimと同じくね)。&lt;br /&gt;
トップページで「Q」を押したら、アプリを終了します。&lt;/p&gt;
&lt;p&gt;以上&lt;/p&gt;
&lt;hr /&gt;
&lt;a href=&#34;https://github.com/piranha/gostatic&#34;&gt;gostatic&lt;/a&gt;で創作しました。&lt;a href=&#34;https://git.076.ne.jp/TechnicalSuwako/StaticSuwako&#34;&gt;&lt;img src=&#34;/static/git.png&#34; alt=&#34;Git&#34; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
</entry>
@ -468,115 +106,6 @@ BCHの場合は、Electron-Cashを使っていますね。&lt;br /&gt;
<content type="html">
&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.1//EN&#34; &#34;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#34;&gt;
&lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xmlns:xsi=&#34;http://www.w3.org/2001/XMLSchema-instance&#34; xsi:schemalocation=&#34;http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd&#34; lang=&#34;ja&#34; xml:lang=&#34;ja&#34;&gt;
&lt;head&gt;
&lt;meta content=&#34;text/html; charset=utf-8&#34; http-equiv=&#34;content-type&#34; /&gt;
&lt;meta name=&#34;author&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta name=&#34;description&#34; content=&#34;デジタル自主のロリ神様&#34; /&gt;
&lt;meta property=&#34;og:title&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:type&#34; content=&#34;website&#34; /&gt;
&lt;meta property=&#34;og:locale&#34; content=&#34;ja_JP&#34; /&gt;
&lt;meta property=&#34;og:site_name&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:url&#34; content=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/mobian-mymonero-wallet-use-way/&#34; /&gt;
&lt;meta property=&#34;og:image&#34; content=&#34;../../static/egaokero.jpg&#34; /&gt;
&lt;link rel=&#34;alternate&#34; type=&#34;application/atom+xml&#34; title=&#34;テクニカル諏訪子 feed&#34; href=&#34;../../blog.atom&#34; /&gt;
&lt;title&gt;テクニカル諏訪子: 【Mobian】MyMoneroウォレットのインストール方法&lt;/title&gt;
&lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;../../static/style.css&#34; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&#34;jswarning&#34; id=&#34;jswarning&#34;&gt;注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。&lt;/div&gt;
&lt;script type=&#34;text/javascript&#34;&gt;
document.getElementById(&#39;jswarning&#39;).style.display = &#39;block&#39;;
&lt;/script&gt;
&lt;div class=&#34;container&#34;&gt;
&lt;img src=&#34;/static/Eqjk_WgVQAE2psn-new.jpeg&#34; class=&#34;header-img&#34; alt=&#34;ヘッダー&#34; /&gt;
&lt;p&gt;
&lt;a href=&#34;/&#34;&gt;トップ&lt;/a&gt; |
&lt;a href=&#34;/about/&#34;&gt;自己紹介&lt;/a&gt; |
&lt;a href=&#34;/contact/&#34;&gt;連絡先&lt;/a&gt; |
&lt;a href=&#34;/freelancer/&#34;&gt;フリーランス&lt;/a&gt; |
&lt;a href=&#34;/service/&#34;&gt;サービス&lt;/a&gt; |
&lt;a href=&#34;/webring/&#34;&gt;リング&lt;/a&gt; |
&lt;a href=&#34;/i2pabout/&#34;&gt;I2Pについて&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;/blog.atom&#34;&gt;&lt;img src=&#34;/static/rssa.png&#34; alt=&#34;RSS&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://social.076.ne.jp/TechnicalSuwako&#34;&gt;&lt;img src=&#34;/static/mastodon.png&#34; alt=&#34;Mastodon&#34; /&gt;/&lt;img src=&#34;/static/pleroma.png&#34; alt=&#34;Pleroma&#34; /&gt;でフォロー&lt;/a&gt; |
&lt;a href=&#34;https://video.076.ne.jp/c/technicalsuwako&#34;&gt;&lt;img src=&#34;/static/peertube.png&#34; alt=&#34;PeerTube&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://www.technicalsuwako.jp&#34;&gt;&lt;img src=&#34;/static/clearnet.png&#34; alt=&#34;一般ネット&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/&#34;&gt;&lt;img src=&#34;/static/tor.png&#34; alt=&#34;Tor&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://technicalsuwako.i2p/&#34;&gt;&lt;img src=&#34;/static/i2p.png&#34; alt=&#34;I2P&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
支援♡:
&lt;a href=&#34;/support/monero/&#34;&gt;&lt;img src=&#34;/static/monero.png&#34; alt=&#34;Monero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/wownero&#34;&gt;&lt;img src=&#34;/static/wownero.png&#34; alt=&#34;Wownero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/bitcoin&#34;&gt;&lt;img src=&#34;/static/bitcoin.png&#34; alt=&#34;Bitcoin&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;LinuxスマホでまだXMRウォレットがありませんので、パソコン向けウォレットをインストールしましょう&lt;/p&gt;
&lt;p&gt;まずはGit、NPM、及びNodeJSをインストールして下さい。&lt;br /&gt;
「electron-builder」でビルド出来ませんが、npmでmymoneroアプリを設置するには、インストールする事が必要です。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;sudo apt install git npm nodejs
sudo npm i -g electron-builder
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;gitから受け取ると、npmでインストールして下さい。&lt;br /&gt;
JSですので、時間がかかります。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;git clone https://github.com/mymonero/mymonero-app-js.git &lt;span style=&#34;color:#666&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span style=&#34;color:#a2f&#34;&gt;cd&lt;/span&gt; mymonero-app-js
npm i
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;やっと完了したら、下記のエラーが出ますが、心配しないで下さい。&lt;br /&gt;
builder-utilもelectron-builderも要りません。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;Error: Cannot find module &amp;#39;fs/promises&amp;#39;
Require stack:
- /home/mobian/dev/mymonero-app-js/node_modules/builder-util/out/fs.js
- /home/mobian/dev/mymonero-app-js/node_modules/builder-util/out/util.js
- /home/mobian/dev/mymonero-app-js/node_modules/electron-builder/out/cli/cli.js
- /home/mobian/dev/mymonero-app-js/node_modules/electron-builder/cli.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:815:15)
at Function.Module._load (internal/modules/cjs/loader.js:667:27)
at Module.require (internal/modules/cjs/loader.js:887:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.&amp;lt;anonymous&amp;gt; (/home/mobian/dev/mymonero-app-js/node_modules/builder-util/src/fs.ts:4:1)
at Module._compile (internal/modules/cjs/loader.js:999:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)
at Module.load (internal/modules/cjs/loader.js:863:32)
at Function.Module._load (internal/modules/cjs/loader.js:708:14)
at Module.require (internal/modules/cjs/loader.js:887:19)
at require (internal/modules/cjs/helpers.js:74:18)
at Object.&amp;lt;anonymous&amp;gt; (/home/mobian/dev/mymonero-app-js/node_modules/builder-util/src/util.ts:25:1)
at Module._compile (internal/modules/cjs/loader.js:999:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)
at Module.load (internal/modules/cjs/loader.js:863:32)
at Function.Module._load (internal/modules/cjs/loader.js:708:14)
npm ERR! code 1
npm ERR! path /home/mobian/dev/mymonero-app-js
npm ERR! command failed
npm ERR! command sh -c npm run rollup-transpile; electron-builder install-app-deps
npm ERR! A complete log of this run can be found in:
npm ERR! /home/mobian/.npm/_logs/2022-03-12T02_43_55_923Z-debug-0.log
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;実行しましょう!!&lt;br /&gt;
ARMでelectronアプリをビルド出来ませんので、mymoneroアプリを使うには、毎回下記のコマンドを実行する事が必要となります。&lt;/p&gt;
&lt;pre style=&#34;background-color:#f8f8f8;overflow-x: auto&#34;&gt;&lt;code&gt;npm start
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;mymonero1.png&#34; alt=&#34;&#34; /&gt;
&lt;img src=&#34;mymonero2.png&#34; alt=&#34;&#34; /&gt;
&lt;img src=&#34;mymonero3.png&#34; alt=&#34;&#34; /&gt;
&lt;img src=&#34;mymonero4.png&#34; alt=&#34;&#34; /&gt;
&lt;img src=&#34;mymonero5.png&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;アップデートするには、「git pull」で十分です。&lt;/p&gt;
&lt;p&gt;以上&lt;/p&gt;
&lt;hr /&gt;
&lt;a href=&#34;https://github.com/piranha/gostatic&#34;&gt;gostatic&lt;/a&gt;で創作しました。&lt;a href=&#34;https://git.076.ne.jp/TechnicalSuwako/StaticSuwako&#34;&gt;&lt;img src=&#34;/static/git.png&#34; alt=&#34;Git&#34; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
</entry>
@ -598,96 +127,6 @@ ARMでelectronアプリをビルド出来ませんので、mymoneroアプリを
<content type="html">
&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.1//EN&#34; &#34;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#34;&gt;
&lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xmlns:xsi=&#34;http://www.w3.org/2001/XMLSchema-instance&#34; xsi:schemalocation=&#34;http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd&#34; lang=&#34;ja&#34; xml:lang=&#34;ja&#34;&gt;
&lt;head&gt;
&lt;meta content=&#34;text/html; charset=utf-8&#34; http-equiv=&#34;content-type&#34; /&gt;
&lt;meta name=&#34;author&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta name=&#34;description&#34; content=&#34;デジタル自主のロリ神様&#34; /&gt;
&lt;meta property=&#34;og:title&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:type&#34; content=&#34;website&#34; /&gt;
&lt;meta property=&#34;og:locale&#34; content=&#34;ja_JP&#34; /&gt;
&lt;meta property=&#34;og:site_name&#34; content=&#34;テクニカル諏訪子&#34; /&gt;
&lt;meta property=&#34;og:url&#34; content=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/cancel-culture-076-will-not-ban-russia/&#34; /&gt;
&lt;meta property=&#34;og:image&#34; content=&#34;../../static/egaokero.jpg&#34; /&gt;
&lt;link rel=&#34;alternate&#34; type=&#34;application/atom+xml&#34; title=&#34;テクニカル諏訪子 feed&#34; href=&#34;../../blog.atom&#34; /&gt;
&lt;title&gt;テクニカル諏訪子: 【キャンセルカルチャー】全宇宙の会社はロシアに対して差別しているみたい…&lt;/title&gt;
&lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;../../static/style.css&#34; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&#34;jswarning&#34; id=&#34;jswarning&#34;&gt;注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。&lt;/div&gt;
&lt;script type=&#34;text/javascript&#34;&gt;
document.getElementById(&#39;jswarning&#39;).style.display = &#39;block&#39;;
&lt;/script&gt;
&lt;div class=&#34;container&#34;&gt;
&lt;img src=&#34;/static/Eqjk_WgVQAE2psn-new.jpeg&#34; class=&#34;header-img&#34; alt=&#34;ヘッダー&#34; /&gt;
&lt;p&gt;
&lt;a href=&#34;/&#34;&gt;トップ&lt;/a&gt; |
&lt;a href=&#34;/about/&#34;&gt;自己紹介&lt;/a&gt; |
&lt;a href=&#34;/contact/&#34;&gt;連絡先&lt;/a&gt; |
&lt;a href=&#34;/freelancer/&#34;&gt;フリーランス&lt;/a&gt; |
&lt;a href=&#34;/service/&#34;&gt;サービス&lt;/a&gt; |
&lt;a href=&#34;/webring/&#34;&gt;リング&lt;/a&gt; |
&lt;a href=&#34;/i2pabout/&#34;&gt;I2Pについて&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&#34;/blog.atom&#34;&gt;&lt;img src=&#34;/static/rssa.png&#34; alt=&#34;RSS&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://social.076.ne.jp/TechnicalSuwako&#34;&gt;&lt;img src=&#34;/static/mastodon.png&#34; alt=&#34;Mastodon&#34; /&gt;/&lt;img src=&#34;/static/pleroma.png&#34; alt=&#34;Pleroma&#34; /&gt;でフォロー&lt;/a&gt; |
&lt;a href=&#34;https://video.076.ne.jp/c/technicalsuwako&#34;&gt;&lt;img src=&#34;/static/peertube.png&#34; alt=&#34;PeerTube&#34; /&gt;で登録&lt;/a&gt; |
&lt;a href=&#34;https://www.technicalsuwako.jp&#34;&gt;&lt;img src=&#34;/static/clearnet.png&#34; alt=&#34;一般ネット&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/&#34;&gt;&lt;img src=&#34;/static/tor.png&#34; alt=&#34;Tor&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;http://technicalsuwako.i2p/&#34;&gt;&lt;img src=&#34;/static/i2p.png&#34; alt=&#34;I2P&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
支援♡:
&lt;a href=&#34;/support/monero/&#34;&gt;&lt;img src=&#34;/static/monero.png&#34; alt=&#34;Monero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/wownero&#34;&gt;&lt;img src=&#34;/static/wownero.png&#34; alt=&#34;Wownero&#34; /&gt;&lt;/a&gt; |
&lt;a href=&#34;/support/bitcoin&#34;&gt;&lt;img src=&#34;/static/bitcoin.png&#34; alt=&#34;Bitcoin&#34; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;「テクノロジーと関係ないでしょ!」と思ったら、現在&lt;a href=&#34;list_of_businesses_-_mar_8_v5.png&#34;&gt;主にIT関連の会社&lt;/a&gt;はロシアから同時に退会しています。&lt;br /&gt;
この会社は全部BlackRock社にコントロールされている会社及び任天堂ですので…殆ど全てのIT関連会社ですね。&lt;br /&gt;
本当に可笑し過ぎます。&lt;br /&gt;
なぜ?&lt;br /&gt;
下記お読み下さい。&lt;/p&gt;
&lt;h1 id=&#34;ban&#34;&gt;もロシア人をBANしつもり?&lt;/h1&gt;
&lt;p&gt;いいえ。&lt;br /&gt;
076は日本人向けサービスですが、色々の国籍のユーザーも使っていますので、差別しません。&lt;/p&gt;
&lt;h1 id=&#34;heading&#34;&gt;歴史が繰り返す&lt;/h1&gt;
&lt;p&gt;1917年、アメリカはドイツに宣戦布告されました。&lt;br /&gt;
その時、全宇宙はドイツに対して差別しました。&lt;br /&gt;
英国の女王は自分の氏名を変わらないと、英人は合わせて女王を殺します。&lt;br /&gt;
&lt;a href=&#34;https://alzhacker.com/mass-formation-psychosis/&#34;&gt;大衆形成・サイコシス&lt;/a&gt;はそんなに危険です!!&lt;br /&gt;
今のロシアと同じです。&lt;/p&gt;
&lt;p&gt;所で、&lt;a href=&#34;https://ja.wikipedia.org/wiki/%E5%8F%8D%E6%97%A5%E6%84%9F%E6%83%85&#34;&gt;日本人に対して大衆形成・サイコシスもあります&lt;/a&gt;。&lt;/p&gt;
&lt;h1 id=&#34;heading-1&#34;&gt;海賊ソフトが戻る&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;69fed38143bbb886.jpg&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;/blog/kaizoku-soft-sonzai-riyuu/&#34;&gt;まだ心が変わりません&lt;/a&gt;が、キャンセルされている会社の全部は非常に反海賊ソフトの叔父さんです。&lt;br /&gt;
この場合はロシア人は全員海賊ソフトに戻ります。&lt;br /&gt;
みんなはロシアに戻ったらも、みんなは海賊ソフトを使い続くと思います。&lt;br /&gt;
政府(=マインドコントロール)のプロパガンダのせい国籍に対して差別の可能性があると考えたら、2度と支援したくなくなりますね。&lt;/p&gt;
&lt;h1 id=&#34;linuxbsd&#34;&gt;みんなはLinux、又はBSDに乗り換える&lt;/h1&gt;
&lt;p&gt;&lt;img src=&#34;b38e53e72bb5d46cf600cb1dc0a22d6e.jpg&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://re-sho.com/%E3%83%AD%E3%82%B7%E3%82%A2%E3%81%95%E3%82%93%E3%80%81linux%E3%81%97%E3%81%8B%E4%BD%BF%E3%81%88%E3%81%AA%E3%81%8F%E3%81%AA%E3%82%8B/&#34;&gt;そう&lt;/a&gt;です&lt;a href=&#34;https://daradaranet-news.com/archives/24765&#34;&gt;ね〜&lt;/a&gt;&lt;br /&gt;
マイクロソフト、アップル、及びグーラグはロシアを対応しないと、ロシア人の皆様はLinux又はBSD(macOS以外)に乗り換える可能性が高いです。&lt;/p&gt;
&lt;h1 id=&#34;heading-2&#34;&gt;プロパガンダしか無い&lt;/h1&gt;
&lt;p&gt;&lt;a href=&#34;/blog/digital-dorei-ukraina-russia-real-goal/&#34;&gt;前回言った通り&lt;/a&gt;、この戦争はただの茶番です。&lt;br /&gt;
両方の側でプロパガンダがありますので、事実の情報をわかるのは無理です。&lt;br /&gt;
政府を応援しなくて、人間を応援した方が良いです。&lt;br /&gt;
「ウクライナ!!」、「ロシア!!」と言えば、政府を応援していますので、貴方はもう負けました。&lt;/p&gt;
&lt;p&gt;以上&lt;/p&gt;
&lt;hr /&gt;
&lt;a href=&#34;https://github.com/piranha/gostatic&#34;&gt;gostatic&lt;/a&gt;で創作しました。&lt;a href=&#34;https://git.076.ne.jp/TechnicalSuwako/StaticSuwako&#34;&gt;&lt;img src=&#34;/static/git.png&#34; alt=&#34;Git&#34; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
</entry>

ファイルの表示

@ -1,34 +1,11 @@
<article>
<header>
<h1>【YouTube】UltimatePismanのお知らせ</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-05-10T00:00:00Z">
2020年05月10日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/youtube/">youtube</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/20200510-youtsube-jotai/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【YouTube】UltimatePismanのお知らせ</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -38,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -65,7 +44,24 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>皆さんこんにちは。諏訪子です。<br />
<div class="header">
<h1>【YouTube】UltimatePismanのお知らせ</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年05月10日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/youtube/">youtube</a>
</div>
</div>
<hr />
<div>
<p>皆さんこんにちは。諏訪子です。<br />
緊急事態宣言延長がありますので、未だゲーセンに行けませんので、現在パソコン、スイッチ、スマホ向けゲームを録画しています。</p>
<h1 id="heading">録画再開</h1>
<ul>
@ -80,12 +76,21 @@
<p>なお、全国及び全世界旅行チャネルも作ると思っていますが、未だ決まりませんです。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【キャンセルカルチャー】全宇宙の会社はロシアに対して差別しているみたい…</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-03-09T00:00:00Z">
2022年03月09日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/キャンセルカルチャー/">キャンセルカルチャー</a>,
<a href="/tags/茶番/">茶番</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/cancel-culture-076-will-not-ban-russia/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【キャンセルカルチャー】全宇宙の会社はロシアに対して差別しているみたい…</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>「テクノロジーと関係ないでしょ!」と思ったら、現在<a href="list_of_businesses_-_mar_8_v5.png">主にIT関連の会社</a>はロシアから同時に退会しています。<br />
<div class="header">
<h1>【キャンセルカルチャー】全宇宙の会社はロシアに対して差別しているみたい…</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年03月09日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/キャンセルカルチャー/">キャンセルカルチャー</a>,
<a href="/tags/茶番/">茶番</a>
</div>
</div>
<hr />
<div>
<p>「テクノロジーと関係ないでしょ!」と思ったら、現在<a href="list_of_businesses_-_mar_8_v5.png">主にIT関連の会社</a>はロシアから同時に退会しています。<br />
この会社は全部BlackRock社にコントロールされている会社及び任天堂ですので…殆ど全てのIT関連会社ですね。<br />
本当に可笑し過ぎます。<br />
なぜ?<br />
@ -98,12 +94,21 @@
「ウクライナ!!」、「ロシア!!」と言えば、政府を応援していますので、貴方はもう負けました。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【仮想通貨】cointopで確認する方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-03-18T00:00:00Z">
2022年03月18日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>,
<a href="/tags/linux/">linux</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/cryptocurrency-kakunin-with-cointop/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【仮想通貨】cointopで確認する方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>日前、東京でビットコインキャッシュ(BCH)のミートアップに参加しました。<br />
<div class="header">
<h1>【仮想通貨】cointopで確認する方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年03月18日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>,
<a href="/tags/linux/">linux</a>
</div>
</div>
<hr />
<div>
<p>日前、東京でビットコインキャッシュ(BCH)のミートアップに参加しました。<br />
今回は赤坂のハンガリーレストランにありましたので、食べ物は凄く美味しかったです(でも、高い)。<br />
うまケロ(PinePhoneで撮った)<br />
<img src="0054b7e40cb0d79dafd4bc27ae66fdd191b365367099d340638fe93ebdc96af2.jpg" alt="" /> <img src="c30d8df9aecbf7f118e17d08416f653b5a9d5ac4e688866074f9b11125695332.jpg" alt="" /></p>
@ -104,12 +100,21 @@ BCHの場合は、Electron-Cashを使っていますね。<br />
トップページで「Q」を押したら、アプリを終了します。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>Debian 9(stretch)→10(buster)バージョンアップする方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2019-07-19T00:00:00Z">
2019年07月19日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/debian/">debian</a>,
<a href="/tags/バージョンアップ/">バージョンアップ</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/server/">server</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/debian-stretch-buster-upgrade/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: Debian 9(stretch)→10(buster)バージョンアップする方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>今月からDebian 10(buster)の安定版がリリースされました。<br />
<div class="header">
<h1>Debian 9(stretch)→10(buster)バージョンアップする方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2019年07月19日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/debian/">debian</a>,
<a href="/tags/バージョンアップ/">バージョンアップ</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/server/">server</a>
</div>
</div>
<hr />
<div>
<p>今月からDebian 10(buster)の安定版がリリースされました。<br />
すべてののサーバーはDebianが使いますので、Gitサーバーでアップグレードしてみました。</p>
<p>まず、絶対にバックアップしてください!!</p>
<p>【準備】<br />
@ -99,12 +95,21 @@ sed -i <span style="color:#b44">&#39;s/stretch/buster/g&#39;</span> /etc/apt/sou
<pre style="background-color:#f8f8f8;overflow-x: auto"><code>reboot
</code></pre><p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【デジタル自主】ビッグテック、アルトデック、フェディバース、どっちは勧める?</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-12-19T00:00:00Z">
2021年12月19日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/fediverse/">fediverse</a>,
<a href="/tags/sns/">sns</a>,
<a href="/tags/chat/">chat</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/dejital-jisyu-bigtech-alttech-fedibars-which-recommend/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】ビッグテック、アルトデック、フェディバース、どっちは勧める?</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>昨日、友達は「twitter、gab、mastodon…どっちに登録すれば良いでしょうか?」と聞いたら、私は「全部」で答えました。<br />
<div class="header">
<h1>【デジタル自主】ビッグテック、アルトデック、フェディバース、どっちは勧める?</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年12月19日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/fediverse/">fediverse</a>,
<a href="/tags/sns/">sns</a>,
<a href="/tags/chat/">chat</a>
</div>
</div>
<hr />
<div>
<p>昨日、友達は「twitter、gab、mastodon…どっちに登録すれば良いでしょうか?」と聞いたら、私は「全部」で答えました。<br />
でも、同時に使うという意味じゃないです。<br />
詳しく説明します。</p>
<h1 id="sns">まずは「SNSレベル」を説明します。</h1>
@ -158,12 +154,21 @@ SNSレベルだけは分散処理のSNSです。</p>
</ol>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>【デジタル自主】検閲法律=違法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-12-27T00:00:00Z">
2021年12月27日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/検閲/">検閲</a>,
<a href="/tags/法律/">法律</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/dejital-jisyu-censorship-law-is-illegal/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】検閲法律=違法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>検閲の関して法律は違法ばかりです。<br />
<div class="header">
<h1>【デジタル自主】検閲法律=違法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年12月27日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/検閲/">検閲</a>,
<a href="/tags/法律/">法律</a>
</div>
</div>
<hr />
<div>
<p>検閲の関して法律は違法ばかりです。<br />
実は、政府に作られた法律は全部違法です。<br /></p>
<p>無政府資本主義者ですので、私に人造法律は全部違法です。<br />
自然な法律だけは本物の法律です。</p>
@ -86,12 +82,21 @@
</code></pre><p><img src="Screenshot_20210525_144604-jp.png" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【デジタル自主】076は手伝い予定</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-08-18T00:00:00Z">
2021年08月18日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/fediverse/">fediverse</a>,
<a href="/tags/server/">server</a>,
<a href="/tags/xmpp/">xmpp</a>,
<a href="/tags/irc/">irc</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-autonomy-076-can-help/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】076は手伝い予定</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>私は世界に一番検閲又はBANされた神様になりました。
<div class="header">
<h1>【デジタル自主】076は手伝い予定</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年08月18日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/fediverse/">fediverse</a>,
<a href="/tags/server/">server</a>,
<a href="/tags/xmpp/">xmpp</a>,
<a href="/tags/irc/">irc</a>
</div>
</div>
<hr />
<div>
<p>私は世界に一番検閲又はBANされた神様になりました。
色んなdiscordサーバーからキックされたり、youtubeであんまアップロードできなくなったり、twitterでshadowbannedされたり、gab、parler及び、pawooにBANされたり、ニコ動とodyseeに検閲させた等…
ですから、自分でホスティングしか行けないと思いました。
その時から自分のサービスをホスティングすることが応援しています。
@ -119,12 +115,21 @@ Searxでアカウントがありませんので、自由でお使い下さい。
このサービスは2022年冬開始予定です。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【デジタル自主】キャッシュレス社会の危険性</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-02-16T00:00:00Z">
2022年02月16日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/経理/">経理</a>,
<a href="/tags/キャッシュレス/">キャッシュレス</a>,
<a href="/tags/詐欺/">詐欺</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-autonomy-cashless-problem/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】キャッシュレス社会の危険性</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>現在、日本はまだ現金を使っている社会です。<br />
<div class="header">
<h1>【デジタル自主】キャッシュレス社会の危険性</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年02月16日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/経理/">経理</a>,
<a href="/tags/キャッシュレス/">キャッシュレス</a>,
<a href="/tags/詐欺/">詐欺</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>
</div>
</div>
<hr />
<div>
<p>現在、日本はまだ現金を使っている社会です。<br />
それは良い物です。<br />
何故かわかるには、下記をお読み下さい。</p>
<h1 id="heading">中央銀行デジタル通貨 ≠ 仮想通貨</h1>
@ -108,12 +104,21 @@
<p><img src="SDGs.png" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【デジタル自主】Web1、Web2、Web3、Web0の違いは?</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-02-25T00:00:00Z">
2022年02月25日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/web3/">web3</a>,
<a href="/tags/ダークネット/">ダークネット</a>,
<a href="/tags/tor/">tor</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-autonomy-web-1-2-3-4-tigai/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】Web1、Web2、Web3、Web0の違いは?</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>先週は<a href="/blog/digital-autonomy-web3-is-scam/index.html">Web3について投稿を書きました</a><br />
<div class="header">
<h1>【デジタル自主】Web1、Web2、Web3、Web0の違いは?</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年02月25日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/web3/">web3</a>,
<a href="/tags/ダークネット/">ダークネット</a>,
<a href="/tags/tor/">tor</a>
</div>
</div>
<hr />
<div>
<p>先週は<a href="/blog/digital-autonomy-web3-is-scam/index.html">Web3について投稿を書きました</a><br />
今週は<a href="https://jp.weforum.org/reports/advancing-digital-agency-the-power-of-data-intermediaries">本当に本当に危険な乱心達はデジタル個人証明書を発表されました</a><br />
それでWEFは私に記事した<a href="/blog/digital-jisyu-own-or-permit/index.html">ワクチンパスポートの実目的</a>を事実として確認されました。<br />
ですから、出来るだけデジタル自主に行わないと、みんなはデジタル奴隷となります。</p>
@ -123,12 +119,21 @@ YouTubeを信じないと、誰を信じるの?ロリを検閲させられて
一般ネットに投稿する前、まずはダークネットで投稿しますので、まだTorを使わなければ、是非使って始めましょう</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【デジタル自主】Web3.0(NFT、Qortal、メタバース等)は詐欺</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-02-15T00:00:00Z">
2022年02月15日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/web3/">web3</a>,
<a href="/tags/nft/">nft</a>,
<a href="/tags/詐欺/">詐欺</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-autonomy-web3-is-scam/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】Web3.0(NFT、Qortal、メタバース等)は詐欺</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>最近はWeb3.0について話を聞きましたか?<br />
<div class="header">
<h1>【デジタル自主】Web3.0(NFT、Qortal、メタバース等)は詐欺</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年02月15日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/web3/">web3</a>,
<a href="/tags/nft/">nft</a>,
<a href="/tags/詐欺/">詐欺</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>
</div>
</div>
<hr />
<div>
<p>最近はWeb3.0について話を聞きましたか?<br />
NFT、Qortal、メタバース(死の世界)等、そんな感じ。<br />
新作テクノロジーだと思いますか?</p>
<h1 id="nft">NFTとは?</h1>
@ -104,12 +100,21 @@ QortalとZeroNetを使うには、ETHで払うのは必須です。<br />
<p>他人は許可なしで貴方のデータを管理出来たら、デジタル自主がありません。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>【デジタル奴隷制度】ウクライナ”侵略”の実目的</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-03-02T00:00:00Z">
2022年03月02日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル奴隷/">デジタル奴隷</a>,
<a href="/tags/デジタル監視/">デジタル監視</a>,
<a href="/tags/プロパガンダ/">プロパガンダ</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-dorei-ukraina-russia-real-goal/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル奴隷制度】ウクライナ”侵略”の実目的</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>コロナの茶番が終わりました!!<br />
<div class="header">
<h1>【デジタル奴隷制度】ウクライナ”侵略”の実目的</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年03月02日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル奴隷/">デジタル奴隷</a>,
<a href="/tags/デジタル監視/">デジタル監視</a>,
<a href="/tags/プロパガンダ/">プロパガンダ</a>
</div>
</div>
<hr />
<div>
<p>コロナの茶番が終わりました!!<br />
でも、世界は直ぐ次の茶番に入りました:戦争。<br />
それでパンデミック→戦争→気候変動の十年サイクルが続きます。</p>
<p>「でもケロちゃん、<a href="/blog/digital-jisyu-own-or-permit/">ワクチンパスポートシステムの設置が続く</a>った。間違ったの?」<br />
@ -124,12 +120,21 @@
<p><video src="6daeb86e-cab0-4335-981d-2b1629704e95-720-fragmented.mp4" controls="controls" style="max-height: 400px;"></video></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【デジタル自主】コミケットはオワコン。同人誌を楽しむのはオニオンケット</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-11-12T00:00:00Z">
2021年11月12日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/コミケット/">コミケット</a>,
<a href="/tags/オニオンケット/">オニオンケット</a>,
<a href="/tags/同人/">同人</a>,
<a href="/tags/tor/">tor</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-jisyu-komiket-is-owakon-dojinsi-enjoy-onionket/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル自主】コミケットはオワコン。同人誌を楽しむのはオニオンケット</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>政府の不要な「緊急事態宣言」のせい、コミケットはもう3回中止されました。<br />
<div class="header">
<h1>【デジタル自主】コミケットはオワコン。同人誌を楽しむのはオニオンケット</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年11月12日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/コミケット/">コミケット</a>,
<a href="/tags/オニオンケット/">オニオンケット</a>,
<a href="/tags/同人/">同人</a>,
<a href="/tags/tor/">tor</a>
</div>
</div>
<hr />
<div>
<p>政府の不要な「緊急事態宣言」のせい、コミケットはもう3回中止されました。<br />
ですから、同人ファン様はコミケットに興味ないようになりました。</p>
<p>また参加できると思ったら、ちょっと待てね!<br />
まずは、東京のフェミニスト知事小池百合子氏が厳しすぎの検閲ルールを発表されました。<br />
@ -97,12 +93,21 @@
<img src="monero-kero.png" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【デジタル監視】ワクチンパスポートの実目的</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-01-28T00:00:00Z">
2022年01月28日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/デジタル監視/">デジタル監視</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-jisyu-own-or-permit/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル監視】ワクチンパスポートの実目的</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>ワクチンパスポートと言えば、欧米でレストランか居酒屋等に入る為イメージですね。<br />
<div class="header">
<h1>【デジタル監視】ワクチンパスポートの実目的</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年01月28日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル自主/">デジタル自主</a>,
<a href="/tags/デジタル監視/">デジタル監視</a>
</div>
</div>
<hr />
<div>
<p>ワクチンパスポートと言えば、欧米でレストランか居酒屋等に入る為イメージですね。<br />
でも、欧米で同時に取り帰られています。<br />
何故?<br />
人間の勝利だと思いますか?<br />
@ -109,12 +105,21 @@ LINEは政府のテクノロジーですよ</p>
便利な自由は存在していませんので、これを選べません。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【デジタル監視】コロナのタイムライン</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-11-20T00:00:00Z">
2021年11月20日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル監視/">デジタル監視</a>,
<a href="/tags/コロナ/">コロナ</a>,
<a href="/tags/詐欺/">詐欺</a>,
<a href="/tags/デマ/">デマ</a>,
<a href="/tags/茶番/">茶番</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/digital-kansi-corona-taimrain/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【デジタル監視】コロナのタイムライン</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>今まで、テク諏訪で「新型コロナウイルス」について全然書きませんでした。<br />
<div class="header">
<h1>【デジタル監視】コロナのタイムライン</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年11月20日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/デジタル監視/">デジタル監視</a>,
<a href="/tags/コロナ/">コロナ</a>,
<a href="/tags/詐欺/">詐欺</a>,
<a href="/tags/デマ/">デマ</a>,
<a href="/tags/茶番/">茶番</a>
</div>
</div>
<hr />
<div>
<p>今まで、テク諏訪で「新型コロナウイルス」について全然書きませんでした。<br />
理由は、詐欺を応援したくないです。<br />
こちらはテクノロジーについてブログです、動画部分の場合、ゲームについてチャンネルです。<br />
ですから、全体主義か健康か政治等の話は必要じゃないです。</p>
@ -189,12 +185,21 @@ ICUのベッド?✓<br />
<a href="oPU0l6bMT63R.mp4">動画</a></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,34 +1,11 @@
<article>
<header>
<h1>はじめまして</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2018-12-14T00:00:00Z">
2018年12月14日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/test/">test</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/hajimemashite/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: はじめまして</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -38,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -65,14 +44,40 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>投稿テストです</p>
<div class="header">
<h1>はじめまして</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2018年12月14日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/test/">test</a>
</div>
</div>
<hr />
<div>
<p>投稿テストです</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【意見】chromiumの独占化</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-01-15T00:00:00Z">
2022年01月15日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/意見/">意見</a>,
<a href="/tags/chrome/">chrome</a>,
<a href="/tags/chromium/">chromium</a>,
<a href="/tags/google/">google</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/iken-chromium-no-dokusenka-wa-aku/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【意見】chromiumの独占化</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>先程、SNSで下記のトゥートを書きました。</p>
<div class="header">
<h1>【意見】chromiumの独占化</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年01月15日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/意見/">意見</a>,
<a href="/tags/chrome/">chrome</a>,
<a href="/tags/chromium/">chromium</a>,
<a href="/tags/google/">google</a>
</div>
</div>
<hr />
<div>
<p>先程、SNSで下記のトゥートを書きました。</p>
<p><img src="Screenshot_20220115_194029.png" alt="" /><br />
<img src="https://social.076.ne.jp/notice/AFSARuaxKzRYfZgklc" alt="" /></p>
<h1 id="heading">今の大人気なブラウザを見ると</h1>
@ -129,12 +125,21 @@ Pale MoonとOtter Browserだけは異なります。</p>
暴君を倒すには、暴君にコントロールさせることが必要です。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,39 +1,11 @@
<article>
<header>
<h1>【海賊版ソフト】存在している理由は?</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-07-23T00:00:00Z">
2021年07月23日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/海賊/">海賊</a>,
<a href="/tags/ソフトウェア/">ソフトウェア</a>,
<a href="/tags/drm/">drm</a>,
<a href="/tags/プライバシー/">プライバシー</a>,
<a href="/tags/検閲/">検閲</a>,
<a href="/tags/自由/">自由</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/kaizoku-soft-sonzai-riyuu/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【海賊版ソフト】存在している理由は?</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -43,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -70,7 +44,29 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p><img src="85792409_p0.png" alt="" /><br />
<div class="header">
<h1>【海賊版ソフト】存在している理由は?</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年07月23日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/海賊/">海賊</a>,
<a href="/tags/ソフトウェア/">ソフトウェア</a>,
<a href="/tags/drm/">drm</a>,
<a href="/tags/プライバシー/">プライバシー</a>,
<a href="/tags/検閲/">検閲</a>,
<a href="/tags/自由/">自由</a>
</div>
</div>
<hr />
<div>
<p><img src="85792409_p0.png" alt="" /><br />
イラスト: <a href="https://www.pixiv.net/artworks/85792409">sithe様</a></p>
<h1 id="heading">海賊率は段々増えていますが、何故?</h1>
<h2 id="heading-1">メリット</h2>
@ -119,12 +115,21 @@ DRMは中間商人ばかりにメリットがあり、創造者及び顧客様
結局、みんなは負けます。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【意見】近代のウェブ開発:「インストール方法はもう簡単になった」</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-05-08T00:00:00Z">
2021年05月08日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/意見/">意見</a>,
<a href="/tags/ウェブ開発/">ウェブ開発</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/kindai-web-dev-install-muzukasi/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【意見】近代のウェブ開発:「インストール方法はもう簡単になった」</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>昨日、不意にPawooからBANされましたから、<a href="https://social.076.ne.jp">自分のSNSインスタンスをインストールしてみました</a><br />
<div class="header">
<h1>【意見】近代のウェブ開発:「インストール方法はもう簡単になった」</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年05月08日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/意見/">意見</a>,
<a href="/tags/ウェブ開発/">ウェブ開発</a>
</div>
</div>
<hr />
<div>
<p>昨日、不意にPawooからBANされましたから、<a href="https://social.076.ne.jp">自分のSNSインスタンスをインストールしてみました</a><br />
でも、本当に難しかったですので、昔のインストール方法が思い出しました。<br />
本当に簡単になったか?と思いました…</p>
<h1 id="1990">1990年代のインストール方法</h1>
@ -107,12 +103,21 @@
</ol>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>LBRYと紹介します検閲できないのブロックチェーンやP2P型動画ソフト(第部)</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-02-23T00:00:00Z">
2021年02月23日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/lbry/">lbry</a>,
<a href="/tags/odysee/">odysee</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/lbry-introduce-no-censorship-blockchain-p2p-video-soft/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: LBRYと紹介します検閲できないのブロックチェーンやP2P型動画ソフト(第部)</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<div class="warning">
<div class="header">
<h1>LBRYと紹介します検閲できないのブロックチェーンやP2P型動画ソフト(第部)</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年02月23日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/lbry/">lbry</a>,
<a href="/tags/odysee/">odysee</a>
</div>
</div>
<hr />
<div>
<div class="warning">
【注意】意見が変わりました。<br />
やっぱり、Odyseeは検閲のないサイトじゃないみたいです。<br />
エッチなゲームの動画及びDMCAコンテンツを検閲されています。<br />
@ -132,12 +128,21 @@ LBCはビットコインに変換出来ます。<br />
<p>以上<br />
次回は使い方を教えております。</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>Linuxスマホのメリットデメリット</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-12-19T00:00:00Z">
2020年12月19日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/スマホ/">スマホ</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/linux-smaho-merit-demerit/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: Linuxスマホのメリットデメリット</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>最近Linux(リナックス)スマホを使っていますので、本当に嬉しい。<br />
<div class="header">
<h1>Linuxスマホのメリットデメリット</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年12月19日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/スマホ/">スマホ</a>
</div>
</div>
<hr />
<div>
<p>最近Linux(リナックス)スマホを使っていますので、本当に嬉しい。<br />
でも、皆さんに勧めません。<br />
使いメリット、使いデメリットを教えます。</p>
<h1 id="heading">使いメリット</h1>
@ -123,12 +119,21 @@ WaylandでmozcかAnthyを使えるまで、リナックススマホで使えま
<span style="color: #da4453;">もう修正しました→</span><a href="/blog/pinephone-fcitx5-mozc-japanese-with-kanji">読む</a></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【Lynx】TorとUTF-8で使い方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-03-25T00:00:00Z">
2022年03月25日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/webbrowser/">webbrowser</a>,
<a href="/tags/ターミナル/">ターミナル</a>,
<a href="/tags/端末/">端末</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/lynx-tor-and-utf8-use-way/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Lynx】TorとUTF-8で使い方</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>Javascriptは要りません<br />
<div class="header">
<h1>【Lynx】TorとUTF-8で使い方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年03月25日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/webbrowser/">webbrowser</a>,
<a href="/tags/ターミナル/">ターミナル</a>,
<a href="/tags/端末/">端末</a>
</div>
</div>
<hr />
<div>
<p>Javascriptは要りません<br />
毎月新しいパソコン・スマホを購入必要はありません!!<br />
ですから、コマンドライン用ブラウザを使いましょう!!</p>
<p>最近まで、好みなコマンドライン用ブラウザはw3mでした。<br />
@ -114,12 +110,21 @@ bashを使ったら、.bashrcを編集して下さい。</p>
<p>左はqutebrowserで、右はlynxです。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【Mobian】テーマの変更、日本語(今は仮名だけ)を入力、スクショを取り方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-12-19T00:00:00Z">
2020年12月19日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/phosh/">phosh</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/mobian-change-theme-kana-insert-sukusyo-takeway/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Mobian】テーマの変更、日本語(今は仮名だけ)を入力、スクショを取り方</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>スマホでMobian(モービアン)を使っていますが、日常使えるにはもう少し変更しないといけません。</p>
<div class="header">
<h1>【Mobian】テーマの変更、日本語(今は仮名だけ)を入力、スクショを取り方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年12月19日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/phosh/">phosh</a>
</div>
</div>
<hr />
<div>
<p>スマホでMobian(モービアン)を使っていますが、日常使えるにはもう少し変更しないといけません。</p>
<h1 id="heading">まずはパソコン用のアプリを強制スケールを一番必要な直しだと思います。</h1>
<pre style="background-color:#f8f8f8;overflow-x: auto"><code>gsettings <span style="color:#a2f">set</span> sm.puri.phoc scale-to-fit <span style="color:#a2f">true</span>
</code></pre><h1 id="heading-1">後はテーマを変更しました。</h1>
@ -107,12 +103,21 @@ wget https://source.puri.sm/Librem5/squeekboard/-/raw/master/data/keyboards/jp+k
スマホから入力したら、ターミナル画面だけを取れますので、ご注意下さい。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【Mobian】Chromiumブラウザを使える方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-02-19T00:00:00Z">
2021年02月19日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/chromium/">chromium</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/pinephone/">pinephone</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/mobian-chromium-browser-can-use-method/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Mobian】Chromiumブラウザを使える方</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>やっとモービアンでChromiumを使えます<br />
<div class="header">
<h1>【Mobian】Chromiumブラウザを使える方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年02月19日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/chromium/">chromium</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/pinephone/">pinephone</a>
</div>
</div>
<hr />
<div>
<p>やっとモービアンでChromiumを使えます<br />
それで、LINEも使えます</p>
<p>使えるには:<br />
<code>/etc/chromium/local.conf</code>」という新しいファイルを作って、下記のものを貼って下さい:</p>
@ -79,12 +75,21 @@
<img src="21-02-1915-10-372728.jpg" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>【Mobian】アップデート問題の修正方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-11-29T00:00:00Z">
2020年11月29日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/mobian-fix-apdate-probrem/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Mobian】アップデート問題の修正方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>注意Mobianをアップデートする前に、絶対にSSHサーバーをインストールしておいて下さい</p>
<div class="header">
<h1>【Mobian】アップデート問題の修正方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年11月29日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>
</div>
</div>
<hr />
<div>
<p>注意Mobianをアップデートする前に、絶対にSSHサーバーをインストールしておいて下さい</p>
<pre style="background-color:#f8f8f8;overflow-x: auto"><code>sudo apt install openssh-server
sudo systemctl <span style="color:#a2f">enable</span> ssh
</code></pre><p>失敗した場合、パソコンからアクセスできます。</p>
@ -93,12 +89,21 @@ sudo apt-get dist-upgrade -y
まだエラーが出たら、「<code>dpkg --configure -a</code>」を実行すると、「<code>処理中にエラーが発生しました:</code>」という列行の下記のソフト名で上記のコマンドを実行して下さい。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【Mobian】MyMoneroウォレットのインストール方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-03-12T00:00:00Z">
2022年03月12日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>,
<a href="/tags/pinephone/">pinephone</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/mobian-mymonero-wallet-use-way/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Mobian】MyMoneroウォレットのインストール方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>LinuxスマホでまだXMRウォレットがありませんので、パソコン向けウォレットをインストールしましょう</p>
<div class="header">
<h1>【Mobian】MyMoneroウォレットのインストール方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年03月12日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>,
<a href="/tags/pinephone/">pinephone</a>
</div>
</div>
<hr />
<div>
<p>LinuxスマホでまだXMRウォレットがありませんので、パソコン向けウォレットをインストールしましょう</p>
<p>まずはGit、NPM、及びNodeJSをインストールして下さい。<br />
「electron-builder」でビルド出来ませんが、npmでmymoneroアプリを設置するには、インストールする事が必要です。</p>
<pre style="background-color:#f8f8f8;overflow-x: auto"><code>sudo apt install git npm nodejs
@ -120,12 +116,21 @@ ARMでelectronアプリをビルド出来ませんので、mymoneroアプリを
<p>アップデートするには、「git pull」で十分です。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>日本APIを開発中部分公開開始</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2019-12-05T00:00:00Z">
2019年12月05日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/api/">api</a>,
<a href="/tags/json/">json</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/nihon-api-wa-chotto-dake-kokaichu/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 日本APIを開発中部分公開開始</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>無料日本APIを作り中。<br />
<div class="header">
<h1>日本APIを開発中部分公開開始</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2019年12月05日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/api/">api</a>,
<a href="/tags/json/">json</a>
</div>
</div>
<hr />
<div>
<p>無料日本APIを作り中。<br />
2020年のオリンピックの時前に完全作ってみたいね。<br />
下記は今までの全URLを表示します↓<br />
<a href="https://technicalsuwako.jp/api/rpc/japan/history/period">時代</a><br />
@ -96,12 +92,21 @@
ソースコードは来月を公開します。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【オディシー】Odysee日本語訳は間もなく来る</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-04-28T00:00:00Z">
2021年04月28日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/lbry/">lbry</a>,
<a href="/tags/odysee/">odysee</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/odysee-japanese-transrate-soon/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【オディシー】Odysee日本語訳は間もなく来る</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>前回、「<a href="/blog/lbry-introduce-no-censorship-blockchain-p2p-video-soft">まだ日本語に翻訳されていませんから、現在LBRYで日本人は少ないです。現在、和訳は75%ぐらいコンプリートですので、将来LBRYで日本のコンテンツも来るかもしれません。</a>」と言いましたね。</p>
<div class="header">
<h1>【オディシー】Odysee日本語訳は間もなく来る</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年04月28日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/lbry/">lbry</a>,
<a href="/tags/odysee/">odysee</a>
</div>
</div>
<hr />
<div>
<p>前回、「<a href="/blog/lbry-introduce-no-censorship-blockchain-p2p-video-soft">まだ日本語に翻訳されていませんから、現在LBRYで日本人は少ないです。現在、和訳は75%ぐらいコンプリートですので、将来LBRYで日本のコンテンツも来るかもしれません。</a>」と言いましたね。</p>
<p>現在(2021年4月28日)、オディシーをまだ日本語で使えませんが、僕はもうβ版を試してみました。<br />
「日本語訳はどうかな?」と思ったら、スクショをご覧下さい。</p>
<p><img src="Screenshot_20210428_180653.png" alt="" /> <img src="Screenshot_20210428_180554.png" alt="" /></p>
@ -76,12 +72,21 @@
次のバージョンはいつリリースするかわかりませんが、そろそろだと思います。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>Adobeは高すぎぃオープンソースで動画編集しよう</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-10-21T00:00:00Z">
2020年10月21日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/kdenlive/">kdenlive</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/動画編集/">動画編集</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/open-source-douga-hensyu/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: Adobeは高すぎぃオープンソースで動画編集しよう</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>動画を編集したら、いつでもオープンソースソフトで編集します。<br />
<div class="header">
<h1>Adobeは高すぎぃオープンソースで動画編集しよう</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年10月21日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/kdenlive/">kdenlive</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/動画編集/">動画編集</a>
</div>
</div>
<hr />
<div>
<p>動画を編集したら、いつでもオープンソースソフトで編集します。<br />
知ってた?本当ですよ!</p>
<h1 id="heading">何を使う?</h1>
<p><a href="https://kdenlive.org/">Kdenlive</a>というアプリを使います。<br />
@ -89,12 +85,21 @@ Linuxスマホを持ったら(現在<a href="https://shop.puri.sm/shop/libr
<p>ねぇねぇ!簡単でしょ?<br />
以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>【PeerTube】ストレージフォルダを変更方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-05-28T00:00:00Z">
2021年05月28日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/peertube/">peertube</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/ストレージ/">ストレージ</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/peertube-change-storeg-forder/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【PeerTube】ストレージフォルダを変更方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>PeerTubeインスタンスをインストールしましたが、もう100GBのSSDを超えました。<br />
<div class="header">
<h1>【PeerTube】ストレージフォルダを変更方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年05月28日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/peertube/">peertube</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/ストレージ/">ストレージ</a>
</div>
</div>
<hr />
<div>
<p>PeerTubeインスタンスをインストールしましたが、もう100GBのSSDを超えました。<br />
ですから、500GBの外部ストレージを付かないといけませんでした。</p>
<p>でも、ストレージを移動するのはとても大変でした。<br />
そうして、ネットで全然ハウツーがありません。<br />
@ -122,12 +118,21 @@ PeerTubeで動画を見て、F12を押して、赤文字を出るかどうか確
なければ成功です。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>【PHP】gnupgの許可なし</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-12-03T00:00:00Z">
2021年12月03日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/php/">php</a>,
<a href="/tags/gnupg/">gnupg</a>,
<a href="/tags/linux/">linux</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/php-gnupg-no-permission/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【PHP】gnupgの許可なし</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>シェルでgpgを実行出来ますが、PHPから実行すると、「<code>false</code>」が出ました。</p>
<div class="header">
<h1>【PHP】gnupgの許可なし</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年12月03日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/php/">php</a>,
<a href="/tags/gnupg/">gnupg</a>,
<a href="/tags/linux/">linux</a>
</div>
</div>
<hr />
<div>
<p>シェルでgpgを実行出来ますが、PHPから実行すると、「<code>false</code>」が出ました。</p>
<pre style="background-color:#f8f8f8;overflow-x: auto"><code><span style="color:#b8860b">$gpg</span> <span style="color:#666">=</span> <span style="color:#a2f;font-weight:bold">new</span> \gnupg();
<span style="color:#b8860b">$info</span> <span style="color:#666">=</span> <span style="color:#b8860b">$gpg</span><span style="color:#666">-&gt;</span><span style="color:#b44">import</span>(<span style="color:#b8860b">$this</span><span style="color:#666">-&gt;</span><span style="color:#b44">field</span>[<span style="color:#b44">&#39;gpg&#39;</span>]);
dd(<span style="color:#b8860b">$info</span>);
@ -124,12 +120,21 @@ drwxr-xr-x 4 nginx nginx 4.0K Dec 3 14:03 ..
</code></pre><p>PHPでも解決されました</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【Pinephone】4G、通話等の設定方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-12-06T00:00:00Z">
2020年12月06日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/pinephone/">pinephone</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/pinephone-4g-telephone-setting-way/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Pinephone】4G、通話等の設定方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>先月Pinephoneというスマホを買いましたが、残念ながら、ソフトバンクのUSIMを使えないと気づいました…<br />
<div class="header">
<h1>【Pinephone】4G、通話等の設定方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年12月06日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/pinephone/">pinephone</a>
</div>
</div>
<hr />
<div>
<p>先月Pinephoneというスマホを買いましたが、残念ながら、ソフトバンクのUSIMを使えないと気づいました…<br />
SIMのみのプランを買ったのに、ソフトバンクの店舗でフリーSIMじゃないと教えくれました。<br />
SIMだけを買ったら、iPhone又はAndroidだけで使えます。マジ</p>
<p>でも、楽天モバイルのSIMカードを買ってみましたら、やっと4G、通話等を使えます<br />
@ -84,12 +80,21 @@ APNは「<code>rakuten.jp</code>」。<br />
<img src="20201206_11h57m34s_grim.png" alt="" /> <img src="20201206_11h57m48s_grim.png" alt="" /> <img src="20201206_11h57m53s_grim.png" alt="" /> <img src="IMG_6991.PNG" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【Pinephone】fcitx5+mozcで日本語入力方法(漢字も</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-12-18T00:00:00Z">
2020年12月18日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/fcitx/">fcitx</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/pinephone-fcitx5-mozc-japanese-with-kanji/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Pinephone】fcitx5+mozcで日本語入力方法(漢字も</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>本当に難しかったですが、やっとMobianで仮名も漢字も入力できます<br />
<div class="header">
<h1>【Pinephone】fcitx5+mozcで日本語入力方法(漢字も</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年12月18日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/mobian/">mobian</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/スマホ/">スマホ</a>,
<a href="/tags/fcitx/">fcitx</a>
</div>
</div>
<hr />
<div>
<p>本当に難しかったですが、やっとMobianで仮名も漢字も入力できます<br />
ちょっと不思議ですので、下記に教えてくれてみます。</p>
<p><strong>fcitxかfcitx5?</strong>
fcitxはX11だけで使えますが、fcitx5はwaylandでも使えますので、fcitx5を使っております。<br />
@ -119,12 +115,21 @@ sudo reboot
<p><video src="mobian-fcitx5-nihongo.mp4" controls="controls" style="max-height: 600px;"></video></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【Plasma Mobile】日本語キーボードを有効にする方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-05-29T00:00:00Z">
2021年05月29日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/plasma mobile/">plasma mobile</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/スマホ/">スマホ</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/plasma-mobile-japanese-keybod-active/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Plasma Mobile】日本語キーボードを有効にする方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>やっとManjaro ARMのPlasma MobileというDEで日本語キーボードを追加されました<br />
<div class="header">
<h1>【Plasma Mobile】日本語キーボードを有効にする方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年05月29日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/plasma mobile/">plasma mobile</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/pinephone/">pinephone</a>,
<a href="/tags/スマホ/">スマホ</a>
</div>
</div>
<hr />
<div>
<p>やっとManjaro ARMのPlasma MobileというDEで日本語キーボードを追加されました<br />
でも、有効にすると、キーボードの言語を日本語に変えたら、キーボードが死ぬみたいです。<br />
修正方法はとても簡単ですよ!</p>
<p>まずは、そのまま有効にして。<br />
@ -145,12 +141,21 @@ Segmentation fault (core dumped)
<p><video src="detadeta.mp4" controls="controls" style="max-height: 400px;"></video></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,38 +1,11 @@
<article>
<header>
<h1>【Postfix】スパム踏み台になった場合、mailq削除方法です</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-01-24T00:00:00Z">
2020年01月24日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/postfix/">postfix</a>,
<a href="/tags/メール/">メール</a>,
<a href="/tags/スパム/">スパム</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/server/">server</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/postfix-spam-fumidai-keshitewa-ii-ne/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Postfix】スパム踏み台になった場合、mailq削除方法です</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -42,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -69,7 +44,28 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>毎日皆さんはメールを送りますが、簡単なパスワードを使い方又はパスワードハッキングが多すぎます。<br />
<div class="header">
<h1>【Postfix】スパム踏み台になった場合、mailq削除方法です</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年01月24日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/postfix/">postfix</a>,
<a href="/tags/メール/">メール</a>,
<a href="/tags/スパム/">スパム</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/server/">server</a>
</div>
</div>
<hr />
<div>
<p>毎日皆さんはメールを送りますが、簡単なパスワードを使い方又はパスワードハッキングが多すぎます。<br />
だから、メールサーバーはスパム踏み台になる率が高いです。</p>
<p>スパム踏み台になったかならないかどうかを確認して。</p>
<pre style="background-color:#f8f8f8;overflow-x: auto"><code>mailq | tail
@ -115,12 +111,21 @@ our Bulk Email Senders Guidelines. なんとかなんとか - gsmtp (in reply to
お疲れ様!</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【Prosody】mod_http_upload(XEP-0363)を有効にする方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-10-17T00:00:00Z">
2021年10月17日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/prosody/">prosody</a>,
<a href="/tags/xmpp/">xmpp</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/prosody-modhttpupload-xep363-active-way/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【Prosody】mod_http_upload(XEP-0363)を有効にする方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>XMPPサーバーを設置するなら、Prosodyは一番大人気ですね。<br />
<div class="header">
<h1>【Prosody】mod_http_upload(XEP-0363)を有効にする方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年10月17日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/prosody/">prosody</a>,
<a href="/tags/xmpp/">xmpp</a>
</div>
</div>
<hr />
<div>
<p>XMPPサーバーを設置するなら、Prosodyは一番大人気ですね。<br />
でも、すぐファイル転送機能性を使えないと気づきました。<br />
ネットで、機能性を有効にする方法は殆どないんです。<br />
日本語のネットも英語のネットもありません。</p>
@ -157,12 +153,21 @@ Component <span style="color:#b44">&#34;proxy.ドメイン&#34;</span> <span sty
</code></pre><p><img src="modhttpupload.png" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【仮想通貨】プライバシー通貨一覧</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-12-05T00:00:00Z">
2021年12月05日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>,
<a href="/tags/プライバシー/">プライバシー</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/recommend-privasi-crypto/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【仮想通貨】プライバシー通貨一覧</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>昨日は<a href="https://social.076.ne.jp/notice/AE3HO6OzW6j7g2o9om">ほとんどすべての仮想通貨は突然潰れされました</a><br />
<div class="header">
<h1>【仮想通貨】プライバシー通貨一覧</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年12月05日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/仮想通貨/">仮想通貨</a>,
<a href="/tags/プライバシー/">プライバシー</a>
</div>
</div>
<hr />
<div>
<p>昨日は<a href="https://social.076.ne.jp/notice/AE3HO6OzW6j7g2o9om">ほとんどすべての仮想通貨は突然潰れされました</a><br />
でも、その後すぐどんどん回復されました。<br />
無政府資本主義者に一番大事な物はーーーーー自由です。<br />
二番は愛です。<br />
@ -122,12 +118,21 @@
2022年春まで、価格は800円までになると思います。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,36 +1,11 @@
<article>
<header>
<h1>【サービスの変更】076.ne.jp、076.moe、076.wtf</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-12-26T00:00:00Z">
2021年12月26日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/service/">service</a>,
<a href="/tags/変更/">変更</a>,
<a href="/tags/076/">076</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/sarvice-kosin-076nejp-076moe/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【サービスの変更】076.ne.jp、076.moe、076.wtf</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -40,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -67,7 +44,26 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>076のサービスをご利用頂き、有難う御座います。<br />
<div class="header">
<h1>【サービスの変更】076.ne.jp、076.moe、076.wtf</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年12月26日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/service/">service</a>,
<a href="/tags/変更/">変更</a>,
<a href="/tags/076/">076</a>
</div>
</div>
<hr />
<div>
<p>076のサービスをご利用頂き、有難う御座います。<br />
2022年でサービスを少し変更予定です。</p>
<p>現在、076.ne.jpのサービスは色々のサーバーにあります。<br />
でも、色んな小さいVPSから段々大きいVPSに移動しています。<br />
@ -88,12 +84,21 @@ XMPP、IRC、及びMumbleはメールサーバーと同じサーバーに移動
そうして、この同じサーバーは <a href="https://technicalsuwako.jp/blog/digital-autonomy-076-can-help">デジタル自主を作りたい方に</a> 使い積りです。</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【日本API・PHP】簡単に都道府県名等の取り出し方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2020-02-10T00:00:00Z">
2020年02月10日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/php/">php</a>,
<a href="/tags/api/">api</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/tadashi-wai-no-api-de-todofuken-joho-toridasu/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【日本API・PHP】簡単に都道府県名等の取り出し方</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>日本APIで都道府県情報を取ることが簡単になりますね。<br />
<div class="header">
<h1>【日本API・PHP】簡単に都道府県名等の取り出し方</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2020年02月10日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/php/">php</a>,
<a href="/tags/api/">api</a>
</div>
</div>
<hr />
<div>
<p>日本APIで都道府県情報を取ることが簡単になりますね。<br />
でも、どうしようか?<br />
お説明しましょ〜う!!</p>
<pre style="background-color:#f8f8f8;overflow-x: auto"><code><span style="color:#666">&lt;?</span>php
@ -95,12 +91,21 @@
<a href="https://www.technicalsuwako.jp/api/rpc/japan/geo/prefecture">都道府県API</a></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,37 +1,11 @@
<article>
<header>
<h1>【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-03-28T00:00:00Z">
2022年03月28日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/server/">server</a>,
<a href="/tags/ウエブ開発/">ウエブ開発</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/javascript/">javascript</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/webdev-javascript-ha-fuyou/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -41,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,7 +44,27 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>私の建前は本音と同じですので、投稿を書いたらあんま丁寧じゃないと思いますね。<br />
<div class="header">
<h1>【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年03月28日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/server/">server</a>,
<a href="/tags/ウエブ開発/">ウエブ開発</a>,
<a href="/tags/linux/">linux</a>,
<a href="/tags/javascript/">javascript</a>
</div>
</div>
<hr />
<div>
<p>私の建前は本音と同じですので、投稿を書いたらあんま丁寧じゃないと思いますね。<br />
正直に要点に触れないと、社会又はデジタルの問題が大きくなりますから。<br />
何で上記の事を教えるの?と思ったら、これはネットの重体の問題について記事ですので、今回は特に甘くないです。</p>
<p>なお、下記は本当の会社のウエブサイトを論いますが、これは責めるためじゃなくて、磨きに手伝う為です。<br />
@ -172,12 +168,21 @@ JavaScriptは必須だったら可笑しいでしょ<br /></p>
JSの無い翻訳機が存在しないよと思ったら、<a href="https://simplytranslate.org/">これは何</a></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,34 +1,11 @@
<article>
<header>
<h1>ホームページのリニュアル</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2022-01-27T00:00:00Z">
2022年01月27日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/076/">076</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/webpage-renewal/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: ホームページのリニュアル</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -38,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -65,7 +44,24 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>リニュアルに成功です!<br />
<div class="header">
<h1>ホームページのリニュアル</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2022年01月27日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/076/">076</a>
</div>
</div>
<hr />
<div>
<p>リニュアルに成功です!<br />
~今回はアクセスするには、JSをOFFにすることが必須となりました。~<br />
そうして、Torミラーは別サーバでホスティングしています。</p>
<p>ダークウェブでもっと早く最新投稿を発行しますので、必ずご確認下さい。<br />
@ -77,12 +73,21 @@ I2P: <a href="http://4oymiquy7qobjgx36tejs35zeqt24qpemsnzgtfeswmrw6csxbkq.b32.i2
Freenet: 後で作ります</p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,35 +1,11 @@
<article>
<header>
<h1>【XMPP】アカウントを作成方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
<time datetime="2021-10-02T00:00:00Z">
2021年10月02日
</time>
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/xmpp/">xmpp</a>,
<a href="/tags/chat/">chat</a>
</div>
</header>
<section>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/blog/xmpp-account-create-way/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 【XMPP】アカウントを作成方法</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -39,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -66,7 +44,25 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<p>今日はXMPPアカウントを作成方法を教えてみると思います。</p>
<div class="header">
<h1>【XMPP】アカウントを作成方法</h1>
<a href="/">トップページに戻る</a>
<div class="info">
凜、
2021年10月02日
&mdash;
<a href="/tags/jp/">jp</a>,
<a href="/tags/blog/">blog</a>,
<a href="/tags/xmpp/">xmpp</a>,
<a href="/tags/chat/">chat</a>
</div>
</div>
<hr />
<div>
<p>今日はXMPPアカウントを作成方法を教えてみると思います。</p>
<h1 id="heading">ソフト</h1>
<ul>
<li>Gajim(Linux、Windows)</li>
@ -111,12 +107,21 @@
<img src="siskin/21-09-2016-25-592760.png" alt="" /></p>
<p>以上</p>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>
</section>
</article>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/contact/" />
<meta property="og:image" content="../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../blog.atom" />
<title>テクニカル諏訪子: 連絡先</title>
<link rel="stylesheet" type="text/css" href="../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -77,9 +75,19 @@
ユーザ名:(お好み)<br />
ラベル:(お好み)</p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/freelancer/" />
<meta property="og:image" content="../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../blog.atom" />
<title>テクニカル諏訪子: フリーランス</title>
<link rel="stylesheet" type="text/css" href="../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -291,9 +289,19 @@ Sサーバー</p>
</tr>
</table>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/i2pabout/" />
<meta property="og:image" content="../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../blog.atom" />
<title>テクニカル諏訪子: I2Pについて</title>
<link rel="stylesheet" type="text/css" href="../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<a href="http://technicalsuwako.i2p/?i2paddresshelper=SC6pv17-SOHLuK-Gore1xopQGAyXnK0NourdnWMrmaqrvdpfDTBlsEKQCL7qstoudF3r--R7VgyjGe7rUvCyio6CdpaK-Yp3UhYwq3SJOdCQmUNuhbNMX3MGyZ~8Qh-MAooViL9WCAiHJK6Vg57ZJjZD~g2Vopqpt9cP79emwMmCPYpDdVCW0Q5ghN-OrT8WweXx2LxulFXj962CIAce~i1PlDXHHUWIsY2cAqubt1teR1~TKFNYnuMIFiXqccsnmFRNiqkHpENbsVvvl-jGyj~qVxwvbPhJGuzzHf1rWYzWaFAUHptJs0rANRrijcnX7VFwoL98YffkqXtUO1Ssjq9RDPKbPeRlSElZYT~vxpCub7No9hy5XU-FTaja0FVXd~8Ds54jyooPB6A-RqlydQGdFyDN2sH98u0jtyNR8d1LYHcs7ObwkDFnH6PdQ-9fCflgt7RPBHS2joRsOd89~ybqg22BmoBEpM3IVgvDrucY2cdO0pmtBWTUL-1pYNBfBQAEAAcAAA==">アドレスヘルパー</a></p>
<p>まだ問題があれば、B32アドレスはこちらです→ <a href="http://xrp6lveka5phsitsjee6z53qwbgim6gkmbfjyf5fppmz6hsi2oya.b32.i2p/">B32アドレス</a></p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/" />
<meta property="og:image" content="./static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="./blog.atom" />
<title>テクニカル諏訪子: トップページ</title>
<link rel="stylesheet" type="text/css" href="./static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -46,388 +44,312 @@
<a href="/support/bitcoin"><img src="/static/bitcoin.png" alt="Bitcoin" /></a>
</p>
<hr />
<article>
<p class="lead">
ようこそ、あたしのウェブページへ!諏訪子です。
</p>
</article>
ようこそ、あたしのウェブページへ!諏訪子です。
</p>
<section class="mb5 mt15">
<div class="mb5 mt15">
<time datetime="2022-03-28T00:00:00Z">
2022年03月28日
</time>
2022年03月28日
<a href="./blog/webdev-javascript-ha-fuyou/">【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-03-25T00:00:00Z">
2022年03月25日
</time>
2022年03月25日
<a href="./blog/lynx-tor-and-utf8-use-way/">【Lynx】TorとUTF-8で使い方</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-03-18T00:00:00Z">
2022年03月18日
</time>
2022年03月18日
<a href="./blog/cryptocurrency-kakunin-with-cointop/">【仮想通貨】cointopで確認する方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-03-12T00:00:00Z">
2022年03月12日
</time>
2022年03月12日
<a href="./blog/mobian-mymonero-wallet-use-way/">【Mobian】MyMoneroウォレットのインストール方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-03-09T00:00:00Z">
2022年03月09日
</time>
2022年03月09日
<a href="./blog/cancel-culture-076-will-not-ban-russia/">【キャンセルカルチャー】全宇宙の会社はロシアに対して差別しているみたい…</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-03-02T00:00:00Z">
2022年03月02日
</time>
2022年03月02日
<a href="./blog/digital-dorei-ukraina-russia-real-goal/">【デジタル奴隷制度】ウクライナ”侵略”の実目的</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-02-25T00:00:00Z">
2022年02月25日
</time>
2022年02月25日
<a href="./blog/digital-autonomy-web-1-2-3-4-tigai/">【デジタル自主】Web1、Web2、Web3、Web0の違いは?</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-02-16T00:00:00Z">
2022年02月16日
</time>
2022年02月16日
<a href="./blog/digital-autonomy-cashless-problem/">【デジタル自主】キャッシュレス社会の危険性</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-02-15T00:00:00Z">
2022年02月15日
</time>
2022年02月15日
<a href="./blog/digital-autonomy-web3-is-scam/">【デジタル自主】Web3.0(NFT、Qortal、メタバース等)は詐欺</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-01-28T00:00:00Z">
2022年01月28日
</time>
2022年01月28日
<a href="./blog/digital-jisyu-own-or-permit/">【デジタル監視】ワクチンパスポートの実目的</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-01-27T00:00:00Z">
2022年01月27日
</time>
2022年01月27日
<a href="./blog/webpage-renewal/">ホームページのリニュアル</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2022-01-15T00:00:00Z">
2022年01月15日
</time>
2022年01月15日
<a href="./blog/iken-chromium-no-dokusenka-wa-aku/">【意見】chromiumの独占化</a>
</section>
</div>
<section class="mb5 mt15">
<div class="mb5 mt15">
<time datetime="2021-12-27T00:00:00Z">
2021年12月27日
</time>
2021年12月27日
<a href="./blog/dejital-jisyu-censorship-law-is-illegal/">【デジタル自主】検閲法律=違法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-12-26T00:00:00Z">
2021年12月26日
</time>
2021年12月26日
<a href="./blog/sarvice-kosin-076nejp-076moe/">【サービスの変更】076.ne.jp、076.moe、076.wtf</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-12-19T00:00:00Z">
2021年12月19日
</time>
2021年12月19日
<a href="./blog/dejital-jisyu-bigtech-alttech-fedibars-which-recommend/">【デジタル自主】ビッグテック、アルトデック、フェディバース、どっちは勧める?</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-12-05T00:00:00Z">
2021年12月05日
</time>
2021年12月05日
<a href="./blog/recommend-privasi-crypto/">【仮想通貨】プライバシー通貨一覧</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-12-03T00:00:00Z">
2021年12月03日
</time>
2021年12月03日
<a href="./blog/php-gnupg-no-permission/">【PHP】gnupgの許可なし</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-11-20T00:00:00Z">
2021年11月20日
</time>
2021年11月20日
<a href="./blog/digital-kansi-corona-taimrain/">【デジタル監視】コロナのタイムライン</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-11-12T00:00:00Z">
2021年11月12日
</time>
2021年11月12日
<a href="./blog/digital-jisyu-komiket-is-owakon-dojinsi-enjoy-onionket/">【デジタル自主】コミケットはオワコン。同人誌を楽しむのはオニオンケット</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-10-17T00:00:00Z">
2021年10月17日
</time>
2021年10月17日
<a href="./blog/prosody-modhttpupload-xep363-active-way/">【Prosody】mod_http_upload(XEP-0363)を有効にする方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-10-02T00:00:00Z">
2021年10月02日
</time>
2021年10月02日
<a href="./blog/xmpp-account-create-way/">【XMPP】アカウントを作成方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-08-18T00:00:00Z">
2021年08月18日
</time>
2021年08月18日
<a href="./blog/digital-autonomy-076-can-help/">【デジタル自主】076は手伝い予定</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-07-23T00:00:00Z">
2021年07月23日
</time>
2021年07月23日
<a href="./blog/kaizoku-soft-sonzai-riyuu/">【海賊版ソフト】存在している理由は?</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-05-29T00:00:00Z">
2021年05月29日
</time>
2021年05月29日
<a href="./blog/plasma-mobile-japanese-keybod-active/">【Plasma Mobile】日本語キーボードを有効にする方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-05-28T00:00:00Z">
2021年05月28日
</time>
2021年05月28日
<a href="./blog/peertube-change-storeg-forder/">【PeerTube】ストレージフォルダを変更方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-05-08T00:00:00Z">
2021年05月08日
</time>
2021年05月08日
<a href="./blog/kindai-web-dev-install-muzukasi/">【意見】近代のウェブ開発:「インストール方法はもう簡単になった」</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-04-28T00:00:00Z">
2021年04月28日
</time>
2021年04月28日
<a href="./blog/odysee-japanese-transrate-soon/">【オディシー】Odysee日本語訳は間もなく来る</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-02-23T00:00:00Z">
2021年02月23日
</time>
2021年02月23日
<a href="./blog/lbry-introduce-no-censorship-blockchain-p2p-video-soft/">LBRYと紹介します検閲できないのブロックチェーンやP2P型動画ソフト(第部)</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2021-02-19T00:00:00Z">
2021年02月19日
</time>
2021年02月19日
<a href="./blog/mobian-chromium-browser-can-use-method/">【Mobian】Chromiumブラウザを使える方</a>
</section>
</div>
<section class="mb5 mt15">
<div class="mb5 mt15">
<time datetime="2020-12-19T00:00:00Z">
2020年12月19日
</time>
2020年12月19日
<a href="./blog/mobian-change-theme-kana-insert-sukusyo-takeway/">【Mobian】テーマの変更、日本語(今は仮名だけ)を入力、スクショを取り方</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-12-19T00:00:00Z">
2020年12月19日
</time>
2020年12月19日
<a href="./blog/linux-smaho-merit-demerit/">Linuxスマホのメリットデメリット</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-12-18T00:00:00Z">
2020年12月18日
</time>
2020年12月18日
<a href="./blog/pinephone-fcitx5-mozc-japanese-with-kanji/">【Pinephone】fcitx5+mozcで日本語入力方法(漢字も</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-12-06T00:00:00Z">
2020年12月06日
</time>
2020年12月06日
<a href="./blog/pinephone-4g-telephone-setting-way/">【Pinephone】4G、通話等の設定方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-11-29T00:00:00Z">
2020年11月29日
</time>
2020年11月29日
<a href="./blog/mobian-fix-apdate-probrem/">【Mobian】アップデート問題の修正方法</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-10-21T00:00:00Z">
2020年10月21日
</time>
2020年10月21日
<a href="./blog/open-source-douga-hensyu/">Adobeは高すぎぃオープンソースで動画編集しよう</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-05-10T00:00:00Z">
2020年05月10日
</time>
2020年05月10日
<a href="./blog/20200510-youtsube-jotai/">【YouTube】UltimatePismanのお知らせ</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-02-10T00:00:00Z">
2020年02月10日
</time>
2020年02月10日
<a href="./blog/tadashi-wai-no-api-de-todofuken-joho-toridasu/">【日本API・PHP】簡単に都道府県名等の取り出し方</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2020-01-24T00:00:00Z">
2020年01月24日
</time>
2020年01月24日
<a href="./blog/postfix-spam-fumidai-keshitewa-ii-ne/">【Postfix】スパム踏み台になった場合、mailq削除方法です</a>
</section>
</div>
<section class="mb5 mt15">
<div class="mb5 mt15">
<time datetime="2019-12-05T00:00:00Z">
2019年12月05日
</time>
2019年12月05日
<a href="./blog/nihon-api-wa-chotto-dake-kokaichu/">日本APIを開発中部分公開開始</a>
</section>
</div>
<section class="mb5 ">
<div class="mb5 ">
<time datetime="2019-07-19T00:00:00Z">
2019年07月19日
</time>
2019年07月19日
<a href="./blog/debian-stretch-buster-upgrade/">Debian 9(stretch)→10(buster)バージョンアップする方法</a>
</section>
</div>
<section class="mb5 mt15">
<div class="mb5 mt15">
<time datetime="2018-12-14T00:00:00Z">
2018年12月14日
</time>
2018年12月14日
<a href="./blog/hajimemashite/">はじめまして</a>
</section>
</div>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/service/" />
<meta property="og:image" content="../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../blog.atom" />
<title>テクニカル諏訪子: サービス</title>
<link rel="stylesheet" type="text/css" href="../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -221,9 +219,19 @@
</tr>
</table>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -19,7 +19,7 @@ body {
border: 4px #dde22d ridge;
}
.container, header {
.container {
margin: 0 auto;
background-color: #170b15;
max-width: 840px;
@ -63,7 +63,7 @@ h1 {
text-decoration: underline;
}
header > h1 {
.header > h1 {
font-size: 1.5em;
text-decoration: none;
}

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/support/bitcoin/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: ビットコイン(BTC)で支援♡</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -53,9 +51,19 @@
<pre>bc1qe6xaq9952qdnmlgdx7udr0e2mk3rzk5k9myu8w</pre>
<p><img src="btc-qr.png" alt="" /></p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/support/" />
<meta property="og:image" content="../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../blog.atom" />
<title>テクニカル諏訪子: 支援♡</title>
<link rel="stylesheet" type="text/css" href="../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -53,9 +51,19 @@
<a href="/support/wownero/"><img src="kerowow.png" alt="" /></a>
<a href="/support/bitcoin/"><img src="kerobtc.png" alt="" /></a></p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/support/monero/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: モネロ(XMR)で支援♡</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -53,9 +51,19 @@
<pre>436RmujnMVT834WXCUYoHcCWQBFnmDthxXYkxiwR8qVwBS7P84CjVwGUumvALfUcWDCNUKHFkJhSvPUQpkBtDk2zH9LSg7C</pre>
<p><img src="xmr-qr.png" alt="" /></p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/support/wownero/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: ウォーネロ(WOW)で支援♡</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -53,9 +51,19 @@
<pre>WW2ZFPZ7J5vPg552AKcJJgdDbQq883ixy4Lw76SG2nVhE9wpzFjFRNt8TSPt5T65ZjfNfG4yWbcAFZTwXTajDKQt1mowYoWmJ</pre>
<p><img src="wow-qr.png" alt="" /></p>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/076/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: 076</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/api/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: api</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/blog/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: blog</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -173,9 +171,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/chat/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: chat</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/chrome/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: chrome</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/iken-chromium-no-dokusenka-wa-aku/">【意見】chromiumの独占化</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/chromium/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: chromium</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/debian/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: debian</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/debian-stretch-buster-upgrade/">Debian 9(stretch)→10(buster)バージョンアップする方法</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/drm/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: drm</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/kaizoku-soft-sonzai-riyuu/">【海賊版ソフト】存在している理由は?</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/fcitx/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: fcitx</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/pinephone-fcitx5-mozc-japanese-with-kanji/">【Pinephone】fcitx5+mozcで日本語入力方法(漢字も</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/fediverse/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: fediverse</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/gnupg/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: gnupg</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/php-gnupg-no-permission/">【PHP】gnupgの許可なし</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/google/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: google</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/iken-chromium-no-dokusenka-wa-aku/">【意見】chromiumの独占化</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/irc/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: irc</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/digital-autonomy-076-can-help/">【デジタル自主】076は手伝い予定</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/javascript/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: javascript</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/webdev-javascript-ha-fuyou/">【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/jp/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: jp</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -173,9 +171,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/json/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: json</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/nihon-api-wa-chotto-dake-kokaichu/">日本APIを開発中部分公開開始</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/kdenlive/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: kdenlive</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/open-source-douga-hensyu/">Adobeは高すぎぃオープンソースで動画編集しよう</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/lbry/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: lbry</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/linux/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: linux</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -98,9 +96,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/mobian/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: mobian</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -68,9 +66,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/nft/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: nft</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/digital-autonomy-web3-is-scam/">【デジタル自主】Web3.0(NFT、Qortal、メタバース等)は詐欺</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/odysee/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: odysee</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/peertube/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: peertube</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/peertube-change-storeg-forder/">【PeerTube】ストレージフォルダを変更方法</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/phosh/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: phosh</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/mobian-change-theme-kana-insert-sukusyo-takeway/">【Mobian】テーマの変更、日本語(今は仮名だけ)を入力、スクショを取り方</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/php/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: php</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/pinephone/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: pinephone</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -71,9 +69,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/plasma mobile/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: plasma mobile</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/plasma-mobile-japanese-keybod-active/">【Plasma Mobile】日本語キーボードを有効にする方法</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/postfix/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: postfix</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/postfix-spam-fumidai-keshitewa-ii-ne/">【Postfix】スパム踏み台になった場合、mailq削除方法です</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/prosody/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: prosody</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/prosody-modhttpupload-xep363-active-way/">【Prosody】mod_http_upload(XEP-0363)を有効にする方法</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/server/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: server</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -62,9 +60,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/service/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: service</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/sarvice-kosin-076nejp-076moe/">【サービスの変更】076.ne.jp、076.moe、076.wtf</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/sns/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: sns</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/dejital-jisyu-bigtech-alttech-fedibars-which-recommend/">【デジタル自主】ビッグテック、アルトデック、フェディバース、どっちは勧める?</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/test/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: test</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/hajimemashite/">はじめまして</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/tor/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: tor</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/web3/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: web3</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -56,9 +54,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/webbrowser/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: webbrowser</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/lynx-tor-and-utf8-use-way/">【Lynx】TorとUTF-8で使い方</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/xmpp/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: xmpp</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -59,9 +57,19 @@
</li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/youtube/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: youtube</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/20200510-youtsube-jotai/">【YouTube】UltimatePismanのお知らせ</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/ウェブ開発/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: ウェブ開発</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/kindai-web-dev-install-muzukasi/">【意見】近代のウェブ開発:「インストール方法はもう簡単になった」</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/ウエブ開発/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: ウエブ開発</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/webdev-javascript-ha-fuyou/">【ウエブ開発】ウエブ開発者様へ、JavaScriptは不要</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/オニオンケット/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: オニオンケット</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/digital-jisyu-komiket-is-owakon-dojinsi-enjoy-onionket/">【デジタル自主】コミケットはオワコン。同人誌を楽しむのはオニオンケット</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/キャッシュレス/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: キャッシュレス</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/digital-autonomy-cashless-problem/">【デジタル自主】キャッシュレス社会の危険性</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

ファイルの表示

@ -1,15 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" lang="ja" xml:lang="ja">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="テクニカル諏訪子" />
<meta name="description" content="デジタル自主のロリ神様" />
<meta property="og:title" content="テクニカル諏訪子" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="テクニカル諏訪子" />
<meta property="og:url" content="http://6qiatzlijtqo6giwvuhex5zgg3czzwrq5g6yick3stnn4xekw26zf7qd.onion/tags/キャンセルカルチャー/" />
<meta property="og:image" content="../../static/egaokero.jpg" />
<link rel="alternate" type="application/atom+xml" title="テクニカル諏訪子 feed" href="../../blog.atom" />
<title>テクニカル諏訪子: キャンセルカルチャー</title>
<link rel="stylesheet" type="text/css" href="../../static/style.css" />
@ -19,9 +15,11 @@
<script type="text/javascript">
document.getElementById('jswarning').style.display = 'block';
</script>
<div class="container">
<img src="/static/Eqjk_WgVQAE2psn-new.jpeg" class="header-img" alt="ヘッダー" />
<p>
<a href="/">トップ</a> |
<a href="/about/">自己紹介</a> |
@ -51,9 +49,19 @@
<li><a href="../../blog/cancel-culture-076-will-not-ban-russia/">【キャンセルカルチャー】全宇宙の会社はロシアに対して差別しているみたい…</a></li>
</ul>
<hr />
<a href="https://github.com/piranha/gostatic">gostatic</a>で創作しました。<a href="https://git.076.ne.jp/TechnicalSuwako/StaticSuwako"><img src="/static/git.png" alt="Git" /></a>
<a href="http://validator.w3.org/check?uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F">
<img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1" height="31" width="88" />
</a>
<a href="https://jigsaw.w3.org/css-validator/validator?lang=ja&amp;profile=none&amp;uri=https%3A%2F%2Fwww.technicalsuwako.jp%2F&amp;usermedium=all&amp;vextwarning=&amp;warning=1">
<img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="正当なCSSです!" />
</a>
<a href="https://anybrowser.org/campaign/images/button_enhanced.gif">
<img style="border:0;width:88px;height:31px" src="https://anybrowser.org/campaign/bvgraphics/any1.gif" alt="どっちでもブラウザで表示出来ます!" />
</a>
</div>
</body>
</html>

変更されたファイルが多すぎるため、一部のファイルは表示されません さらに表示