This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Depends on clj-http and cheshire | |
(ns com.ykode.social.fb-lite | |
(:require [clj-http.client :as client] | |
[cheshire.core :refer [parse-string]])) | |
(defn- fburl [ext] (str "https://graph.facebook.com/" ext)) | |
(defn- auth-get | |
[access-token url] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns ical.core | |
(:require | |
[om.core :as om :include-macros true] | |
[om.dom :as dom :include-macros true] | |
[sablono.core :as html :refer-macros [html]])) | |
(enable-console-print!) | |
(def weekdays ["saturday" "monday" "tuesday" "wednesday" "thursday" "friday" "sunday"]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Archive of the code for images posted to https://twitter.com/tweegeemee | |
Learn more at https://github.com/rogerallen/tweegeemee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Archive of the code for images posted to https://twitter.com/tweegeemee | |
Learn more at https://github.com/rogerallen/tweegeemee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Archive of the code for images posted to https://twitter.com/tweegeemee | |
Started Aug 30, 2015 | |
Learn more at https://github.com/rogerallen/tweegeemee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package bench; | |
import org.openjdk.jmh.annotations.*; | |
import java.lang.invoke.MethodHandle; | |
import java.lang.invoke.MethodHandles; | |
import java.lang.invoke.MethodType; | |
import java.lang.invoke.MutableCallSite; | |
import java.util.concurrent.TimeUnit; | |
import java.util.stream.IntStream; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;Compatibility layer to extend spork.util.table usage | |
;;into incanter datasets (as of 1.9.1). | |
;;Since datasets are now based on an API in clojure.core.matrix, | |
;;we can extend the API to use our table functions. This should | |
;;eliminate the trouble we've have processing incanter | |
;;datasets effeciently, since we can parse spork tables | |
;;using schemas. | |
(ns proc.dataset | |
(:require [spork.util [table :as tbl]] | |
[clojure.core.matrix.protocols :as mp] |
OlderNewer