Skip to content

Instantly share code, notes, and snippets.

View ChristianWitts's full-sized avatar
🦀
Off writing HCL or YAML 🙃

Christian Witts ChristianWitts

🦀
Off writing HCL or YAML 🙃
View GitHub Profile
#!/bin/bash
#
# Copyright(c) 2018 Asit Dhal.
# Distributed under the MIT License (http://opensource.org/licenses/MIT)
#
LIGHT_BLUE='\033[1;34m'
RED='\033[0;31m'
NC='\033[0m' # No Color
INTERACTIVE=""
@ChristianWitts
ChristianWitts / fetchkeys.js
Created February 2, 2018 06:31 — forked from voxpelli/fetchkeys.js
Check the ssh key length of specified users
// Replace this list with the result of to-run-on-org-page.js
// And remember to do an "npm install"
var users = ["voxpelli"];
var https = require('https');
var fs = require('fs');
var exec = require('child_process').exec;
var tmp = require('temporary-directory')
var cuid = require('cuid');
var chalk = require('chalk');

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets