Skip to content

Instantly share code, notes, and snippets.

@forest
forest / keybindings.json
Created August 13, 2018 17:19
Running Elixir Tests in Visual Studio Code/ElixirLS
{
"key": "alt+t",
"command": "workbench.action.tasks.runTask",
"args": "mix test"
}
Verifying my Blockstack ID is secured with the address 1QDBnDdmr45qQB1DCqm9qKriQzPvBpKSZj https://explorer.blockstack.org/address/1QDBnDdmr45qQB1DCqm9qKriQzPvBpKSZj
export class GameActions {
constructor() { }
makeChoice() {
var result = this.getRandomInt(1,3);
switch (result) {
case 1: // rock
return { type: 'GAME_ROCK' };
case 2: // paper
@forest
forest / app.html
Created October 31, 2017 17:47 — forked from freshcutdevelopment/app.html
Aurelia Gist - RequireJS, Bootstrap, Fontawesome
<template>
<h1>${message}</h1>
</template>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GistRun</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Hello world!</h1>
<script src="script.js"></script>

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@forest
forest / git-workflow.md
Created February 22, 2016 18:15
Git Feature Branch Workflow

We subscribe to the Git Featrue Branch workflow, briefly described in that link.

In practice, it works as follows:

FEATURE DEVELOPMENT

Steps to Follow:

  1. Start with an updated local development branch -- by checking out the dev branch and pulling changes:
    git checkout development
    git pull origin development
diff --git i/lib/virtus/dirty_attribute.rb w/lib/virtus/dirty_attribute.rb
index 3854a36..13c20a3 100644
--- i/lib/virtus/dirty_attribute.rb
+++ w/lib/virtus/dirty_attribute.rb
@@ -16,7 +16,7 @@ module Virtus
def _create_writer_with_dirty_tracking(name)
class_eval <<-RUBY, __FILE__, __LINE__ + 1
def #{name}=(new_regular_object)
- prev_object = #{name}
+ prev_object = instance_variable_get(:@#{name})
@forest
forest / nullify_blank.rb
Created February 13, 2016 21:15
nullify_blank.rb
module Virtus
class Attribute
# Attribute extension which nullifies blank attributes when coercion failed
#
module NullifyBlank
# @see [Attribute#coerce]
#
# @api public
@forest
forest / create_koken.sh
Last active January 18, 2016 20:54 — forked from bradleyboy/create_koken.sh
Docker script for Koken
#!/bin/bash
echo ""
# Root check
if [[ "$UID" -ne 0 ]]; then
echo "!! This script requires root privileges. sudo ./create_koken.sh"
echo ""
exit
fi