Setup some env vars
How to create a typed env file.
How to manage .env files
| // -------------------------------------------------------- | |
| // KEY-COMBOS | |
| // | |
| // These are the double key presses | |
| // Two keys pressed at the same time to produce one | |
| // Getting the CMD CTRL keys under your finger tips | |
| /* | |
| |----------------+ | |
| | *SCMD | *SCMD | | 
| #!/usr/bin/env bash | |
| # Getting tired of not knowing which npm command to run | |
| # Well this is the answer | |
| # It does use fzf. | |
| # First off, this script allow us to just type : run | |
| # Then you can just filter by command | |
| # I was using ntl, but it is/was super slow. | |
| # jq is another thing you might have to install | 
| // Copyright 2022 Victor Lucachi (@victorlucachi) | |
| // SPDX-License-Identifier: GPL-2.0-or-later | |
| #pragma once | |
| #define COMBO_TERM 25 | |
| #define COMBO_MUST_HOLD_MODS | |
| #define COMBO_HOLD_TERM 175 | |
| #undef TAPPING_TERM | |
| #define TAPPING_TERM 200 | |
| #define RETRO_TAPPING | 
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Example", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeExecutable": "node", | |
| "runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"], | |
| "args": ["src/index.ts", "--example", "hello"], | 
| import { Component, AfterViewInit, ElementRef, ViewChild } from '@angular/core'; | |
| @Component({ | |
| selector: 'my-app', | |
| templateUrl: './app.component.html', | |
| styleUrls: [ './app.component.css' ] | |
| }) | |
| export class AppComponent implements AfterViewInit { | |
| name = 'Angular 8 by Example: ElementRef'; | 
| function traverse(arr, func) { | |
| _.forEach(arr, function(obj) { | |
| var keys = Object.keys(obj) | |
| _.forEach(keys,function (key) { | |
| if (_.isArray(obj[key])) { | |
| traverse(obj[key], func) | |
| } | |
| func(key, obj); | |
| }) | |
| }); | 
| import os | |
| clear = lambda: os.system('cls') | |
| worldList = [(3,3),(3,4),(3,2),(2,2),(4,3),(4,4),(4,5),(5,5)] | |
| friendList = [(-1,-1),(0,-1),(1,-1),(-1,0),(1,0),(-1,1),(0,1),(1,1)] | |
| def printWorld(x, y, cellAlive): | |
| if ( cellAlive ): |