Skip to content

Instantly share code, notes, and snippets.

View henryvoorburg's full-sized avatar

henryvoorburg

View GitHub Profile
@henryvoorburg
henryvoorburg / Command-Line-Basics.txt
Created April 29, 2020 16:34
Linux and macOS Command Line Basics
# tree navigation
pwd
cd
cd /
cd ..
ls
ls -l
# file/directory manipulation
touch
@henryvoorburg
henryvoorburg / iterm2.md
Created May 19, 2020 23:48 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
@henryvoorburg
henryvoorburg / system_replacements.md
Created May 20, 2020 00:03 — forked from squarism/system_replacements.md
Modern system utility replacements (Go / Rust or even just something new)

Interesting and Modern CLI Tools

The absolute requirement is that these must be binaries that could go into /usr/bin one day. No python, ruby or js stuff. Not that dynamic languages are bad/evil, but I think system utilities should be binaries. I also think it's interesting that people are writing replacements in Go/Rust/Other that rethink some unix legacy. Replacement doesn't mean better in all cases. I just think it's an interesting time but also a good measure of what these compiled languages can handle/tackle/address. Will we see larger and more impressive CLIs? Or will the feature sets be about the same but the quality/stability/safety be better?

It's going to be reductive to explain some of these tools in one line.

  • exa - ls replacement
  • caddy - HTTP server (better than python -m SimpleHTTPServer)
@henryvoorburg
henryvoorburg / favorite_packages.txt
Created May 20, 2020 00:04 — forked from squarism/favorite_packages.txt
Favorite VSCode Packages
- Auto Close Tag
- Babel ES6/ES7
- Color Highlight
- elm
- ESLint
- Go
- indent-rainbow
- Nord
- Prettier
- vscode-icons
@henryvoorburg
henryvoorburg / this_is_terrible.md
Created May 20, 2020 00:04 — forked from squarism/this_is_terrible.md
Best Developer In The World

Probably Best Thing You Can Do Ever™

git init yolo
cd yolo

export PS1='$FG[032]%2~\
$(git_prompt_info) \
$(gyolo 2>&1 > /dev/null) \
$FG[105]%(!.#.>)%{$reset_color%}'
@henryvoorburg
henryvoorburg / sampleREADME.md
Created June 18, 2020 04:10 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

<!--
FVCproductions HTML Signature
for Mail Applications
Created September 3, 2014
-->
<style type="text/css">
a.link{margin:0;padding:0;border:none;text-decoration:none;}
</style>
@henryvoorburg
henryvoorburg / grant-application.md
Created July 13, 2020 08:43 — forked from FrancesCoronel/grant-application.md
Sentry Open Source Grant Application 2019

1. Link to the project (it should already exist)

https://www.techqueria.org

https://github.com/techqueria/website

2. Project details: What is the project’s goal? Why is it important or interesting? Who uses it?

Techqueria is one of the largest communities of Latinx professionals in the tech industry. We build Latinx-centered spaces that revolve around career advice, technical talks, mentorship, open jobs, upcoming events/conferences, speaking opportunities, and open-source. We come from all walks of life and believe that the diversity of our community is the most reliable asset we have.

@henryvoorburg
henryvoorburg / license-badges.md
Created July 13, 2020 08:45 — forked from lukas-h/license-badges.md
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.  

Translations: (No guarantee that the translations are up-to-date)

@henryvoorburg
henryvoorburg / getip.c
Created July 13, 2020 08:49 — forked from lukas-h/getip.c
Resolve IP as hostname (unix console tool)
/*
* `getip.c'
*
* Copyright (C) 2015, 2016 Lukas Himsel <lukas.himsel@web.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,