码迷,mamicode.com
首页 >  
搜索关键字:something    ( 1401个结果
crontab 每月最后一天
0 8 28-31 * * [ `date -d tomorrow +%e` -eq 1 ] && do-something我觉得能想到这种方法的,都是经验丰富的人。程序员们,想当然的就会就写出很复杂的代码。
分类:其他好文   时间:2014-05-26 20:39:23    阅读次数:252
MVC里使用JSON方法集锦
//一般处理,无参数示例public JsonResult Test(){ Something... return Json{new{Success=true,Msg="Error!",...}}; //return Json(new{Success=fals,Msg="ok",...},Js...
分类:Web程序   时间:2014-05-26 08:44:39    阅读次数:326
Explaining public-key cryptography to non-geeks
AsI’mworkingonaproductthatwillmakeheavyuseofencryption,I’vefoundmyselftryingtoexplainpublic-keycryptographytofriendsmorethanoncelately.Tomysurprise,anythingrelatedI’vecomeacrossonlinemakesitlookmorecomplicatedthanitshould.Butit’snot.Firstofall,let’ssee..
分类:其他好文   时间:2014-05-20 21:05:11    阅读次数:430
Something Starts While Something Ends
(1)最终还是没能参加比赛,一次都没有机会。(2)有梦想,不到最后一刻不会放弃。(3)这里应该会搬次家,转到github上。(4)作为一个新手,什么东西都需要从头学起来,就从最基础的数据结构开始好了。待完成的任务:1-2-3-4-
分类:其他好文   时间:2014-05-17 14:38:01    阅读次数:244
shell note
死循环while :do# do somethingdone
分类:其他好文   时间:2014-05-16 06:16:36    阅读次数:227
你该知道的 HTML5
一、图片和标题语义化 This is an image of something interesting. 二、本地存储 localStorageHTML代码: 修改我吧,然后刷新页面看看,^_^JS代码:var edit = document.getEl...
分类:Web程序   时间:2014-05-15 21:00:43    阅读次数:426
Web Js判断键盘出发事件
window.document.onkeydown = disableRefresh; function disableRefresh(evt){ evt = (evt) ? evt : window.event if (evt.keyCode) {    if(evt.keyCode == 116){      //do something    } } } keycode 8...
分类:Web程序   时间:2014-05-15 06:08:18    阅读次数:315
里氏代换原则
若对于每一个类型S的对象o1,都存在一个类型T的对象o2,使得在所有针对T编写的程序P中,用o1替换o2后,程序P的行为功能不变,则S是T的子类型。What is wanted here is something like the following substitution property: I...
分类:其他好文   时间:2014-05-14 03:32:08    阅读次数:229
c++ template怎么使用及注意事项
c++ 中的template和c#的什么有点相似?先看下定义方式:template T myFunction(T param1,T param2...){ T result= param1; // do something return result; ...
分类:编程语言   时间:2014-05-14 03:05:27    阅读次数:332
Linux之部分shell脚本练习(二)
whileCONDITION;dostatementdone进入循环:条件满足退出循环:条件不满足untilCONDITION;dostatment...done#!/bin/bash#read-p"Inputsomething:"STRINGwhile[$STRING!=‘quit‘];doecho$STRING|tr‘a-z‘‘A-Z‘read-p"Inputsomething:"STRINGdone#!/bin/bash#read-p"Inputsomething:..
分类:系统相关   时间:2014-05-13 03:58:53    阅读次数:343
1401条   上一页 1 ... 137 138 139 140 141 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!