Skip to content

Instantly share code, notes, and snippets.

@o9-9
o9-9 / .bash_profile
Last active July 8, 2025 17:50 — forked from prabirshrestha/.bash_profile
my terminal settings for windows
# curl -Lk https://gist.githubusercontent.com/o9-9/ebdd1fed91165d2fbaf6ef517afd7ffa/raw/.bash_profile -o ~/.bash_profile
[[ -s ~/.nvm/nvm.sh ]] && . ~/.nvm/nvm.sh # This loads NVM
export PATH="$HOME/.cargo/bin:$HOME/go/bin:$HOME/Library/Python/3.7/bin:$PATH"
export PATH="$HOME/.config/nvim/plugins/vim-themis/bin:$PATH"
stty -ixon
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
@o9-9
o9-9 / all_email_provider_domains.txt
Created May 12, 2025 18:59 — forked from ammarshah/all_email_provider_domains.txt
A list of all email provider domains (free, paid, blacklist etc). Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
0-mail.com
007addict.com
020.co.uk
027168.com
0815.ru
0815.su
0clickemail.com
0sg.net
0wnd.net
0wnd.org
@o9-9
o9-9 / -configs
Created May 12, 2025 17:48 — forked from hiimog/-configs
Personal configurations for common tools
# Collection of configuration files for random things
- gitconfig
- pwsh git aliases
- init.lua for neovim
- helix config
- base powershell profile
- setup script for win 11
- windows terminal
- duplicati
@o9-9
o9-9 / !machine-setup.scripts.md
Created May 10, 2025 18:18
Machine setup scripts

Machine setup scripts

Idempotent scripts I use to set up my machines.

Windows

iwr -useb https://scripts.scowalt.com/setup/win.ps1 | iex
@o9-9
o9-9 / install-vmware-player-with-vagrant.ps1
Created May 10, 2025 18:11 — forked from 1eedaegon/install-vmware-player-with-vagrant.ps1
Install vagrant with vmware for windows 11
# 1. Download and install go
https://golang.org/doc/install
# 2. Download and install VMware workstation player
https://www.vmware.com/products/workstation-player.html
# 3. Download and install vagrant
https://www.vagrantup.com/downloads
# 4. Download vagrant vmware utility
@o9-9
o9-9 / README.md
Created May 9, 2025 07:46 — forked from JamesMessinger/README.md
VSCode GitHub Markdown Theme

GitHub Markdown Theme for Visual Studio Code

This CSS stylesheet allows you to preview markdown files in VSCode using GitHub's mardown theme. This CSS was taken directly from the official GitHub Markdown repo. I replaced their top-level .markdown-body class with the body tag so it would work in VSCode, and added styling for the html tag to match GitHub's fixed-width container.

Instructions

  1. Copy the CSS file to your computer
    Copy the github-markdown.css file below to your computer. You can put it anywhere you want, but I chose to put it in the same folder as my VSCode settings file.

  2. Edit your VSCode settings
    If you want to use this theme for all of your projects, then edit your User Settings file. If you just want to use this them

@o9-9
o9-9 / MachineSetup.ps1
Created May 8, 2025 23:04 — forked from raelyard/MachineSetup.ps1
New Dev Machine Script
# to execute:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
# Install-BoxstarterPackage -PackageName https://gist.githubusercontent.com/raelyard/6783972a17ba1bc14e83/raw/ -DisableReboots
Disable-MicrosoftUpdate
Disable-UAC
choco feature enable -n=allowGlobalConfirmation
powercfg /change standby-timeout-ac 0
@o9-9
o9-9 / shell-setup.ps1
Created April 29, 2025 23:18 — forked from mikepruett3/shell-setup.ps1
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018
@o9-9
o9-9 / cheatsheet.ps1
Created April 26, 2025 22:41 — forked from pcgeek86/cheatsheet.ps1
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
@o9-9
o9-9 / ohmyposhv3-v2.json
Created April 25, 2025 05:12 — forked from shanselman/ohmyposhv3-v2.json
ohmyposhv3-v2
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,