这个问题产生的问题是 tl-wr841n v8版本的有线网卡down, 然后up,不知道具体原因是什么。但是肯定会导致PPPoE拨号过程中出现问题,拨号失败,程序hang住。
以下是我修改的关于有线网口顺序的地方,这里可能存在问题,但是我们需要认真解决。
?http://note.youdao.com/share/?id=b71ad6f21712cd8116bc31744ccf623a&t...
分类:
其他好文 时间:
2014-12-17 20:54:04
阅读次数:
1642
1. 仅更新单个库只想更新某个特定的库,不想更新它的所有依赖,很简单:composer update foo/bar此外,这个技巧还可以用来解决“警告信息问题”。你一定见过这样的警告信息:Warning: The lock file is not up to date with the latest...
分类:
Web程序 时间:
2014-12-17 18:24:18
阅读次数:
227
I played around with the Ford IDS system for a coupe of year, it allowed me to do 90% what I expert. But I have not yet hook it up to program ACM modu...
分类:
其他好文 时间:
2014-12-17 15:55:33
阅读次数:
788
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and sum
...
分类:
其他好文 时间:
2014-12-17 14:44:41
阅读次数:
191
题意:
给n个人和一些认识关系,要将这n个人分成两队,每队的人之间都互相认识,求一种方案使两队的人数差最小。
分析:
对原图求逆得到新图g,g中如果有边(a,b),那么a,b不能在一个队,对新图进行二分图染色就能求得一种方案了。但题目要使人数差最小,所以还要dp一下。dp[i][j]表示前i个连通分量获得j个人的队伍是否可行,这其实是个背包问题,每个物品有多种重量,问是否能获得一个特定的重量...
分类:
其他好文 时间:
2014-12-17 14:43:23
阅读次数:
126
相信很多人都用过利用border来实现小三角箭头,百度一下,这类的文章多如牛毛,这里我还是啰嗦点把常用的方法陈列出来:.triangle_border_up{ width:0; height:0; border-width:0 30px 30px; border-style:...
分类:
Web程序 时间:
2014-12-17 14:24:56
阅读次数:
147
A simple controller
控制器程序读取传感器的值,然后修改行走速度来避开障碍物。
下面是控制器源代码mybot_simple.c:
#include
#include
#include
#define SPEED 60
#define TIME_STEP 64
int main()
{
wb_robot_init();//初始化webots
//获取并使能距离传感器...
分类:
Web程序 时间:
2014-12-17 12:48:51
阅读次数:
214
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree {3,9,20,#,#,15,7},
...
分类:
其他好文 时间:
2014-12-17 09:50:15
阅读次数:
169
These are some tutorials i've written to get people started with android cracking.way of the android cracker 0this covers the essentials of setting up...
分类:
移动开发 时间:
2014-12-17 09:06:14
阅读次数:
151
Django 1.5 documentationHome|Table of contents|Index|Modules«previous|up|next»如何安装 Django本文档将指导你安装及运行 Django 框架。安装 Python作为一个 Python Web 框架,Django 是需要...
分类:
其他好文 时间:
2014-12-17 01:35:48
阅读次数:
283