2020-02-01から1ヶ月間の記事一覧

Bootstrap4 - Cheat Sheet

参考 hackerthemes.com Bootstrap 4 フロントエンド開発の教科書作者:宮本 麻矢,朝平 文彦発売日: 2018/08/25メディア: 単行本(ソフトカバー)

python - 仮想環境

参考 qiita.com narito.ninja

python - 学習参考

学習 docs.python.org docs.python.org www.atmarkit.co.jp note.nkmk.me maku77.github.io Pythonのモジュールとは「py」という拡張子が付けられたテキストファイルのこと。 パッケージとは、複数のモジュールを束ねたもの。

HTML5 - window.postMessage

参考 qiita.com

wifi -ブリッジモード

参考 itikabatika.com ネットへの接続が安定しました。

サーバー設定 -ドメイン

参考 www.value-domain.com www.cman.jp

秀丸エディタ - 設定

設定 カラー設定 /<ColorSet> /[0][0]:0x00FFFFFF /[0][1]:0x00150000 /[0][2]:0x00000000 /[1][0]:0x00FF8080 /[1][1]:0x003C0000 /[1][2]:0x00000000 /[2][0]:0x000000FF /[2][1]:0x003C0000 /[2][2]:0x00000001 /[3][0]:0x00008000 /[3][1]:0x003C0000 /[3][2]:0x00</colorset>…

サクラエディタ - 設定

設定 設定 ショートカット設定 カラー設定 ショートカット設定 ;SakuraKeyBind_Ver4 [Info] KEYBIND_COUNT=100 KEYBIND_VERSION=SakuraKeyBind_Ver4 [KeyBind] KeyBind[000]=0100,0,SelectWord,SelectWord,SelectWord,SelectWord,SelectWord,SelectWord,Sele…

Linux - ターミナル

目次 目次 リダイレクション 標準出力へ catコマンドでテキストファイルを作成 catコマンドでテキストファイルを作成 catコマンドでテキストファイルを結合 ファイルの最後に追加する パイプ(標準入力を繋ぐ) ファイルの最後に追加する ファイル一覧のスクロ…

vim - vimrc

vim設定 vimのデフォルトの設定。 設定ファイル(.vimrc) set fenc=utf-8 set nobackup set number set noswapfile set ignorecase set smartcase set wrapscan set hlsearch set incsearch set cursorline set cursorcolumn set smartindent set wildmode=l…

bash - Bashの設定

概要 デフォルトで使用する Bash の設定。 設定(.bash_profile) # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/.local/bin:$HOME/bin ex…

bash - プロンプトを短く

概要 Bashプロンプトの文字列を短くしたい。 サンプルコード プロンプト表示Format > [{user} {dir}]$ {command} .bash_profileに追加。 export PS1='[\u \W]\$ ' コマンドから bash_profile を再読み込み $ source .bash_profile 参考 www.softel.co.jp

vim - 使いそうなコマンド

カーソル移動 機能 コマンド ファイルの先頭に移動 gg ファイルの末尾に移動 G 行の先頭に移動 0 行の末尾に移動 $ 行の順方向に一文字検索 f + {search-single-str} 繰り返す場合⇛ ; 行の逆方向に一文字検索 F + {search-single-str} 繰り返す場合⇛, ジャン…

vim - 参考サイト

参考 knowledge.sakura.ad.jp www.xmisao.com qiita.com 入門vi 第6版作者:リンダ ラム,アーノルド ロビンス出版社/メーカー: オライリー・ジャパン発売日: 2002/05/01メディア: 単行本

ターミナルエミュレーター - RLogin

参考 nanno.dip.jp forest.watch.impress.co.jp https://neat-tech.info/2013/02/27/rlogin-ssh-client-for-windows 6日間で楽しく学ぶLinuxコマンドライン入門 コマンドの基本操作を身につけよう (ネット時代の、これから始めるプログラミング(NextPublish…

windows10 - ショートカットキー

使うショートカットキー ショートカットキー 目的 alt + ← 前のフォルダを表示(履歴を戻る) alt + → 次ののフォルダを表示(履歴を進める) alt + ↑ 一つ上のフォルダを表示 alt + d アドレスバーを選択 win + b タスクトレイにフォーカス win + d デスク…

excel - countifs

参考 www.becoolusers.com できるYouTuber式 Excel 現場の教科書(「本×動画」で学ぶ新しい独習~180万回再生の実績! )作者:長内孝平出版社/メーカー: インプレス発売日: 2019/02/01メディア: 単行本(ソフトカバー)

powershell - Export-csv

sample code PS> Get-Service | Where-Object { $_.Status -match "^Run" } | Export-Csv -path "service.csv" -Encoding UTF8 -NoTypeInformation

powershell - excel

sample code # ファイルオープン $xl = New-Object -Com Excel.Application $xl.DisplayAlerts = $false $wb = $xl.Workbooks.Open(D:\xxxx\ps\myexcel.xlsx) # シートを取得 $sheet = $wb.Worksheets.Item("Sheet1") # セルの値を取得 Write-Output $sheet.…

powershell - Split-Path

sample code # ファイル名を取得 PS> Split-Path "D:\xxxx\ps\test.txt" -Leaf # test.txt # フォルダ名を取得 PS> Split-Path "D:\xxxx\ps\test.txt" -Parent # D:\xxxx\ps

powershell - .netクラスライブラリの活用

参考 www.atmarkit.co.jp

powershell - Copy-Item

sample code # ファイルをコピー PS> Copy-Item -path "test1.txt" -destination "test1.txt.bak" # フォルダをコピー PS> Copy-Item -path "mydir" -Recurse -destination "mydir.bak"

powershell - Remove-Item

sample code # ファイルを削除 Remove-Item -Path "aaa.txt" # フォルダを削除 Remove-Item -path "a1" -Recurse -Force

powershell - New-Item

sample code # ディレクトリを作成 New-Item -ItemType Directory "mydir" # 再帰的にディレクトリを作成 New-Item -ItemType Directory "a1\a2\a3" # ファイルを作成 New-Item -ItemType File "test1.txt" # ファイルを作成+内容 New-Item -ItemType File "…

powershell - Send-MailMessage

sample code $from = "xxxx@gmail.com" $to = "xxxx@gmail.com" $cc = "xxxx@gmail.com" $smtp = "smtp.gmail.com" $port = "587" $subject = "メール件名" $user = "xxxx@gmail.com" $password = "xxxxxxxxxxxxxxxxx" $pass = ConvertTo-SecureString $pass…

powershell - Test-Connection

sample code PS> Test-Connection -ComputerName localhost -Count 10

powershell - Write-Debug

参考 codezine.jp

powershell - GetLocation/SetLocation

sample code # 現在のロケーションを取得 PS> Get-Location # "d:\sandobox\ps" # 現在のロケーションに設定 PS> Set-Location "../" # "d:\sandobox"

powershell - GetDate format

sample code PS> Get-Date # 2020年2月9日 15:19:43 PS> Get-Date -Format "yyyy/MM/dd" # 2020/02/09 PS> [datetime]::Now.ToString("yyyy/MM/dd")

powershell - Test-Path

sample code # ファイルの存在確認 PS> Test-Path -path "./aaa.txt" -PathType Leaf # フォルダの存在確認 PS> Test-Path -path "./dir_aaa" -PathType Container