I hereby claim:
- I am canweriotnow on github.
- I am canweriotnow (https://keybase.io/canweriotnow) on keybase.
- I have a public key ASD2o2jjO2Qzp29DGxWqfOItwtqP2TFEhVRp3khXHZ2HhAo
To claim this, I am signing this object:
#!/bin/sh | |
# This script will setup Evm (Emacs Version Manager) and Cask on | |
# Travis to use for Emacs Lisp testing. | |
# | |
# In .travis.yml, add this: | |
# | |
# - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh | |
# | |
# Emacs 24.3 is installed in the above script because Cask requires |
#include <stdio.h> | |
#include <stdlib.h> | |
#include "mpc.h" | |
#include <editline/readline.h> | |
#include <editline/history.h> | |
long eval_op(long x, char* op, long y) { | |
if (strcmp(op, "+") == 0) { return x + y; } | |
if (strcmp(op, "-") == 0) { return x - y; } |
I hereby claim:
To claim this, I am signing this object:
# Install apt-get packages: | |
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config | |
# Install chruby: | |
cd | |
wget https://github.com/downloads/postmodern/chruby/chruby-0.3.9.tar.gz | |
tar -xzvf chruby-0.3.9.tar.gz | |
cd chruby-0.2.3 | |
sudo make install |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
xAPI.md:4: MD001 Header levels should only increment by one level at a time | |
xAPI.md:189: MD001 Header levels should only increment by one level at a time | |
xAPI.md:368: MD001 Header levels should only increment by one level at a time | |
xAPI.md:440: MD001 Header levels should only increment by one level at a time | |
xAPI.md:530: MD001 Header levels should only increment by one level at a time | |
xAPI.md:671: MD001 Header levels should only increment by one level at a time | |
xAPI.md:804: MD001 Header levels should only increment by one level at a time | |
xAPI.md:817: MD001 Header levels should only increment by one level at a time | |
xAPI.md:984: MD001 Header levels should only increment by one level at a time | |
xAPI.md:1109: MD001 Header levels should only increment by one level at a time |
class HelloWorld | |
let hello: String = "Hello, " | |
new create() => | |
hello | |
fun say_hello(who: String = "World"): String => | |
hello.add(who) |
{ | |
"result_ok":true, | |
"total_count":"11", | |
"page":1, | |
"total_pages":1, | |
"results_per_page":50, | |
"data":[ | |
{ | |
"id":"1", | |
"contact_id":"100009393", |
;;; eio.el --- Support for creating Elisp exercises | |
;; Author: Jason Lewis | |
;; Created: 5 June 2015 | |
;; This file is not part of GNU Emacs. | |
;;; Commentary: | |
;; | |
;; Provides utility functions for stubbing elisp exercises |