I hereby claim:
- I am hussfelt on github.
- I am hussfelt (https://keybase.io/hussfelt) on keybase.
- I have a public key whose fingerprint is 91F4 D3C0 B19E 314F 9030 58C8 A5B9 D303 A6A9 4D1A
To claim this, I am signing this object:
#!/usr/bin/php | |
<?php | |
error_reporting(E_ALL); | |
if (count($argv) <= 1) { | |
print("usage createMockup src_dir dst_dir images_dir\n"); | |
print("\tsrc_dir : dir where all bmml file are\n"); | |
print("\tdst_dir : dir where write all html files\n"); | |
print("\timages_dir : dir where all export mockup png are (will be copied to the \$dst_dir/images directory)\n"); | |
exit(1); | |
} |
#!/bin/sh | |
# deploy.sh | |
N="`readlink \"$1\"`" | |
mv -T "$1.stage" "$1" | |
ln -s "$N" "$1.stage" | |
rm -rf "$N" | |
cp -aH "$1" "$N" |
from fabric.api import env, run, sudo, local, put | |
def production(): | |
"""Defines production environment""" | |
env.user = "deploy" | |
env.hosts = ['example.com',] | |
env.base_dir = "/var/www" | |
env.app_name = "app" | |
env.domain_name = "app.example.com" | |
env.domain_path = "%(base_dir)s/%(domain_name)s" % { 'base_dir':env.base_dir, 'domain_name':env.domain_name } |
➜ app git:(development) git checkout master | |
/Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/spec_set.rb:92:in `materialize': Could not find rake-10.0.3 in any of the sources (Bundler::GemNotFound) | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/spec_set.rb:85:in `map!' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/spec_set.rb:85:in `materialize' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/definition.rb:114:in `specs' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/definition.rb:159:in `specs_for' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/definition.rb:148:in `requested_specs' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/environment.rb:18:in `requested_specs' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler/runtime.rb:13:in `setup' | |
from /Library/Ruby/Gems/1.8/gems/bundler-1.3.5/lib/bundler.rb:120:in `setup' |
I hereby claim:
To claim this, I am signing this object:
A Dashing widget to show a Google Visualizations Gauge on a dashboard.
Copy the google_gauge.coffee
, google_gauge.html
and google_gauge.scss
file to into /widgets/google_gauge
directory.
Add the following to the dashboard layout file:
IFrame plugin for dashing
Dashing widget to display an iframe with specified src
Create the folder iframe
in the /widgets/
directory. Put the files iframe.coffee
, iframe.html
and iframe.scss
in that folder.
Create the repository on GitHub/Bitbucket. Once created, clone the created repository to your local machine using:
git clone [email protected]:username/repository.git
CD into the repository folder and run the init command to enable to hub flow tools:
cd repo_name
import DS from 'ember-data'; | |
import Ember from 'ember'; | |
export default DS.JSONAPISerializer.extend({ | |
normalizeArrayResponse: function(store, primaryModelClass, payload, id, requestType) { | |
var data = {}, | |
extracted = [], | |
root = 'data', | |
type = Ember.String.pluralize(primaryModelClass.modelName); |
import DS from 'ember-data'; | |
import rest_serializer from 'app/mixins/serializers/rest'; | |
export default DS.RESTSerializer.extend(rest_serializer, { | |
/** | |
* [normalizeSingleResponse description] | |
* @param {[type]} store [description] | |
* @param {[type]} primaryModelClass [description] | |
* @param {[type]} payload [description] |