I hereby claim:
- I am forest on github.
- I am forestwashere (https://keybase.io/forestwashere) on keybase.
- I have a public key ASA92VEmL0-WgzR5XOH4tmlXyvPGgVeuWk0iqEhtzanINgo
To claim this, I am signing this object:
{ | |
"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 |
<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> |
I hereby claim:
To claim this, I am signing this object:
We subscribe to the Git Featrue Branch workflow, briefly described in that link.
In practice, it works as follows:
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}) |
module Virtus | |
class Attribute | |
# Attribute extension which nullifies blank attributes when coercion failed | |
# | |
module NullifyBlank | |
# @see [Attribute#coerce] | |
# | |
# @api public |
#!/bin/bash | |
echo "" | |
# Root check | |
if [[ "$UID" -ne 0 ]]; then | |
echo "!! This script requires root privileges. sudo ./create_koken.sh" | |
echo "" | |
exit | |
fi |