MARK P. JONES
Pacific Software Research Center
Department of Computer Science and Engineering
Oregon Graduate Institute of Science and Technology
| ;;; packages.el --- elm Layer packages File for Spacemacs | |
| ;; | |
| ;; Copyright (c) 2012-2014 Sylvain Benner | |
| ;; Copyright (c) 2014-2015 Sylvain Benner & Contributors | |
| ;; | |
| ;; Author: Sylvain Benner <[email protected]> | |
| ;; URL: https://github.com/syl20bnr/spacemacs | |
| ;; | |
| ;; This file is not part of GNU Emacs. | |
| ;; |
| -- | |
| -- Hello-World of the cordova/phonegap application using Haskell. | |
| -- | |
| -- here is the screenshoot | |
| -- | |
| -- https://twitter.com/AGoCorona/status/532948528621178880 | |
| -- | |
| -- So that Haste-Haskell can be used to create hybrid smartphone applications | |
| -- | |
| -- The original cordova JavaScript hello world is installed following the instructions of this page |
| --============================== | |
| -- Send Keynote Text to Desktop Markdown File | |
| -- Writted By: Richard Dooling https://github.com/RichardDooling/ | |
| -- Based on | |
| -- Send Keynote Presenter Notes to Evernote | |
| -- Version 1.0.1 | |
| -- Written By: Ben Waldie <[email protected]> | |
| -- http://www.automatedworkflows.com | |
| -- Version 1.0.0 - Initial release |
| {-# LANGUAGE GADTs #-} | |
| module Yolo where | |
| import System.IO.Unsafe | |
| class Yolo f where | |
| yolo :: f a -> a | |
| instance Yolo Maybe where | |
| yolo (Just x) = x |
| pkgs: attrs: | |
| with pkgs; | |
| let defaultAttrs = { | |
| builder = "${bash}/bin/bash"; | |
| args = [ ./builder.sh ]; | |
| setup = ./setup.sh; | |
| baseInputs = [ gnutar gzip gnumake gcc binutils coreutils gawk gnused gnugrep patchelf findutils ]; | |
| buildInputs = []; | |
| system = builtins.currentSystem; | |
| }; |
Free in Haskell:
data Free f a = Return a
| Suspend (f (Free f a))Free in a strict language:
This is not intended to be comprehensive or authoritative, just free online resources I've found valuable while learning more about Erlang.
https://web.archive.org/web/20070429181654/http://www.sics.se/~joe/
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: