https://github.com/r0man/dotfiles
My Dot Files
https://github.com/r0man/dotfiles
Last synced: 9 months ago
JSON representation
My Dot Files
- Host: GitHub
- URL: https://github.com/r0man/dotfiles
- Owner: r0man
- Created: 2009-03-26T11:58:35.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2022-02-01T18:43:32.000Z (almost 4 years ago)
- Last Synced: 2025-03-23T20:43:43.528Z (10 months ago)
- Language: Shell
- Homepage:
- Size: 1.68 MB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- Funding: .github/FUNDING.yml
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