码迷,mamicode.com
首页 >  
搜索关键字:fi    ( 3021个结果
Console命令详解,让调试js代码变得更简单
Firebug是网页开发的利器,能够极大地提升工作效率。 但是,它不太容易上手。我曾经翻译过一篇《Firebug入门指南》,介绍了一些基本用法。今天,继续介绍它的高级用法。 =================================== Fi...
分类:Web程序   时间:2014-09-15 11:31:59    阅读次数:198
[Leetcode][JAVA] Merge Two Sorted Lists & Sort List
Merge Two Sorted Lists:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the fi...
分类:编程语言   时间:2014-09-15 01:02:17    阅读次数:269
C# 文件创建时间,修改时间
System.IO.FileInfo fi = new System.IO.FileInfo(@"D:\site\EKECMS\skin\Grey\default#.html");Response.Write("修改时间:" + fi.LastWriteTime.ToString() + "");R...
分类:其他好文   时间:2014-09-13 17:06:55    阅读次数:209
(转)[原创]在ios android设备上使用 Protobuf (使用源码方式)
自:http://game.ceeger.com/forum/read.php?tid=13479如果你的工程只能以.Net 2.0而不能以.Net 2.0 subset运行,请看另外一个方法。地址:http://game.ceeger.com/forum/read.php?tid=13479&fi...
分类:移动开发   时间:2014-09-13 13:21:45    阅读次数:283
Delphi 转EXCEL 合并单元格解决方案
废话少说先上传代码,自己看吧! procedure TForm1.Button10Click(Sender: TObject); var   FExcel:Variant;   FWorkbook:Variant;   FWorkSheet:Variant;   XlsFileName:String;   i,j:Integer;   Field1,field2,Field3,Fi...
分类:其他好文   时间:2014-09-13 12:06:15    阅读次数:338
转载翻译简介:关于Flash and C++ Native Extension C++扩展ANE——2
做人呢就要有始有终不是么。。我还是把这个翻译完了事。Coding with C++With the C++ project finally set up, it's time to start adding some code. We'll start with the NativeAdd.h fi...
分类:编程语言   时间:2014-09-12 17:06:33    阅读次数:252
Nginx 安装配置
#!/bin/bash if[!-d/data];then mkdir-p/data fi cd/root/soft tarzxvfnginx-lua.tar.gz cdnginx-lua tarzxvfLuaJIT-2.0.2.tar.gz cdLuaJIT-2.0.2 make makeinstallPREFIX=/usr/local/luajit ln-sfluajit-2.0.2/usr/local/luajit/bin/luajit exportLUAJIT_LIB=/usr/local/luaji..
分类:其他好文   时间:2014-09-12 15:19:23    阅读次数:179
Python基本类型
Python是一门动态语言,解释执行,所有错误都是运行时产生的,即使有错误和异常,只要没有被执行到也不会有错,比如调用不存在的方法;类型是隐式的,也即无需变量类型声明;类型是动态,运行时根据变量指向的内容来决定类型,但是Python是强类型语言,即每个变量都是有类型的。     Python 基本built-in类型主要有numerics,sequences, mapping, fi...
分类:编程语言   时间:2014-09-12 15:13:33    阅读次数:343
检查打开的文件是不是ELF格式的文件,如果是就输出节头表的文件偏移
#include #include #include #include #include #include #include #include "elf.h" #define FALSE 0 #define TURE 1 #define MAX_SIZE 52 #define Elf_Ehdr  Elf64_Ehdr int OpenElf(char *fi...
分类:其他好文   时间:2014-09-12 08:55:13    阅读次数:258
shell的控制语句
shell中集中语句的总结:if语句:但分支的if语句:if[];thencmd;fi双分支的if语句:if[];thencmd1;elsecmd2;fi多分支的if语句:if[];thencmd1;elif[];thencmd2;elif[];thencmd3;...elsecmd;ficase语句:case$变量名称in条件1)cmd1;;条件2)cmd2;;*)cmd;;esacwhile语句..
分类:其他好文   时间:2014-09-12 02:30:13    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!