Skip to content

Instantly share code, notes, and snippets.

View trustdan's full-sized avatar

CrimeFog trustdan

View GitHub Profile
@trustdan
trustdan / .ideavimrc
Last active April 7, 2024 18:47 — forked from johnnymillergh/.ideavimrc
Vim
" IdeaVim Wiki https://github.com/JetBrains/ideavim/wiki
" Find more examples here: https://jb.gg/share-ideavimrc
" The Essential IdeaVim Remaps https://towardsdatascience.com/the-essential-ideavim-remaps-291d4cd3971b
let mapleader=" "
""" Common settings
set showmode
set scrolloff=5
" Do incremental searching.
@trustdan
trustdan / gist:5fe46aa9f67f6ef990d6919e03337576
Created March 19, 2024 15:21
Google Apps script to list all subfolders and filenames inside of a given Google Drive folder
function listFilesInFolder() {
var folderName = "your folder name here"; // Replace with the name of your folder
var folderId = "xyxyxyxyxyxyxyxyxyxyxyxyx-xyxyxyx (Replace everything in quotes here with string at end of folder URL)";
var folder = DriveApp.getFolderById(folderId);
if (folder) {
var output = [];
listFiles(folder, output);
var doc = DocumentApp.create('Folder Contents - ' + folderName);
@koonix
koonix / ssh-config
Last active March 9, 2023 22:05
example ssh config (~/.ssh/config)
AddKeysToAgent yes
Host github.com
IdentityFile ~/.ssh/keys/github
Host aur.archlinux.org
IdentityFile ~/.ssh/keys/aur
User aur
Host desktop.local
Agency Name % of Prime Contracts Awarded to New Contractor
All 6.5%
National Park Service [DOI] 20.1%
National Oceanic and Atmospheric Administration [DOC] 18.3%
Bureau of Land Management [DOI] 16.9%
Office of Acquisition Management [DOS] 13.6%
Forest Service [USDA] 13.4%
U.S. Consulates and Embassies [DOS] 11.9%
Offices Boards and Divisions [DOJ] 11.4%
Centers for Disease Control and Prevention [HHS] 11.3%
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 9.
Agency,Prime Contract Small Business Goals,Prime Small Disadvantaged Business Goal,Prime Service- Disabled Veteran- Owned Small Business Goal,Prime Women Owned Small Business Goal,Prime HUBZone Small Business Goal,Subcontract Small Business Goals,Subcontract Small Disadvantaged Business Goal,Subcontract Service-Disabled Veteran-Owned Small Business Goal,Subcontract Women Owned Small Business Goal,Subcontract HUBZone Small Business Goal
Small Business Administration,65.0%,55.0%,3.0%,5.0%,3.0%,39.0%,5.0%,3.0%,5.0%,3.0%
"Agriculture, Department Of",47.0%,21.5%,3.0%,5.0%,3.0%,21.0%,5.0%,3.0%,5.0%,3.0%
"Interior, Department Of The",45.0%,28.0%,3.0%,5.0%,3.0%,44.0%,5.0%,3.0%,5.0%,3.0%
Office Of Personnel Management,42.0%,29.3%,3.0%,5.0%,3.0%,25.0%,5.0%,3.0%,5.0%,3.0%
Nuclear Regulatory Commission,40.2%,27.0%,3.0%,5.0%,3.0%,40.0%,5.0%,3.0%,5.0%,3.0%
Environmental Protection Agency,39.5%,17.8%,3.0%,5.0%,3.0%,56.0%,5.0%,3.0%,5.0%,3.0%
"Commerce, Department Of",39.0%,19.0%,3.0%,5.0%,3.0%,30.0%,5.0%,3.0%,5.0%,3.0%
"Trea

Arch Linux ARM on Crostini

Screenshot

I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.

0. Before we begin

@ivan
ivan / discord_styles.js
Last active March 7, 2025 17:14
Userscript to fix Discord styles and replace server icons in the sidebar with text labels
// ==UserScript==
// @name Discord: Fix styles
// @namespace discord_styles
// @include *://discord.com/*
// @version 1
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
@bonniss
bonniss / github-search-cheatsheet.md
Last active April 9, 2025 18:54
Github search cheatsheet from official docs.

Github Search Cheat Sheet

GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.

For more information, visit our search help section.

Basic search

# Luke's config for the Zoomer Shell
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
@Jabarabo
Jabarabo / githubpull.md
Last active April 23, 2025 14:31
Gist of a stolen gist