Conway's Game of Life in Erlang, in 2 hours, with 0 Erlang experience, in 20 lines of code.
1337 h4x0rs:
- @jszmajda
- @ngauthier
- @ericoestrich
- @danivovich
- @kafuchau
Conway's Game of Life in Erlang, in 2 hours, with 0 Erlang experience, in 20 lines of code.
1337 h4x0rs:
license: gpl-3.0 | |
redirect: https://observablehq.com/@mbostock/epicyclic-gearing |
input { | |
tcp { | |
type => "syslog" | |
host => "127.0.0.1" | |
port => 3514 | |
} | |
tcp { | |
type => "eventlog" | |
host => "10.1.1.2" | |
port => 3515 |
platform :ios, '6.0' | |
pod 'DCIntrospect', '~> 0.0.2' | |
pod 'Facebook-iOS-SDK', '~> 3.1.1' | |
pod 'InAppSettingsKit', '~> 1.0' | |
pod 'JSONKit', '~> 1.5pre' | |
pod 'MagicalRecord', '~> 2.0.7' | |
pod 'MKNetworkKit', '0.85.1' | |
pod 'Nimbus', '0.9.3' | |
pod 'SSKeychain', '~> 0.1.4' |
/* | |
Paul Kaplan, @ifitdidntwork | |
Create an ASCII STL file from a THREE.js mesh | |
that can be saved save from browser and 3D printed | |
-------------------------------------------------- | |
See further explanation here: | |
http://buildaweso.me/project/2013/2/25/converting-threejs-objects-to-stl-files | |
-------------------------------------------------- | |
Saving the file out of the browser is done using FileSaver.js |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
--- | |
ssl_certificates: | |
- certificate_src: secure.example.com.pem | |
certificate_dest: /etc/ssl/certs/secure.example.com.pem | |
key_src: secure.example.com.protected.key | |
key_dest: /etc/ssl/private/secure.example.com.protected.key | |
key_stripped: /etc/ssl/private/secure_example.com.key | |
key_password: "{{ssl_passphrase}}" |
# Ask for the user password | |
# Script only works if sudo caches the password for a few minutes | |
sudo true | |
# Install kernel extra's to enable docker aufs support | |
# sudo apt-get -y install linux-image-extra-$(uname -r) | |
# Add Docker PPA and install latest version | |
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 | |
# sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list" |
#!/bin/sh | |
export PATH=/usr/local/bin:$PATH; | |
yum update | |
yum install docker -y | |
service docker start | |
# Docker login notes: | |
# - For no email, just put one blank space. | |
# - Also the private repo protocol and version are needed for docker | |
# to properly setup the .dockercfg file to work with compose |
Failed to get D-Bus connection: No connection to service manager | |
-> | |
change ZeroTierOneInstaller-linux-x64 line 17 to [ -d /run/systemd/system ] | |
it works fine. |