Skip to content

Instantly share code, notes, and snippets.

View aaronsmulktis's full-sized avatar
🌐
Remote Control

Smokey aaronsmulktis

🌐
Remote Control
View GitHub Profile
@aaronsmulktis
aaronsmulktis / toolbox.md
Last active August 1, 2022 19:46
Software Engineer Toolbox

Software Engineer Toolbox

All tools are listed in order of importance (to me).

Interactive Development Environment (IDE) / Text Editor

Command Line Interface (CLI) Tools

  • Homebrew (install first)
Create origin certificate on CloudFlare
(save as .crt + .key)
Order custom hostname cert on CF
update mup file with this:
"ssl": {
"certificate": "/Users/smokey/Keys/wild-field-test.crt",
@aaronsmulktis
aaronsmulktis / app.yaml
Created November 8, 2017 22:00
Discourse config on AWS
# IMPORTANT: SET A SECRET PASSWORD in Postgres for the Discourse User
# TODO: change SOME_SECRET in this template
templates:
# - "templates/sshd.template.yml"
- "templates/web.template.yml"
- "templates/web.ratelimited.template.yml"
expose:
- "80:80"
@aaronsmulktis
aaronsmulktis / discourse-on-aws.md
Last active October 26, 2018 22:09
Discourse on AWS
var walked = [];
var searchHaystack = function(haystack, needle, path, exactEquals) {
//dumb truthiness handling
exactEquals = exactEquals ? true : false;
if(typeof haystack != "object") {
console.warn("non-object haystack at " + path.join("."));
return [false, null];
@aaronsmulktis
aaronsmulktis / index.html
Created March 24, 2016 01:21
Test block - d3
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
/*css to go here*/
svg {border: 1px solid red; overflow: visible;}
.domain {
fill: none;
stroke: steelblue;
}