Skip to content

Instantly share code, notes, and snippets.

つぶやき

  • lookuplookup name server〜♪ - ルカルカ★ナイトフィーバー
  • cargocargocargoの中のTOMLは〜いついつ出会う〜nightlyの版に〜ビルドとテストがすべった〜後ろのバージョンだぁれ
  • ドラゴンボールDockerバトル
  • お願い♪エンジニア♪(アイドルマスターエンジニアガールズ)
  • 赤城MiriaDB
  • 福山MySQL
  • Kuber見りあむ「めっちゃYAML」
  • Send! Sync! 'static! struct! serde! (ブレンドRS)
@sheepla
sheepla / LinuxユーザーのためのWindowsカスタマイズガイド.md
Last active January 31, 2025 17:24
LinuxユーザーのためのWindowsカスタマイズガイド

LinuxユーザーのためのWindowsのおすすめツール・アプリケーション+個人的なカスタマイズガイド

これはなに?

普段はLinux(Arch Linux + i3)を使っているsheeplaが、Windowsでいい感じの環境を作るためにもがいた記録です。 「キーボード操作ですべてを完結させたい」「お気に入りのフォント・キーバインドを設定して生活したい」といったこだわりを捨てられない人におすすめです。 逆に、「安定した環境を使いたい」「Windowsのデフォルトの設定を壊したくない」「細々としたカスタマイズに時間を掛けたくない」人や商用のリッチなソフトウェアを多用する人にはあまり役に立たないかもしれません。

ターミナル

@sts10
sts10 / rust-command-line-utilities.markdown
Last active April 30, 2025 14:31
A curated list of command-line utilities written in Rust

A curated list of command-line utilities written in Rust

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.

  • atuin: "Magical shell history"
  • bandwhich: Terminal bandwidth utilization tool
@salkin-mada
salkin-mada / plugins.lua
Created October 26, 2020 11:54
using packer.nvim
-- 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/',
@gschizas
gschizas / AddApplicationToControlledFolder.ps1
Last active February 24, 2025 13:11
Allow all blocked apps to Windows Defender's Controlled folder access (interactively)
$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'
} |