Skip to content

Instantly share code, notes, and snippets.

@sheedy
sheedy / emotions.txt
Last active March 18, 2021 20:24
Emotions
scared
afraid
love
loved
hate
hated
desperate
worried
doubtful
anxious
@sheedy
sheedy / monorepo.md
Created August 23, 2020 21:12 — forked from dev-dafab/monorepo.md
monorepo

Javascript

  • Init a Javascript/typescript/nodejs monorepo
npm install -g json
yarn config set workspaces-experimental true
mkdir -p monorepo/packages && cd monorepo && yarn init -y

# Config package.json

This recipe describes the classes, controllers, and jobs used by Standard Notes to build our own custom-fit Mailchimp replacement.

With the parts here, you should be able to put together your own email campaign system directly in your Rails app, removing the need to use an expensive online newsletter service.

@sheedy
sheedy / keybase.md
Created January 29, 2017 05:40
Keybase

Keybase proof

I hereby claim:

  • I am sheedy on github.
  • I am sheedy (https://keybase.io/sheedy) on keybase.
  • I have a public key ASB3Rk203wQjIwM7YeRL3WTFGofMUnh0WGUZSGrmg3U6wQo

To claim this, I am signing this object:

@sheedy
sheedy / five_minutes.yml
Created August 27, 2016 06:02 — forked from ryane/five_minutes.yml
five_minutes.yml
---
- hosts: all
vars:
UBUNTU_COMMON_ROOT_PASSWORD: 'xxxxx'
UBUNTU_COMMON_DEPLOY_PASSWORD: 'xxxxx'
UBUNTU_COMMON_LOGWATCH_EMAIL: user@example.com
ubuntu_common_deploy_user_name: deploy
ubuntu_common_deploy_public_keys:
- ~/.ssh/id_rsa.pub
#1B2B34,#4F5B66,#5FB3B3,#ffffff,#4F5B66,#FFFFFF,#5FB3B3,#EC5f67
var Module = (function () {
var _privateMethod = function () {
// private stuff
};
var publicMethod = function () {
_privateMethod();
};
@sheedy
sheedy / app.js
Created November 4, 2015 14:22
Example AngularJS App
var app = angular.module('app', ['ngAnimate', 'fx.animations', 'ui.bootstrap', 'angularytics']);
app.config(function(AngularyticsProvider){
AngularyticsProvider.setEventHandlers(['GoogleUniversal']);
})
.run(function(Angularytics){
Angularytics.init();
});
app.controller('MainController', ['$scope', '$timeout', '$q', function($scope, $timeout, $q){
@sheedy
sheedy / SassMeister-input.scss
Created October 24, 2015 05:22
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
@mixin am($args) {
@if length($args) == 1 {
[am-#{$args}] {
@content;
}
@sheedy
sheedy / default-ux-prototype.sublime-project
Created September 24, 2015 03:02
default sublime text project file
{
"folders":
[
{
"path": ".",
"folder_exclude_patterns": [
".git",
"node_modules",
"vendor",
"bower_components",