Skip to content

Instantly share code, notes, and snippets.

View kukagg's full-sized avatar
💭
one more thing…

gg kukagg

💭
one more thing…
View GitHub Profile
==========================
How Software Companies Die
==========================
- Orson Scott Card
The environment that nurtures creative programmers kills management and
marketing types - and vice versa.
Programming is the Great Game. It consumes you, body and soul. When
you're caught up in it, nothing else matters. When you emerge into
@kukagg
kukagg / autocadcolors.js
Last active June 29, 2022 16:48
AutoCAD colors index with HEX and RGB equivalents. https://github.com/kuka/autocad-colors-index
// AutoCAD 0-255 colors mapped with equivalents in HEX and RGB
// source: http://sub-atomic.com/~moses/acadcolors.html
export default [{
"aci": 0,
"hex": "#000000",
"rgb": "rgb(0,0,0)"
}, {
"aci": 1,
"hex": "#FF0000",
name HQ City website Year Founded Total Investment Amount Company Description
Tegus Chicago tegus.co 2016 $91,500,000.00 The Buy Side's Leading Primary Research Platform
Hologram Chicago hologram.io 2014 $82,353,000.00 Hologram is a cellular platform designed for the Internet of Things. Thousands of connectivity teams rely on Hologram to keep their fleets connected around the world — from Burbank to Brisbane. Hologram was founded in 2014 by Benjamin Forgan and Patrick Wilbur. Inspired by the connectivity challenges affecting food delivery startups in Singapore, Hologram's co-founders focused their efforts on removing the red tape preventing fast-growing IoT teams from launching cellular equipped fleets around the world. What started as a Kickstarter, under Hologram's old name, Konekt, has blossomed into the de facto networks IoT teams use to launch their products. In the years since Hologram was founded, the company has been a partner to leading technology pioneers around the world. Hologram made it possibl
@kukagg
kukagg / clean-indexeddb.js
Created October 13, 2021 19:02
Clean IndexedDB
indexedDB.databases().then(l => l.forEach(e => indexedDB.deleteDatabase(o.name)))
BEGIN MESSAGE.
8TeAGbrFw74uUoV PCMBJ14DD5cgbFz 5WcK1miST3BOVC9 e6kdWHMaYyKfqAI
pAw4Tha5ZbJvzUp AWvPcaPDSzfTCKq 6Xr2MZHgg6vFIct 9rVnCqpZKJw2Wy3
0gKawFlnuBy4nhr 9nlCch0DJEfSRQv q2VaY2CK8gSi05J VX63swk5anzIEpD
WFCVTK6Q1aIip2G Tk5syk9u7uYaf7V WDKX.
END MESSAGE.
@kukagg
kukagg / .vimrc
Last active February 21, 2020 03:00
call plug#begin('~/.vim/plugged')
" Editing
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'junegunn/limelight.vim'
Plug 'terryma/vim-multiple-cursors'
Plug 'jparise/vim-graphql'
Plug 'yggdroot/indentline'
@kukagg
kukagg / .tmux.conf
Last active February 20, 2020 15:52
###########################
# Configuration
###########################
# use 256 term for pretty colors
set -g terminal-overrides ',xterm-256color:Tc'
set -g default-terminal "tmux-256color"
set -as terminal-overrides ',xterm*:sitm=\E[3m'
# use true colors
@kukagg
kukagg / init.el
Last active February 20, 2020 01:43
;; packages
(setq package-enable-at-startup nil)
(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
("marmalade" . "https://marmalade-repo.org/packages/")
("melpa" . "https://melpa.org/packages/")))
(when (>= emacs-major-version 24)
(require 'package)
(add-to-list
'package-archives
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
tap "jesseduffield/lazygit/lazygit"
brew "diff-so-fancy"
brew "entr"
brew "exa"
brew "fd"
brew "fx"
#
# Sets Prezto options.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
#
# General
#