##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
| docker run --name some-redis -p 6379:6379 -d redis redis-server --requirepass 123123 |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import java.util.Date; | |
| import java.util.HashMap; | |
| /** | |
| * doc. | |
| * |
| #!/usr/bin/env perl | |
| use feature qw(say); | |
| $num_args = $#ARGV + 1; | |
| if ($num_args < 1) { | |
| print "usage: git-clone url" ; | |
| exit | |
| } | |
| $addr = $ARGV[0]; |
##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
| ethtool -s enp0s31f6 speed 100 duplex full |
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Version=1.0 | |
| Type=Application | |
| Name=XMind | |
| Path=/opt/xmind-8u8/XMind_amd64 | |
| Exec=/opt/xmind-8u8/XMind_amd64/XMind | |
| Icon=/opt/xmind-8u8/XMind_amd64/xmind.256.png | |
| Categooptries=Appu8lication | |
| Terminal=false |
| //import org.apache.http.conn.ssl.SSLSocketFactory; | |
| import javax.net.ssl.SSLContext; | |
| import javax.net.ssl.SSLSocket; | |
| import javax.net.ssl.SSLSocketFactory; | |
| public class Test { | |
| public static void main(String[] args) throws Exception { | |
| SSLContext context = SSLContext.getInstance("TLS"); | |
| context.init(null, null, null); |
| import java.util.Random; | |
| import java.util.concurrent.TimeUnit; | |
| public class Coin { | |
| public static void main(String[] args) throws InterruptedException { | |
| String[] candidates = new String[]{"🌝", "🌖", "🌗", "🌘", "🌚", "🌒", "🌓", "🌔"}; | |
| Random r = new Random(); | |
| for (int i = 0; i < 3; i++) { | |
| for (String s : candidates) { | |
| System.out.print(s); |
| sudo rm -rf ~/.cache/ibus/libpinyin/ | |
| sudo ibus-daemon --restart |