Skip to content

Instantly share code, notes, and snippets.

View chuckxD's full-sized avatar
💩
I may be slow to respond.

Chuck Schleutker chuckxD

💩
I may be slow to respond.
View GitHub Profile
@chuckxD
chuckxD / __HEY.md
Last active February 23, 2024 06:40
ffz/bttv known API end-points quick list
@chuckxD
chuckxD / Docker shell commands.sh
Created October 15, 2020 01:59 — forked from bahmutov/Docker shell commands.sh
A personal cheat sheet for running local Node project in a Docker container
# See list of docker virtual machines on the local box
$ docker-machine ls
NAME ACTIVE URL STATE URL SWARM DOCKER ERRORS
default * virtualbox Running tcp://192.168.99.100:2376 v1.9.1
# Note the host URL 192.168.99.100 - it will be used later!
# Build an image from current folder under given image name
$ docker build -t gleb/demo-app .

Introduction to tmux

Tmux is a terminal multiplexer. Using tmux we can create, access and control terminals from a single terminal. Tmux sessions can be detached, continue running in the background, and then reattached. This is extremely helpful and it is one of the coolest features of tmux. To get up and running with tmux, you need to learn some tmux commands.

Installation

For Linux

Every major distribution has tmux in their repositories, so you google them up. Below I listed the install commands for arch based and ubuntu distribution.

Keybase proof

I hereby claim:

  • I am chuckxd on github.
  • I am chuckxd (https://keybase.io/chuckxd) on keybase.
  • I have a public key ASCJ4816UBkcEG2r13v09AnhK375etymwHwqWQuu13yFiQo

To claim this, I am signing this object:

{
"basics": {
"name": "Chuck Schleutker",
"label": "Web Developer/Programmer",
"__picture": "https://secure.gravatar.com/avatar/d61fd87347e5c36c2b87265345dd9df3",
"email": "chuck.schleutker@gmail.com",
"phone": "(317) 508-4217",
"website": "",
"summary": "Hi, I'm Chuck! I'm a software engineer, web developer, and technical facilitator with over 15 years of experience. I received a B.A. in Liberal Arts and Sciences (Philosophy) and an A.S. in Computer Information Technology in 2010 but have mostly been working as a self-taught developer/designer since 1998.",
"location": {
<---
_._ _..._ .-', _.._(`))
'-. ` ' /-._.-' ',/
) \ '.
/ _ _ | \
| a a / |
\ .-. ;
'-('' ).-' ,' ;
'-; | .'
\ \ /
@chuckxD
chuckxD / base-bootstrap-ejs-view
Created June 20, 2018 18:34 — forked from ramontristani/base-bootstrap-ejs-view
EJS: Basic HTML/EJS boilerplate
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
<meta charset="utf-8" />
<title><%= title %></title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
</head>
<body>
@chuckxD
chuckxD / 0_reuse_code.js
Created September 23, 2015 14:17
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
# CLOSURES IN RUBY Paul Cantrell http://innig.net
# Email: username "cantrell", domain name "pobox.com"
# I recommend executing this file, then reading it alongside its output.
#
# Alteratively, you can give yourself a sort of Ruby test by deleting all the comments,
# then trying to guess the output of the code!
# A closure is a block of code which meets three criteria:
#