22%
04.08.2020
] are impressive, although Node.js, Ruby, Golang, Java, PHP, and other languages can be expected to achieve similar results.
Listing 1
Python Minify Results
from ubuntu:14.04 - 438MB => 16.8MB
22%
23.03.2022
14 14 0 100% /snap/gtk2-common-themes/13
/dev/loop10 24054 24054 0 100% /snap/p7zip-desktop/220
/dev/loop12 65095 65095 0 100% /snap/gtk-common-themes/1519
/dev/loop13
22%
07.10.2014
/lib/sheepdog
root 582 581 0 13:13 ? 12:00:00 AM sheep -p 7000 /var/lib/sheepdog
# grep sheep /proc/mounts
/dev/sdb1 /var/lib/sheepdog ext4 rw,relatime,data=ordered 0 0
# grep sheep /etc/fstab
/dev
22%
30.11.2020
"conditions": [
05 {
06 "type": "RuntimeReady",
07 "status": true,
08 "reason": "",
09 "message": ""
10 },
11 {
12 "type": "NetworkReady",
13
22%
07.06.2019
this script, please let me know, preferably in Python
06 # hanscees@AT@hanscees.com
07 # modified from https://gist.github.com/cirocosta/17ea17be7ac11594cb0f290b0a3ac0d1x
08
09 set -o errexit
10
11 main() {
12
22%
13.02.2017
to the needs of an application. After all, the standard libraries in Java 8 weigh in at around 60MB and 20,000 classes. They not only need space on the hard drive, but the computer also needs to load them
22%
16.10.2012
($ssh, '/sbin/ifconfig');
07 stream_set_blocking($stream, true);
08
09 $response = '';
10 while($buffer = fread($stream, 4096)) {
11 $response .= $buffer;
12 }
13
14 fclose($stream);
15 echo $response;
16
17
22%
25.03.2020
_DATA=$1
06
07 # This is the Event Data
08 echo $EVENT_DATA
09
10 # Example of command usage
11 EVENT_JSON=$(echo $EVENT_DATA | jq .)
12
13 # Example of AWS command that's output will show up
22%
05.12.2016
Version: v1
02 kind: Pod
03 metadata:
04 name: nginx
05 spec:
06 containers:
07 - name: nginx
08 image: nginx
09 ports:
10 - containerPort: 80
A replication controller [12], however
22%
03.12.2015
(msg.payload))
07
08 mqtt = paho.Client()
09 mqtt.on_message = on_message
10
11 mqtt.connect("localhost", 1883, 60)
12 mqtt.subscribe("linux/+", 0)
13
14 mqtt.loop_forever()
The client now connects