An open API service indexing awesome lists of open source software.

https://github.com/r0man/dotfiles

My Dot Files
https://github.com/r0man/dotfiles

Last synced: 9 months ago
JSON representation

My Dot Files

Awesome Lists containing this project

README

          

* Wireless
** b43 drops network access on bcm4312 network card

https://bbs.archlinux.org/viewtopic.php?pid=1253129

/etc/modprobe.d/b43.conf:

options b43 pio=1 qos=0

* Austin - ClojureScript browser-REP
** Start REPL in Chromium
#+BEGIN_SRC clojure
(cemerick.austin.repls/exec :exec-cmds ["chromium"])
(cemerick.piggieback/cljs-repl :repl-env (cemerick.austin/exec-env))
#+END_SRC
* Piggieback
** Browser REPL
#+BEGIN_SRC clojure
(require 'cljs.repl.browser)
(cemerick.piggieback/cljs-repl :repl-env (cljs.repl.browser/repl-env :port 9000))
#+END_SRC
** Node REPL
#+BEGIN_SRC clojure
(require '[cljs.repl.node :as node])
(node/run-node-nrepl)
#+END_SRC