Skip to content

Instantly share code, notes, and snippets.

View wh0am1-dev's full-sized avatar
🙃

Carlos Aguilar wh0am1-dev

🙃
View GitHub Profile
@wh0am1-dev
wh0am1-dev / .zshrc
Created July 11, 2022 15:17
wsl .zshrc
# =-==============-=
# | wh0am1.zshrc |
# =-==============-=
# env
export ZSH="/home/wh0am1/.oh-my-zsh"
export PYENV_ROOT="$HOME/.pyenv"
export PATH=$PYENV_ROOT/bin:$HOME/.yarn/bin:$HOME/bin:/usr/local/bin:$PATH
export MANPATH="/usr/local/man:$MANPATH"
@wh0am1-dev
wh0am1-dev / .vimrc
Created January 10, 2020 15:39
.vimrc
set number
set linebreak
set showbreak=+++
set textwidth=100
set showmatch
set visualbell
set hlsearch
set smartcase
set ignorecase
# jsx syntax for micro
# https://micro-editor.github.io
filetype: jsx
detect:
filename: "\\.jsx$"
rules:
- include: "javascript"
@wh0am1-dev
wh0am1-dev / esnextbin.md
Created September 23, 2019 09:53
esnextbin sketch
@wh0am1-dev
wh0am1-dev / keybindings.json
Last active November 5, 2019 20:29
CodeSandbox settings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
@wh0am1-dev
wh0am1-dev / semantic-commits.md
Last active July 16, 2019 09:13 — forked from mutewinter/commit_format.txt
Semantic commits format

semantic commits

feat: add hat wobble
^--^  ^------------^
|     |
|     +-> summary in present tense
|
+-------> type: chore, docs, feat, fix, refactor, style, or test
@wh0am1-dev
wh0am1-dev / SPPWA-IIS.md
Created July 15, 2019 08:28
SPPWA on IIS

SPPWA on IIS

Single page progressive web application on Internet Information Services.

  1. Download and install the URL Rewrite module
  2. Add this web.config to your application root directory
  3. Profit 🎉
// ==UserScript==
// @name EmuParadise Download Workaround - 1.1.1
// @version 1.1.2
// @description Replaces the download button link with a working one
// @author Eptun
// @match https://www.emuparadise.me/*/*/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @grant none
// ==/UserScript==
@wh0am1-dev
wh0am1-dev / Default (Windows).sublime-keymap
Created March 5, 2019 14:25 — forked from rotassator/Default (Windows).sublime-keymap
Sublime Text 3: Key Binding - restore Quick Switch Project keystroke
[
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" }
]
@wh0am1-dev
wh0am1-dev / generate.c
Created March 4, 2019 20:34 — forked from munificent/generate.c
A random dungeon generator that fits on a business card
#include <time.h> // Robert Nystrom
#include <stdio.h> // @munificentbob
#include <stdlib.h> // for Ginny
#define r return // 2008-2019
#define l(a, b, c, d) for (i y=a;y\
<b; y++) for (int x = c; x < d; x++)
typedef int i;const i H=40;const i W
=80;i m[40][80];i g(i x){r rand()%x;
}void cave(i s){i w=g(10)+5;i h=g(6)
+3;i t=g(W-w-2)+1;i u=g(H-h-2)+1;l(u