Skip to content

Instantly share code, notes, and snippets.

View rujmah's full-sized avatar
👨‍🚀
Looking to the future

Robin Mayfield rujmah

👨‍🚀
Looking to the future
View GitHub Profile
@rujmah
rujmah / web-servers.md
Created February 21, 2017 17:35 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
provider "heroku" {
email = "[email protected]"
api_key = "call heroku auth:token"
}
resource "heroku_app" "default" {
name = "herokutest"
region = "us"
config_vars {
@rujmah
rujmah / README.md
Last active March 8, 2018 09:16
Simple markdown note-taking bash script using Vim to Dropbox via command line

Simple Note-taking from command line

What it does:

  • Notes will appear in with ISO date prefix in directory
  • Running the command multiple times a day will re-open that days notes
  • Assumes you have a Dropbox account (or some directory) at the path below
  • Tested on Ubuntu 16.04 and 17.10

Implementation:

@rujmah
rujmah / .railsrc
Created February 19, 2018 20:32
Rails RSpec set up (Rails 5.1.5)
-d=postgresql
-T
--skip-coffee
@rujmah
rujmah / ffprobe2json_demo.md
Last active February 19, 2018 20:37
ffprobe to json
ffprobe -v quiet -show_format -show_streams -pretty -print_format json ./video_file.mp4

Will output some lovely JSON to the console. Dump to a file with > json_file.json or what-have-you.

@rujmah
rujmah / listFromJSON.js
Last active May 9, 2018 16:22
Trello: Quick list from JSON using Node
// export json from trello board
const board = require('./path/to/trelloboard.json')
for(let list of board.lists){
let listcards = board.cards.filter(c => c.idList === list.id )
console.log(list.name)
for(let card of listcards){
console.log(`\t${card.name} [${card.desc}]`)
}
}
@rujmah
rujmah / README.md
Last active January 25, 2019 09:16
AWS API Gateway that calls an single endpoint Lambda with GET

AWS API Gateway that calls an single endpoint Lambda with GET

Pertinent info

Ensure IntegrationHttpMethod is set to POST even if you want to use a GET (or whatever)

e.g.

  rootMethod:
 Type: AWS::ApiGateway::Method
@rujmah
rujmah / .gitignore
Last active December 30, 2019 09:59 — forked from octocat/.gitignore
Some common .gitignore configurations
.vscode/
tmp/
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
@rujmah
rujmah / get_aws_instances_example.js
Created September 15, 2020 15:49
Quick example of getting EC2 instance ids with JS async await
const AWS = require('aws-sdk')
AWS.config.update({region: 'eu-west-1'})
const ec2 = new AWS.EC2()
const inst = ec2.describeInstances().promise()
async function main(){
const result = await inst
@rujmah
rujmah / App.js
Last active February 22, 2022 13:53
Quick and yucky vanilla code to test CRA react app
import { useState } from "react";
const App = () => {
const [onOffStatus, setOnOffStatus] = useState(false);
return (
<div className="App" style={{ margin: "1rem" }}>
<header className="App-header">
<h1>Seriously, this is a React App</h1>
</header>
<main>
<div