目的是实现远程对2416的管理配置和文件拷贝。
一 首先下载三个文件:openssh-4.6p1 openssl-0.9.8d zlib-1.2.3
由于网络原因,源码未能从官网下载到,所以google下载的,推荐个国内google:(不知到能用多久)
https://www.gotosearch.info/
二 编译配置
1 编译zli...
分类:
其他好文 时间:
2015-04-24 10:35:25
阅读次数:
255
判断合法数字,之前好像在哪里看到过这题,记得当时还写了好久,反正各种改,今天看到了大神的解法(https://github.com/fuwutu/LeetCode/blob/master/Valid%20Number.cpp),用有限状态机,非常简洁,不需要复杂的各种判断!先枚举一下各种合法的输入情...
分类:
其他好文 时间:
2015-04-24 10:30:20
阅读次数:
162
第一步:upgrade dtc comiler ro enable SPI
wget -c https://raw.githubusercontent.com/RobertCNelson/tools/master/pkgs/dtc.sh
chmod +x dtc.sh
./dtc.sh
参考网址:https://learn.adafruit.com/introduction-t...
分类:
编程语言 时间:
2015-04-24 09:11:09
阅读次数:
165
题目链接
https://icpcarchive.ecs.baylor.edu/external/68/6802.pdf
图的标号和二维数组的不太一样,顺时针转90度就舒服多了
#include
#include
using namespace std;
int vis[100][100];
int start_x, start_y;
int final_x, final_y;
int di...
分类:
其他好文 时间:
2015-04-24 09:06:08
阅读次数:
129
题目链接
https://icpcarchive.ecs.baylor.edu/external/68/6800.pdf
bellman-ford照模板打了一段,能够找到负权回路,问题就是判断0点在不在负权回路中了,于是写了个记忆化dfs。
#include
#include
#include
#include
#include
using namespace std;
#de...
分类:
其他好文 时间:
2015-04-24 09:05:46
阅读次数:
156
题目链接
https://icpcarchive.ecs.baylor.edu/external/68/6809.pdf
枚举可以过,但弄个字符串或者数组去处理进制转换的确很麻烦,在vj里找到个大神的代码,真tm神奇,在这里贴下。
#include
#include
#include
#include
using namespace std;
int main()
{
unsigned i...
分类:
其他好文 时间:
2015-04-24 09:03:57
阅读次数:
138
题目链接
https://icpcarchive.ecs.baylor.edu/external/68/6801.pdf
借下队友的代码。
#include
#include
#include
unsigned long long dp[1010][1010];
bool flag[1010][1010];
char a[1010];
using namespace std;
int mai...
分类:
其他好文 时间:
2015-04-24 09:03:28
阅读次数:
110
基本完全参考:http://blog.csdn.net/zhangjun2915/article/details/40598151kubernetes简介相关资料https://github.com/GoogleCloudPlatform/kuberneteshttp://kubernetes.io...
分类:
Web程序 时间:
2015-04-24 06:45:43
阅读次数:
2585
1.docker pull microsoft/aspnet 2.docker run -p 5004:2015 microsoft/aspnet--穿越后3.cd ~ && wget https://github.com/aspnet/Home/archive/master.zip && unz....
分类:
Web程序 时间:
2015-04-24 06:37:35
阅读次数:
173
1.前提条件在开始学习或安装ExchangeServer2013之前,希望大家事先到Technet官方网站了解相关系统要求、硬件要求和先决条件等。1.1Exchange2013系统要求https://technet.microsoft.com/zh-CN/library/aa996719%28v=exchg.150%29.aspx1.2Exchange2013先决条件https://technet.mi..
分类:
其他好文 时间:
2015-04-24 01:20:44
阅读次数:
181