This is a SCRIPT-8 cassette.
This file contains 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
(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) |
This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
This file contains 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
#!/bin/bash | |
# DESCRIPTION | |
# Installs Homebrew software. | |
# EXECUTION | |
# XCode Command Line Tools | |
xcode-select --install | |
# Homebrew |
This file contains 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
PShape shapeOut; | |
Ellipse[] shapesOut; | |
int numShapesOut = 10; | |
float scaleSpeed = 10; | |
float createSpeed = .05; | |
float fact = 1.0; | |
float centerX; | |
float centerY; |