Scientific-rationalist orientation.
- Thales
- Miletus
- ca. 624–-546 BC
- Anaximander
// Building | |
apply plugin: 'java' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
compile 'com.rabbitmq:amqp-client:5.1.0' | |
} | |
package org.weibeld.util; | |
/** | |
* Class with various static utility methods. | |
* Created by dw on 28/10/16. | |
*/ | |
public class Util { | |
private Util() {} |
#!/bin/bash | |
# | |
# Given a Unicode code point 'U' and a number 'n', print n lines for each of | |
# the Unicode code points 'U' to 'U+n', consisting of: | |
# | |
# 1. The character 'c' corresponding to 'U' | |
# 2. The Unicode code point 'U' | |
# 3. The binary code of 'c' in the terminal's current encoding | |
# 4. The hexadecimal code of 'c' in the terminal's current encoding | |
# |
#!/bin/bash | |
# | |
# Script executed automatically upon launch of an AWS EC2 Ubuntu instance. | |
# | |
# Pass this script as the "user data" to the instance launching process: | |
# | |
# - Web Console: Step 3 | |
# - CLI: aws ec2 run-instances ... --user-data "commands..." | |
# | |
# Note that all commands in this script are executed as root in /root. |
#!/bin/bash | |
# Install Docker | |
apt-get update | |
apt-get install -y docker.io | |
# Add user 'ubuntu' to group 'docker' | |
usermod -aG docker ubuntu |
Blocked: | |
- Telegram | |
- Slack | |
- Medium | |
wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | apt-key add - | |
echo "deb https://packages.cloudfoundry.org/debian stable main" | tee /etc/apt/sources.list.d/cloudfoundry-cli.list | |
apt-get -y install apt-transport-https | |
apt-get -y update | |
apt-get -y install cf-cli |