Skip to content

Instantly share code, notes, and snippets.

View crueber's full-sized avatar
🐍

Chris Rueber crueber

🐍
  • Minneapolis, MN
View GitHub Profile
@crueber
crueber / readme.md
Last active October 29, 2023 15:31
Open Source Alternatives for Productivity and Development
@crueber
crueber / migrate.js
Last active September 29, 2023 21:33
Copy active docker container named volumes to /opt/volumes
const { execSync } = require('child_process');
const readline = require('readline');
function executeCommand(command) {
try {
const result = execSync(command, { encoding: 'utf-8' });
return result.trim();
} catch (error) {
console.error(`Error executing command: ${command}`);
process.exit(1);
@crueber
crueber / cli.md
Last active July 20, 2023 14:10
A whole bunch of modern CLI app alternatives
Classic Description Modern
  Interactive cheatsheets cheat
  Terminal file manager nnn
git Git SCM tig
lazygit
man Simplified man pages tldr (also tealdeer)
curl Make HTTP requests from CLI httpie
xh
curlie
cat View contents of a file bat
ls List directory contents lsd
exa
top Process viewer [bottom](https://gith
@crueber
crueber / commands.sh
Last active May 11, 2020 19:56
Useful Linux Commands
# Number of files in a directory.
find DIR_NAME -type f | wc -l
# 1. redo last command but as root
sudo !!
# 2. open an editor to run a command
ctrl+x+e
# 3. create a super fast ram disk
@crueber
crueber / http-status-codes.md
Last active January 25, 2019 19:58
HTTP Status Codes

1xx Codes - Informational

  • 100 Continue
  • 101 Switching Protocols
  • 102 Processing (WebDAV; RFC 2518)
  • 103 Early Hints (RFC 8297)

2xx Codes - Successes

@crueber
crueber / tmux.md
Created January 30, 2018 17:02 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@crueber
crueber / abaValidation.coffee
Last active November 8, 2017 18:57
ABA Routing Number Validation
aba_check_digit = (t) ->
7 * (t[0] + t[3] + t[6]) +
3 * (t[1] + t[4] + t[7]) +
9 * (t[2] + t[5])
aba_check_sum = (t) ->
3 * (t[0] + t[3] + t[6]) +
7 * (t[1] + t[4] + t[7]) +
1 * (t[2] + t[5] + t[8])
@crueber
crueber / css_resources.md
Last active February 24, 2017 16:51 — forked from jookyboi/css_resources.md
Useful CSS Libs

Foundations

  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.
  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.

Libraries

  • Compass - Open source CSS Authoring Framework.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
@crueber
crueber / rails_resources.md
Last active February 24, 2017 16:48 — forked from jookyboi/rails_resources.md
(outdated) Useful Rails Gems

Gems

  • Bundler - Bundler maintains a consistent environment for ruby applications. It tracks an application's code and the rubygems it needs to run, so that an application will always have the exact gems (and versions) that it needs to run.
  • rabl - General ruby templating with json, bson, xml, plist and msgpack support
  • Thin - Very fast and lightweight Ruby web server
  • Unicorn - Unicorn is an HTTP server for Rack applications designed to only serve fast clients on low-latency, high-bandwidth connections and take advantage of features in Unix/Unix-like kernels.
  • SimpleCov - SimpleCov is a code coverage analysis tool for Ruby 1.9.
  • Zeus - Zeus preloads your Rails app so that your normal development tasks such as console, server, generate, and specs/tests take less than one second.
  • [factory_girl](h