Skip to content

Instantly share code, notes, and snippets.

View lukemorales's full-sized avatar
:electron:
Make the web type-safe

Luke Morales lukemorales

:electron:
Make the web type-safe
View GitHub Profile
@lukemorales
lukemorales / .gitconfig
Created June 13, 2022 02:29
Settings for git
[user]
name = Luke Morales
email = [email protected]
[core]
editor = code --wait
[alias]
ci = commit
co = checkout
cm = checkout master
cb = checkout -b
@lukemorales
lukemorales / .zshrc
Created June 13, 2022 01:49
Oh my zshell config file
# Fig pre block. Keep at the top of this file.
. "$HOME/.fig/shell/zshrc.pre.zsh"
eval $(thefuck --alias)
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/lukemorales/.oh-my-zsh"
export PATH="$PATH:/usr/local/bin"
@lukemorales
lukemorales / generate-password.ts
Last active April 9, 2022 00:00
Attempt of creating a password generator for Advent of Javascript
const createArrayOfChars = (length: number, initial: number) => {
return Array.from({ length }, (_, index) => String.fromCharCode(index + initial));
}
const numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
const symbols = [ ...createArrayOfChars(14, 33), ...createArrayOfChars(6, 58), ...createArrayOfChars(4, 123)];
const lowerCaseLetters = createArrayOfChars(26, 97);
const upperCaseLetters = lowerCaseLetters.map((letter) => letter.toUpperCase());
type CharType = 'numbers' | 'symbols' | 'upperCase' | 'lowerCase';
@lukemorales
lukemorales / settings.json
Last active February 25, 2025 11:24
My VSCode Settings
{
/**
* Better Defaults
**/
"editor.copyWithSyntaxHighlighting": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.emptySelectionClipboard": false,
"workbench.editor.enablePreview": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"window.newWindowDimensions": "inherit",
@lukemorales
lukemorales / OmniKonsole.profile
Created July 21, 2020 03:52
KDE Konsole Profile with Omni Theme
[Appearance]
ColorScheme=OmniTheme
Font=Fira Code Medium,11,-1,5,57,0,0,0,0,0
[General]
Command=/bin/zsh
Name=OmniKonsole
Parent=FALLBACK/
TerminalMargin=8
@lukemorales
lukemorales / OmniTheme.colorscheme
Created July 21, 2020 03:52
KDE Konsole Omni colorscheme
[Background]
Color=25,22,34
[BackgroundFaint]
Color=77,77,77
[BackgroundIntense]
Color=25,22,34
[Color0]
@lukemorales
lukemorales / settings.json
Created June 5, 2020 19:17
Windows Terminal Settings with Omni Theme
// This file was initially generated by Windows Terminal 1.0.1401.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',