码迷,mamicode.com
首页 >  
搜索关键字:more less cat tac tail head    ( 74720个结果
webstorm下搭建编译less环境
webstorm自带less,不过要编译的话需要nodejs环境。首先去node的主页下载对应版本的nodejs然后安装,下载地址:http://nodejs.org/安装完之后打开命令提示符(win+r),分别输入node -v以及npm -v如果返回版本号说明你安装成功了。接下来就可以安装les...
分类:Web程序   时间:2014-05-10 01:52:50    阅读次数:546
Webstorm less watcher 配置
file > sttings > File watchers > 添加LESS watcher配置如图:
分类:Web程序   时间:2014-05-10 01:45:58    阅读次数:399
《Python基础教程(第二版)》学习笔记 -> 第九章 魔法方法、属性和迭代器
准备工作>>> class NewStyle(object): more_code_here>>> class OldStyle: more_code_here 在这两个类中,NewStyle是新式的类,OldStyle是旧式的类,如果文件以__metaclas...
分类:编程语言   时间:2014-05-10 01:20:08    阅读次数:485
jquey实例之animate
<!doctypehtml> <html> <head> <metacharset="utf-8"/> <scripttype="text/javascript"src="jquery.js"></script> </head> <body> <imgsrc="8fbf0884jw1drfmvfrhrhj.jpg"width="300"height="300"/> <buttonid="btn1..
分类:其他好文   时间:2014-05-05 12:19:01    阅读次数:300
Linux内核之旅 链表实现
1 #include "stdio.h" 2 #include "stdlib.h" 3 4 struct list_head{ 5 struct list_head *prev; 6 struct list_head *next; 7 }; 8 9 struct task{1...
分类:系统相关   时间:2014-05-05 10:10:11    阅读次数:462
《linux 内核完全剖析》 void free_page() 分析
#define PAGE_SIZE 4096 /* these are not to be changed without changing head.s etc */ #define LOW_MEM 0x100000 extern unsigned long HIGH_MEMORY; #define PAGING_MEMORY (15*1024*1024) #define PAGING_PAG...
分类:系统相关   时间:2014-05-04 18:15:51    阅读次数:441
Codechef Nuclear Reactors 题解
There are K nuclear reactor chambers labelled from 0 to K-1. Particles are bombarded onto chamber 0. The particles keep collecting in the chamber 0. However if at any time, there are more than N parti...
分类:其他好文   时间:2014-05-04 18:00:17    阅读次数:372
codechef Cutting Recipes题解
Cutting Recipes The chef has a recipe he wishes to use for his guests, but the recipe will make far more food than he can serve to the guests. The chef therefore would like to make a reduced ve...
分类:其他好文   时间:2014-05-04 17:54:01    阅读次数:387
RedHat5.9下搭建DHCP服务器
DHCP服务器的搭建(服务器本身一般都设置为静态ip地址)准备工作:给服务器本身设置固定ip地址[root@localhost~]#cat/etc/sysconfig/network-scripts/ifcfg-eth0//配置文件#IntelCorporation82545EMGigabitEthernetController(Copper)DEVICE=eth0//设备名为eth0,第一块物理网..
分类:其他好文   时间:2014-05-04 17:25:28    阅读次数:426
简单的LESS Tutorial
简单的LESSTutorial1.什么是LESS?LESS是一种动态的CSS语言,更专业的称呼是CSSpreprocessor。作为CSS的扩展语言,LESS可以让CSS文件逻辑上更清晰,从而更容易维护和更新。LESS是开源的,诞生于2009年,采用javascript开发,LESS深受另外一种动态CSS语言SASS/SCSS的影响(SCSS是SA..
分类:其他好文   时间:2014-05-04 17:15:20    阅读次数:449
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!