码迷,mamicode.com
首页 >  
搜索关键字:less    ( 4949个结果
UVa1584 Circular Sequence
#include #include int less(char* str, size_t len, size_t p, size_t q){ size_t i, a, b; for (i = 0; i str[b]) return 0; } return 0;}int main(){ int ...
分类:其他好文   时间:2015-06-20 23:23:39    阅读次数:143
less的解析笔记
Less是一种动态的样式语言。Less扩展了CSS的动态行为,比如说,设置变量(Variables)、混合书写模式(mixins)、操作(operations)和功能(functions)等等,最棒的是,Less使用了现有的CSS语法,也就是说,你可以直接把你现成的样式文件“style.css”直接...
分类:其他好文   时间:2015-06-19 18:09:13    阅读次数:158
gulp自动化构建
最近正在使用gulp去帮我自动化构建一些技术块,感觉很爽,所以把gulp操作步骤给写笔记,记录下来。。。首先了解什么是gulp? 我的理解是一个工具并且自动化的,能帮你把一些前端技术的语法转换成当前浏览器能读取的技术。比如less.css,sass.css或者es6等等,只要配置好就可以运行了。g....
分类:其他好文   时间:2015-06-18 17:04:12    阅读次数:124
leetCode(10):Partition List
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserve the original relative order of the nodes in each of...
分类:其他好文   时间:2015-06-18 11:43:55    阅读次数:109
nim和面向对象(一)
Nim and OO 原文链接:http://goran.krampe.se/2014/10/29/nim-and-oo/ 作者:Roads less Taken A blend of programming, boats and life. 时间:2014,10,29 Nim is presented as an imperative language. And yes, it...
分类:其他好文   时间:2015-06-18 09:51:34    阅读次数:371
Linux 20150617-2
归纳之前学习的目录管理lscdpwdmkdirrmdirtree文件管理touchstatfilecpmvrmnano(编辑器)日期时间datecalclockhwclock文本显示cat连接并显示linux系统文本结束每行都是$结尾tac连接并显示只是和cat是相反的从最后一行到第一行显示more向后翻less向后翻head查看前n行默认是10ta..
分类:系统相关   时间:2015-06-18 02:00:24    阅读次数:200
Node环境下实现less编译
今天在学习less的时候发现了在node中是可以渲染的,通过调用less的render方法渲染来生成css,所以写了个小Demo。var less = require('less');var http = require('http');http.createServer(function(req,...
分类:其他好文   时间:2015-06-17 19:46:42    阅读次数:125
redis翻译_内存优化
Special encoding of small aggregate data types 特别编码小集合的数据类型 Since Redis 2.2 many data types are optimized to use less space up to a certain size. Hashes, Lists, Sets composed of just integers, and...
分类:其他好文   时间:2015-06-17 01:52:38    阅读次数:173
LeetCode:Count Primes
Problem:Description:Count the number of prime numbers less than a non-negative number, n.Credits:Special thanks to @mithmatt for adding this problem a...
分类:其他好文   时间:2015-06-16 22:53:33    阅读次数:137
hbase中的deleteColumn
Delete类的接口有两个方法:deleteColumns和deleteColumn,它们的区别从method注释里可以看到: Html代码 deleteColumns: Delete all versions of the specified column with a timestamp less than or equal to the specified timesta...
分类:其他好文   时间:2015-06-16 19:16:55    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!