Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* | |
| * call-seq: | |
| * Rugged::Repository.new(name, options = {}) -> repository | |
| * | |
| * Open a Git repository with the given +name+ and return a +Repository+ object | |
| * representing it. | |
| * | |
| */ | |
| static VALUE rb_git_repo_new(int argc, VALUE *argv, VALUE klass) | |
| { |
| ;; Example implementation of Norvig's Spellchecker in Clojure, | |
| ;; using core.async | |
| ;; | |
| ;; There are probably some bugs in this. | |
| ;; | |
| ;; Original problem: https://github.com/ericnormand/spelling-jam | |
| ;; from Lambda Jam, Chicago, 2013: http://lambdajam.com/ | |
| ;; | |
| ;; Clojure core.async introduction: | |
| ;; http://clojure.com/blog/2013/06/28/clojure-core-async-channels.html |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- | |
| Documented at | |
| http://linux.die.net/man/5/fonts-conf | |
| To check font mapping run the command at terminal | |
| $ fc-match 'helvetica Neue' |
Eric Bidelman has documented some of the common workflows possible with headless Chrome over in https://developers.google.com/web/updates/2017/04/headless-chrome.
If you're looking at this in 2016 and beyond, I strongly recommend investigating real headless Chrome: https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md
Windows and Mac users might find using Justin Ribeiro's Docker setup useful here while full support for these platforms is being worked out.
| Check out README.md to get started editing Clojure with Emacs. |
| ;; Clojure library clj-yaml deserializes into arbitrary Java classes | |
| user=> (require '[clj-yaml.core :as yaml]) | |
| nil | |
| user=> (yaml/parse-string "!!java.io.File") | |
| #<File > |
| (defn sorted-key-list | |
| [& maps] | |
| (or | |
| (->> | |
| (mapcat keys maps) | |
| set | |
| (map str) | |
| sort | |
| (clojure.string/join ", ") | |
| not-empty) |
| # Initialize git and git-annex | |
| $ mkdir annex-gcs-test | |
| $ cd annex-gcs-test/ | |
| $ git init | |
| Initialized empty Git repository in /Users/jterrace/annex-gcs-test/.git/ | |
| $ git annex init "my machine" | |
| init my machine ok | |
| (Recording state in git...) | |
| # Set up AWS credentials |