lookup
★lookup
name server〜♪ - ルカルカ★ナイトフィーバーcargo
めcargo
めcargo
の中のTOMLは〜いついつ出会う〜nightlyの版に〜ビルドとテストがすべった〜後ろのバージョンだぁれ- ドラゴンボールDockerバトル
- お願い♪エンジニア♪(アイドルマスターエンジニアガールズ)
- 赤城MiriaDB
- 福山MySQL
- Kuber見りあむ「めっちゃYAML」
Send
!Sync
!'static
!struct
!serde
! (ブレンドRS)
普段はLinux(Arch Linux + i3)を使っているsheeplaが、Windowsでいい感じの環境を作るためにもがいた記録です。 「キーボード操作ですべてを完結させたい」「お気に入りのフォント・キーバインドを設定して生活したい」といったこだわりを捨てられない人におすすめです。 逆に、「安定した環境を使いたい」「Windowsのデフォルトの設定を壊したくない」「細々としたカスタマイズに時間を掛けたくない」人や商用のリッチなソフトウェアを多用する人にはあまり役に立たないかもしれません。
Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.
-- check if packer is installed (~/local/share/nvim/site/pack) | |
local packer_exists = pcall(vim.cmd, [[packadd packer.nvim]]) | |
if not packer_exists then | |
if vim.fn.input("Hent packer.nvim? (y for yada)") ~= "y" then | |
return | |
end | |
local directory = string.format( | |
'%s/site/pack/packer/opt/', |
$appEvents = Get-WinEvent -LogName "Microsoft-Windows-Windows Defender/Operational" | | |
Where-Object {$_.Id -eq "1123"} | |
$allBlockedProcesses = ( | |
$appEvents | | |
ForEach-Object { | |
(([xml]$_.ToXml()).Event.EventData.Data | | |
Where-Object { | |
$_.Name -eq "Process Name" | |
}).'#text' | |
} | |