smbdのバージョンとプロトコルをパッと表示する。
tumblr dot com
noise dept.

Jar Jar Binks Fan Club
★
todays bird
taylor price

ellievsbear
Today's Document
Aqua Utopia|海の底で記憶を紡ぐ

Discoholic 🪩

izzy's playlists!

PR's Tumblrdome
sheepfilms
Xuebing Du
Noah Kahan

pixel skylines
Sweet Seals For You, Always
Lint Roller? I Barely Know Her
seen from Türkiye
seen from Bangladesh
seen from Germany

seen from Latvia

seen from Malaysia

seen from Australia

seen from Italy

seen from United States
seen from Latvia

seen from Netherlands
seen from United States

seen from Singapore

seen from United States
seen from United States
seen from Kenya
seen from United States
seen from France

seen from United States

seen from United States
seen from Kosovo
@nzkh2nr
smbdのバージョンとプロトコルをパッと表示する。

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
C# DataTableのAsEnumerableメソッド
https://docs.microsoft.com/ja-jp/dotnet/api/system.data.datatableextensions.asenumerable?view=netframework-4.8
DataTableのAsEnumerableメソッドを使うには System.Data.DataSetExtensions System.Xml を参照に追加する
VisualStudio2019 “0個の参照” 表示を消す
ツール > オプション > テキストエディタ― > すべての言語 > CodeLens
CodeLensを有効にするのチェックを外す
iPadOS (13.1)でホーム画面に追加からSafariを起動 → Vue Router の history モードだと、画面遷移のたびにリーダーが表示される
「完了」を押すと、ホーム画面に追加した際のURLに戻ってしまうので、Vue Router の history モードを使用しないことで回避した
Python -u printcommand.py | tee output.log
Python printcommand.py | tee output.log だと画面に表示されないので、
Python -u printcommand.py | tee output.log とする

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
PostgreSQLで generate_series を使って1時間おきの日時を取得する
https://www.postgresql.jp/document/8.4/html/functions-srf.html
例:1日前から現在時刻までの1時間おきの日時を取得
SELECT generate_series as datehour FROM generate_series ( date_trunc('hour', localtimestamp + '-1 day'), date_trunc('hour', localtimestamp), '1 hour' )
mod_wsgi + Apache で Flask-Login のlogin statusが維持できなかったので、SECRET_KEYを固定値に変更して回避した
app.config['SECRET_KEY'] = binascii.hexlify(os.urandom(8)).decode('utf-8') ↓ app.config['SECRET_KEY'] = 'StaticVariable'
Flask==1.0.2 Flask-Login==0.4.1
https://stackoverflow.com/questions/48513139/logins-stop-working-when-switching-to-wsgi-with-flask-flask-login-mod-wsgi
Vuetify の v-dialog で v-select を使う場合に追加する CSS
iPhone/iPad の Mobile Safari で ダイアログ中のリストボックスにリストアイテムが表示されないので、
.menuable__content__active { z-index:250!important; }
をCSSに追加する
https://github.com/vuetifyjs/vuetify/issues/2111
Vue.js の公式ルータ
<router-link> を使用せずにプログラムによるナビゲーションでページを構築する場合は、ルートを定義する際に名前を登録しておく。
⇒ this.$route.name で取得できる。
Vue.js を取得する
に従って、ここからVue.js 関連をローカルに取得
https://www.jsdelivr.com/package/npm/vue
https://www.jsdelivr.com/package/npm/vuex
https://www.jsdelivr.com/package/npm/vue-router
https://www.jsdelivr.com/package/npm/vuetify

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
CSSセレクタって意外と分かっていなかったりするので勉強ついでにまとめてみました。比較的実用的かなと思うものを20個紹介していきます。いい復習になればと思います。...
(奇数番目の要素に適用) :nth-child(odd)
(偶数番目の要素に適用) :nth-child(even)
Vuetify の data-tables
https://vuetifyjs.com/ja/components/data-tables
https://codepen.io/pen/?&editable=true&editors=101 のHTMLは
<div id="app"> <v-app id="inspire"> <v-data-table :headers="headers" :items="desserts" class="elevation-1"> <template slot="items" slot-scope="props"> <td v-for="header in headers"> {{ props.item[header.value] }} </td> </template> </v-data-table> </v-app> </div>
とできる
Vuetify の grid-list- 比較
iOS ダブルタップによる拡大・縮小を無効/ロングタップによるリンク動作・テキスト選択を無効にする CSS
html { touch-action: manipulation; } body { -webkit-touch-callout:none; -webkit-user-select:none; }
PostgreSQLでテーブルエクスポート&インポート
エクスポートしたいDBがあるマシン(ここではWindows)で
COPY "テーブル名" TO 'c:/output/folder/filename.csv' WITH CSV DELIMITER ',';
できたファイルをインポートしたDBがあるマシン(ここではLinux)にコピーして
COPY "テーブル名" FROM '/input/directory/filename.csv' WITH CSV DELIMITER ',';

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
npm でバージョンを指定してインストール
例:
>npm info vue-cli versions
>npm install -g [email protected]
>npm list --depth=0 -g
pip でパッケージをダウンロード
windows: pip download モジュール名
linux: pip install --download /tmp(ダウンロード先) モジュール名