I hereby claim:
- I am gdumitrescu on github.
- I am gdumitrescu (https://keybase.io/gdumitrescu) on keybase.
- I have a public key whose fingerprint is 9991 755F 1EDC 58A2 4C0E 2C82 4ED2 E8BB 986E 1893
To claim this, I am signing this object:
[ | |
{ | |
"userName": "concourse", | |
"repo": "archive-resource" | |
}, | |
{ | |
"userName": "concourse", | |
"repo": "atc" | |
}, | |
{ |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# get docker image name from input | |
docker_image=$1 | |
# remove local docker image | |
docker rmi $docker_image | |
# build new docker image | |
docker build . |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<div class="circle-container"> | |
<div class="circle-container-box"> | |
<div class="circle-content"> | |
<div class="circle-text">here comes the dynamic text kjhei</div> |
#!/usr/bin/env bash | |
// dependencies | |
go get github.com/tools/godep | |
// go get github.com/constabulary/gb/... | |
// testing | |
go get github.com/onsi/ginkgo/ginkgo | |
go get github.com/onsi/gomega |
#!/usr/bin/env bash | |
apm install angularjs | |
apm install api-blueprint-preview | |
apm install apiary-highlighter | |
apm install atom-beautify | |
apm install atom-jasmine | |
apm install atom-prettify | |
apm install atom-ternjs | |
apm install autocomplete |
<snippet> | |
<content><![CDATA[ | |
React.renderComponent(<$1/>, document.body); | |
]]></content> | |
<tabTrigger>rrc</tabTrigger> | |
<!-- <scope>source.js</scope> --> | |
<description>React.renderComponent</description> | |
</snippet> |
<snippet> | |
<content><![CDATA[ | |
var React = require('react'); | |
var $1 = React.createClass({ | |
mixins: [], | |
getInitialState: function() { | |
return { |
<snippet> | |
<content><![CDATA[ | |
/** @jsx React.DOM */ | |
'use strict'; | |
]]></content> | |
<tabTrigger>jsx</tabTrigger> | |
<!-- <scope>source.js</scope> --> | |
<description>@jsx React.DOM</description> | |
</snippet> |
'use strict'; | |
angular | |
.module('app', []) | |
.config(function($httpProvider) { | |
// deferring the resolution of XHR calls to the next tick | |
$httpProvider.useApplyAsync(true); | |
}) | |
.config(['$compileProvider', function($compileProvider) { | |
// disable debug info and .reloadWithDebugInfo() method |