Mind expanding programming languages
- C
- Common Lisp (via LISP)
- Dedalus (via Datalog)
Mind expanding programming languages
| import requests | |
| import urllib | |
| import requests | |
| import json | |
| import random | |
| """ | |
| here is a wrapper for the *unreleased* electric objects API | |
| Built by Harper Reed ([email protected]) - @harper |
Leave suggestions in the comments below
| /* objects/_card.scss */ | |
| .card { | |
| padding: round($u-baseline / 2); | |
| background-color: #fff; | |
| border: 1px solid rgba(color(black), .1); | |
| box-shadow: 0 1px 2px rgba(color(black), .1); | |
| border-radius: 3px; | |
| } |
| minutes.html = "?" | |
| minutes.style = | |
| fontFamily: "Futura-CondensedExtraBold" | |
| fontSize: "120px" | |
| lineHeight: "200px" | |
| textAlign: "center" | |
| color: "black" |
| // In your mixin file | |
| =retina | |
| @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx), (min-resolution: 192dpi) | |
| @content | |
| // Call this mixin | |
| .something | |
| +retina | |
| something: something |
| // Weights | |
| $hairline-weight: 100; | |
| $thin-weight: 200; | |
| $light-weight: 300; | |
| $normal-weight: 400; | |
| $medium-weight: 500; | |
| $semibold-weight: 600; | |
| $bold-weight: 700; | |
| $xbold-weight: 800; | |
| $black-weight: 900; |
| // ==UserScript== | |
| // @include http://chat.urbit.org/ | |
| // ==/UserScript== | |
| $.getScript("https://cdn.rawgit.com/boronine/husl/v2.0.0/husl.min.js"); | |
| colorMap = {}; memo={}; $('.hl').contents().unwrap(); | |
| getColor = function (s) { | |
| var hash = s.split("").reduce(function (a, b) { | |
| a = ((a << 5) - a) + b.charCodeAt(0); | |
| return a & a | |
| }, 0); |