Skip to content

Instantly share code, notes, and snippets.

View sjschmidt44's full-sized avatar

Scott Schmidt sjschmidt44

  • Slack
  • Seattle, WA
View GitHub Profile
from aws_cdk import (
core,
aws_ec2 as ec2,
aws_autoscaling as asg,
aws_elasticloadbalancingv2 as elb,
aws_sns as sns,
aws_iam as iam,
# aws_s3 as s3,
)
import os
@sjschmidt44
sjschmidt44 / main.js
Created September 27, 2017 00:39
Tim's Reddit Search
// import './styles/main.scss'
import React from 'react';
import ReactDom from 'react-dom';
import superagent from 'superagent';
const API_URL = 'http://www.reddit.com/r';
class App extends React.Component {
constructor(props) {
'use strict'
const Node = require('./node')
module.exports = class {
constructor() {
this.head = null
this.tail = null
}
@sjschmidt44
sjschmidt44 / org-clone.sh
Created February 28, 2017 22:24
cURL command for cloning a GitHub Org
export ORG_NAME=''
curl "https://api.github.com/users/$ORG_NAME/repos?per_page=1000" | grep -o 'git@[^"]*' | xargs -L1 git clone