Skip to content

Instantly share code, notes, and snippets.

View BlueHotDog's full-sized avatar
🎯
Focusing

Danni Friedland BlueHotDog

🎯
Focusing
View GitHub Profile
type promiseResult('enc) = {
.
\"childProcess\": childProcess,
\"stdout\": 'enc,
\"stderr\": 'enc
};
type spawnPromiseResult = {. \"code\": float};
type childProcessPromise('t) = {. \"childProcess\": childProcess};
type fieldType =
| Numeric(string)
| Alphanumeric(string)
| Alpha(string);
type fieldData = {
name: string,
width: int,
value: option(fieldType)
};
type fieldType =
| Numeric
| Alphanumeric
| Alpha;
type fieldData('a) = {
name: string,
width: int,
position: int,
value: option('a),
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
version: '2'
services:
web:
image: justinribeiro/chrome-headless:latest
entrypoint: /opt/stickmanventures/chrome-headless/headless_shell
command: --no-sandbox --remote-debugging-port=9222 http://www.amazon.com
FROM node:6.3.0
RUN mkdir -p /home/app/code/node_modules
WORKDIR /home/app/code
ENV NODE_ENV development
RUN echo '{ "allow_root": true }' > /root/.bowerrc
COPY package.json /home/app/code/
RUN npm cache clean && \
npm install --silent --progress=false&& \
apt-get clean
COPY bower.json /home/app/code/

Keybase proof

I hereby claim:

  • I am bluehotdog on github.
  • I am bluehotdog (https://keybase.io/bluehotdog) on keybase.
  • I have a public key whose fingerprint is CD11 1909 9DCA 4B26 1866 C9BE 8136 5DA6 912B 3BF9

To claim this, I am signing this object:

@BlueHotDog
BlueHotDog / dabblet.css
Created May 28, 2012 08:04
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
.test {
width: 100px;
base_path: /public/javascripts
class_extension: _class
controller_extension: _controller
model_extension: _model
jQuery:
file: /libs/jquery/jquery.js
JMVC:
@BlueHotDog
BlueHotDog / test.js
Created November 25, 2010 13:10
test
<script type="text/javascript">
function global() { alert("global");}
GroupGifts = {};
GroupGifts.Invitations = {};
GroupGifts.test = function() {
global();
};