码迷,mamicode.com
首页 >  
搜索关键字:le ge lt gt eq ne    ( 256714个结果
make screenshot at Eclipse
In Eclipse, from the Window menu, select Open Perspective > Other... > DDMS. Select the Kindle Fire tablet, and click the camera icon. (If the tablet ...
分类:系统相关   时间:2014-05-29 20:29:15    阅读次数:479
LeetCode ClimbingStairs
class Solution {public: int climbStairs(int n) { if (n < 1) return 0; int a = 0; int b = 1; for (int i=0; i<n; i++) { ...
分类:其他好文   时间:2014-05-29 20:23:07    阅读次数:339
只允许input框输入数字,输入其他的键的时候,直接不显示的方法
functionnumInteger(){if((event.keyCode>=48 && event.keyCode=96 && event.keyCode<=105)) { return true; }else if(event.keyCode==8 || event.keyCode==9).....
分类:其他好文   时间:2014-05-29 19:30:19    阅读次数:490
【spark系列3】spark开发简单指南
分布式数据集创建之textFile 文本文件的RDDs能够通过SparkContext的textFile方法创建,该方法接受文件的URI地址(或者机器上的文件本地路径,或者一个hdfs://, sdn://,kfs://,其他URI).这里是一个调用样例:scala> val distFile...
分类:其他好文   时间:2014-05-29 18:58:27    阅读次数:429
查看网络端口被占用情况netstat命令
在windows命令行窗口下执行:C:\>netstat -aon|findstr "80"TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:C:\>tasklist|findstr "2448"threa...
分类:Web程序   时间:2014-05-29 18:16:59    阅读次数:283
shell读取文件的每一行
写法一:----------------------------------------------------------------------------#!/bin/bashwhile read linedo echo $linedone < filename(待读取的文件)--------...
分类:其他好文   时间:2014-05-29 18:01:41    阅读次数:230
春卷活动心得
1. 确定参加活动的思想,统一个成员的思想 【重输赢,还是重参与】2.对活动进行环节拆解,并组成分组,搭配人员。如本次活动分为:情报,造型,馅料搭配,采购3.尽量通过名义选出分组中的领军人物[分组成员>=3],以此加强其责任感,并提供分组成员们的向心力不要期望任何人能会主动去做,或者主动提建议。作为...
分类:其他好文   时间:2014-05-29 16:26:55    阅读次数:174
linux 网卡信息
[root@www ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0静态IP设置DEVICE="eth0" <==网络卡代号,必须要 ifcfg-eth0 相对应HWADDR="08:00:27:71:85:BD"...
分类:系统相关   时间:2014-05-29 15:47:42    阅读次数:378
magento controller直接渲染Block
class Jago_Deal_IndexController extends Mage_Core_Controller_Front_Action{ public function ajaxAction() { $block = $this->getLayout()->cr...
分类:其他好文   时间:2014-05-29 15:36:20    阅读次数:287
MySQL远程访问权限
1、登陆mysql数据库 mysql -u root -p#查看数据库mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || mys...
分类:数据库   时间:2014-05-29 15:28:05    阅读次数:527
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!