Skip to content

Instantly share code, notes, and snippets.

@aethant
aethant / SassMeister-input-HTML.html
Created April 15, 2014 19:01
Generated by SassMeister.com.
<div class='wrapper'>
<div class='header'>
<div class='menu_container'>
<div class='header_img'></div>
<div class='main_nav_btn'></div>
<div class='main_nav'>
<div class='main_nav_menu'>
<div class='main_nav_menu_item'><div class='placeholder'>SEARCH</div><form><input onfocus='this.value=""' type='text' name='search' id='search' placeholder='SEARCH1' /></form></div>
<div class='main_nav_menu_item'>Subscribe</div>
<div class='main_nav_menu_item'>History</div>
@aethant
aethant / SassMeister-input-HTML.haml
Created April 25, 2014 20:37
Generated by SassMeister.com.
.wrapper
.cartobject
.carttotalitems 100 item(s)
.cartsmallspace
.carttotalcost $0000.00
.cartviewcart
.cartviewbtn view cart
@aethant
aethant / SassMeister-input-HTML.haml
Created April 25, 2014 20:54
Generated by SassMeister.com.
.wrapper
.sidebar
.cartobject
.cartheader YOUR SELECTIONS
.cartlisting
%ul.cartulist
%li
.cartitemobject
.title a thing
.qty 1
@aethant
aethant / SassMeister-input-HTML.haml
Created April 25, 2014 22:32
Generated by SassMeister.com.
.wrapper
.section
.object.super
.message THIS IS A CALL TO ALL MY, THIS IS A CALL
.object
.sellable A1
.object
.sellable A2
.object
.sellable A3
@aethant
aethant / SassMeister-input-HTML.haml
Created July 24, 2014 22:28
Generated by SassMeister.com.
%html
%head
%body
.mailwrapper
.header
.logoside
%img{:src=>'https://www.burdiclothing.com/images/mail/crest-abbrev-red.png',:class=>'burdilogoimage'}
.detailside
.details
.detailsorder
@aethant
aethant / SassMeister-input-HTML.haml
Created July 24, 2014 22:34
Generated by SassMeister.com.
%html
%head
%body
.mailwrapper
.header
.logoside
%img{:src=>'https://www.burdiclothing.com/images/mail/crest-abbrev-red.png',:class=>'burdilogoimage'}
.detailside
.details
.detailsorder
@aethant
aethant / macsetup.sh
Created December 9, 2015 11:43 — forked from akira28/macsetup.sh
Mac Setup
#!/bin/bash
echo "Install brew"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install caskroom/cask/brew-cask
echo ""
echo "Install apps"
brew cask install --appdir="/Applications" java google-chrome skype vagrant phpstorm firefox radiant-player mysqlworkbench sequel-pro textwrangler
brew cask install --appdir="/Applications" libreoffice slack dropbox imageoptim tunnelblick virtualbox virtualbox-extension-pack the-unarchiver
brew cask install --appdir="/Applications" ccleaner android-studio purevpn cyberduck ccleaner calibre coconutbattery flash-player
brew cask install --appdir="/Applications" spectacle vlc kodi xquartz inkscape launchrocket ngrok transmission gog-galaxy origin steam

Redux Chaos Monkey

This is a proof of concept which allows you to replay system events in a random order each time to make sure your UI can tolerate variable states.

I'm not sure if this is worthy of its on open source project with additional features like changing play back time, whitelisting/blacklisting actions etc but figured I'd put this out there to see if it piques anyones interest.

See a video of this in action here: [https://www.youtube.com/watch?v=wkoukONfwmA](Video on YouTube).

@aethant
aethant / google-form-to-github-issue.md
Created April 6, 2016 15:40 — forked from bmcbride/google-form-to-github-issue.md
Create a new GitHub Issue from a Google Form submission

Wiring up a Google Form to GitHub is not that difficult with a little bit of Apps Script automation. All you need is a Google account, a GitHub account, and a web browser...

Set up your GitHub Personal Access Token

Personal access tokens provide an easy way to interact with the GitHub API without having to mess with OAuth. If you don't already have a personal access token with repo or public_repo access, visit your GitHub settings page and generate a new token.

Be sure to copy your token some place safe and keep it secure. Once generated, you will not be able to view or copy the token again.

Set up the Form & Spreadsheet

  1. Create a Google Form.
@aethant
aethant / build-zip-from-s3.php
Created May 25, 2016 16:34 — forked from jeremeamia/build-zip-from-s3.php
Create a zip from objects from S3.
<?php
// These are just the basics for how to do this. Notes:
// - Not fully tested.
// - Not suitable for production.
// - May not work well if large ammounts of data.
// - Requires AWS SDK for PHP and http://php.net/manual/en/book.zip.php
require '/path/to/sdk-or-autoloader';