装ez_setup时,遇到了问题,报错:UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position ordinal not in range(128) Something went wrong during the in....
分类:
编程语言 时间:
2014-12-08 15:22:33
阅读次数:
169
whileCONDITION;dostatement.....done进入循环:条件满足退出循环:条件不满足untilCONDITION;doSTATEMENT.......done进入循环:条件不满足退出循环:条件满足#!/bin/bash#read-p"Inputsomething:"STRINGwhile[$STRING!=‘quit‘];doecho$STRING|tr‘a-z‘‘A-Z‘read-p"Again,Inp..
分类:
其他好文 时间:
2014-12-02 12:01:19
阅读次数:
119
问题
Java中如何从一个多层嵌套循环中退出,例如下面,有两个循环,break只能退出一个for循环,不能直接跳过第二个for循环
for (Type type : types) {
for (Type t : types2) {
if (some condition) {
// Do something and break...
...
分类:
其他好文 时间:
2014-12-01 11:30:36
阅读次数:
150
shell脚本中echo显示内容带颜色显示,echo显示带颜色,需要使用参数-e 格式如下: echo -e "\033[字背景颜色;文字颜色m字符串\033[0m" 例如: echo -e "\033[41;36m something here \033[0m" 其中41的位置代表底色,...
分类:
系统相关 时间:
2014-11-29 21:28:26
阅读次数:
333
Don't just accumulate knowledge, apply it.You will never really know or understand something until you use it. Make little demo programs that use the ...
分类:
其他好文 时间:
2014-11-29 17:14:37
阅读次数:
141
英文原文:How to reward skilled coders with something other than people management 你手下有一群很出色的程序员,他们都非常想在事业上取得进步。你的这个团队成绩斐然,这是他们双手创造的,你知道这些,你想奖赏他们——为他们所做...
分类:
其他好文 时间:
2014-11-28 14:22:31
阅读次数:
160
As i need to read something from a csv file using python. I got something and put it here.Module: csvimport csvFILE_FULL_PATH = 'D:\\Work\\script\\My ...
分类:
编程语言 时间:
2014-11-27 12:39:12
阅读次数:
173
Message FloodTime Limit: 1500MS Memory limit: 65536K题目描述Well, how do you feel about mobile phone? Your answer would probably be something like that "I...
分类:
其他好文 时间:
2014-11-27 06:44:24
阅读次数:
127
1. 对JQuery自身的扩展插件对JQuery 自身方法库的扩展,用$.YouMethodName()进行调用。(1).插件的编写$.extend({YouMethodName:function(){//you can handle something here}});(2).插件的调用$.You...
分类:
Web程序 时间:
2014-11-26 13:53:56
阅读次数:
131
我们都知道Handler中的post方法可以更新组件的内容,多用在子线程异步更新ui界面。
handler.post(new Runnable(){
@Override
public void run() {
//do something
mTextView.setText("msg");
}});
post 是立即插入消息列队,当消息列队处理到该消息时,Ru...
分类:
移动开发 时间:
2014-11-24 06:31:35
阅读次数:
309