This is a SCRIPT-8 cassette.
View ch1ex1.hy
(import [bs4 [BeautifulSoup]]) | |
(setv raw-data | |
"<html><body><a href=\"http://markwatson.com\">Mark</a></body></html>") | |
(setv soup (BeautifulSoup raw-data "lxml")) | |
(setv a (.find-all soup "a")) | |
(print "a tags:" a) |
View README.md
This is a SCRIPT-8 cassette.
View README.md
This is a SCRIPT-8 cassette.
View fresh-install.sh
#!/bin/bash | |
# DESCRIPTION | |
# Installs Homebrew software. | |
# EXECUTION | |
# XCode Command Line Tools | |
xcode-select --install | |
# Homebrew |
View gist:7664301
PShape shapeOut; | |
Ellipse[] shapesOut; | |
int numShapesOut = 10; | |
float scaleSpeed = 10; | |
float createSpeed = .05; | |
float fact = 1.0; | |
float centerX; | |
float centerY; |