Tested: 6th March 2019
Download rom here: https://brew.sh/ `
Tested: 6th March 2019
Download rom here: https://brew.sh/ `
So I built a dummy Rails-plugin gem...
rails plugin new foo --skip-bundle -O --full
and filled in my .gemspec
as below, including the line
s.add_dependency "rails-assets-sugar"
and added
#!/bin/bash | |
# from here: http://www.codingsteps.com/install-redis-2-6-on-amazon-ec2-linux-ami-or-centos/ | |
# and here: https://raw.github.com/gist/257849/9f1e627e0b7dbe68882fa2b7bdb1b2b263522004/redis-server | |
############################################### | |
# To use: | |
# wget https://gist.githubusercontent.com/four43/e00d01ca084c5972f229/raw/install-redis.sh | |
# chmod 777 install-redis.sh | |
# ./install-redis.sh | |
############################################### | |
echo "*****************************************" |
<!doctype html> | |
<html lang="en" data-framework="react"> | |
<head> | |
<meta charset="utf-8"> | |
<title>React • TodoMVC</title> | |
<link rel="stylesheet" href="node_modules/todomvc-common/base.css"> | |
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css"> | |
</head> | |
<body> | |
<section class="todoapp" id="content"> |
I hereby claim:
To claim this, I am signing this object:
case class User(id: Long, name: String) | |
class Work { /* ... */ } | |
class Result { /* --- */ } | |
case class WorkToBeDone(user: User, work: Work) | |
case class WorkIsDone(user: User, result: Result) | |
class Worker extends Actor { /* ... */ } | |
class BadWorkerCoordinator extends Actor { |
#!/usr/bin/env ruby | |
HELP = <<EOS | |
Freshbridge helps you to create an invoice with items from a Pivotal Tracker Project. | |
Just to avoid mess your stuff - this script don't create invoices - just update an existent invoice. | |
DEPENDENCIES: | |
- freshbooks | |
- HTTParty | |
EOS |
# Variation on Hashrocket's script for managing the git process | |
# as documented here: http://reinh.com/blog/2008/08/27/hack-and-and-ship.html | |
# Create shell scripts out of each of these, put them in your path (~/bin for example) | |
# chmod 755 them and use like this: | |
# | |
# This version of hack is totally different than Hackrockets. I feel that hack implies | |
# that you are getting started, not finishing up. sink is Hashrockets hack. | |
# | |
# $ hack branch_name | |
# Test and Implement until done |