BOOM Analytics: Exploring Data-Centric, Declarative Programming for the Cloud
;; Auto-scrolling ============================================================== | |
(defn scroll! [el start end time] | |
(.play (goog.fx.dom.Scroll. el (clj->js start) (clj->js end) time))) | |
(defn scrolled-to-end? [el tolerance] | |
;; at-end?: element.scrollHeight - element.scrollTop === element.clientHeight | |
(> tolerance (- (.-scrollHeight el) (.-scrollTop el) (.-clientHeight el)))) | |
(defn autoscroll-list [{:keys [children class scroll?] :as opts}] |
(ns reagent-test.core | |
(:require [reagent.core :as reagent :refer [atom]] | |
[datascript :as d] | |
[cljs-uuid-utils :as uuid])) | |
(enable-console-print!) | |
(defn bind | |
([conn q] | |
(bind conn q (atom nil))) |
Many words have been written about the systemic, structural nature of oppression. These structures and systems have been documented and discussed at length. But new power structures give rise to new forms of power and control, and therefore oppression. In this paper, I will demonstrate how these new network forms give rise to these new structures, focusing specifically on sexism as a means of furthering male domination. If "the internet" is structured in such a way that "nobody knows if you're a dog," how has the internet reproduced, in modified ways, the existing patriarchal social structures we observe in meatspace?
Galloway posits that networks change the previously centralized nature of sovereignty and power. Communications technologies have enabled such structures to morph from very visible, powerful central forces into fuzzy, distributed, diffuse power. In order for such networked power to accomplish its goals, it needs to modify its tools and tactics to fit t
# this forces dpkg not to call sync() after package extraction and speeds up install | |
RUN echo "force-unsafe-io" > /etc/dpkg/dpkg.cfg.d/02apt-speedup | |
# we don't need and apt cache in a container | |
RUN echo "Acquire::http {No-Cache=True;};" > /etc/apt/apt.conf.d/no-cache |
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |