These notes are based upon the steps provided here:
The notes in this Gist were created due to multiple attempts at installing Open Genera on different platforms that required more steps not inlcuded in the source notes above.
These notes are based upon the steps provided here:
The notes in this Gist were created due to multiple attempts at installing Open Genera on different platforms that required more steps not inlcuded in the source notes above.
#!/usr/bin/env bash | |
VERSION=4.0.1 | |
SCRIPT=`basename "$0"` | |
APPNAME="My App" | |
APPICONS="/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/GenericApplicationIcon.icns" | |
OSX_VERSION=`sw_vers -productVersion` | |
PWD=`pwd` | |
function usage { |
(ns pubsub-with-callbacks | |
"Adapted from Timothy Baldridge's 2013 core.async examples: | |
* https://raw.githubusercontent.com/halgari/clojure-conj-2013-core.async-examples/master/src/clojure_conj_talk/core.clj" | |
(:require [clojure.core.async :as async])) | |
(def pub-channel (async/chan 1)) | |
(def publisher (async/pub pub-channel :tag)) | |
(def print-channel (async/chan 1)) | |
(defn run-print-channel |
# I made/assembled this to use in a response to Danny Mo in one of the | |
# final homework assignments for Bass 101 Performance, with Berklee | |
# Online -- preserved here for posterity (and for bassists to use!) | |
********** *********** | |
*************** ..,,,,,.. **************** | |
************** .,;;;;;;;;;;;;;;,. ************** | |
************* ,;;;' ** ** `;;;;, ***** ,, *** |
Listing queues ... | |
hipri 5 | |
lopri 0 | |
midpri 0 | |
...done. |
from twisted.internet import defer, reactor | |
from twisted.web.client import getPage | |
def listCallback(results): | |
print results | |
def finish(ign): | |
reactor.stop() | |
def test(): |
$ git clone https://github.com/orthecreedence/cl-async.git | |
$ cd cl-async | |
$ tar cvzf libevent2.tgz ./libevent2 | |
$ start-sbcl | |
* (require 'asdf-install) | |
("ASDF-INSTALL") | |
* (asdf-install:install "libevent2.tgz") | |
Install where? | |
1) System-wide install: |
Prelude> ((+) 1 2) | |
3 | |
Prelude> ((+) 1 2 3 4 5 6) | |
<interactive>:3:2: | |
No instance for (Num (a0 -> a1 -> a2 -> a3 -> t0)) | |
arising from a use of `+' | |
Possible fix: | |
add an instance declaration for (Num (a0 -> a1 -> a2 -> a3 -> t0)) | |
In the expression: ((+) 1 2 3 4 5 6) |
$ git clone https://github.com/oubiwann/linear-regression-tutorial.git | |
$ cd linear-regression-tutorial | |
$ make |