text
text
text
package main | |
import ( | |
"crypto/des" | |
"crypto/cipher" | |
"crypto/rand" | |
"errors" | |
"io" | |
"fmt" | |
"log" |
% df -h | |
Filesystem Size Used Avail Use% Mounted on | |
/dev/dm-1 46G 14G 31G 31% / | |
udev 10M 0 10M 0% /dev | |
tmpfs 2.3G 9.2M 2.3G 1% /run | |
tmpfs 5.8G 232K 5.8G 1% /dev/shm | |
tmpfs 5.0M 4.0K 5.0M 1% /run/lock | |
tmpfs 5.8G 0 5.8G 0% /sys/fs/cgroup | |
/dev/mapper/thinkbook-home 92G 55G 33G 63% /home | |
/dev/sda1 232M 35M 181M 16% /boot |
#!/bin/bash | |
# run this script on the client | |
# inspired by https://gist.github.com/deviantintegral/0f1066650e3ea5c5ffc1 | |
TODAY=`date +"%Y%m%d"` | |
# Set the path to rsync on the remote server so it runs with sudo. | |
#RSYNC="/usr/bin/sudo /usr/bin/rsync" |
import at.iaik.unrollme.PrintMe; | |
@at.iaik.unrollme.UnrollThis | |
public class SomeTest { | |
@at.iaik.unrollme.UnrollHere("inner") | |
public static void outer() { | |
for(int i = 0; i < 16; i++) { | |
inner(i); | |
} |
String.join(", ", ee.getModifiers().stream().map(Object::toString).collect(Collectors.toList())); |