上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页

2013年4月15日

CodeMirror

摘要: http://codemirror.net/CodeMirror 是一款“Online Source Editor”,基于Javascript,短小精悍,实时在线代码高亮显示,他不是某个富文本编辑器的附属产品,他是许多大名鼎鼎的在线代码编辑器的基础库。CodeMirror is a JavaScript component that provides a code editor in the browser. When a mode is available for the language you are coding in, it will color your code, and opt 阅读全文

posted @ 2013-04-15 19:56 androidme 阅读(228) 评论(0) 推荐(0) 编辑

著名的HTTP服务器

摘要: Apache httpdhttp://httpd.apache.org/lighttpdhttp://www.lighttpd.net/nginxhttp://nginx.org/Cherokeehttp://www.cherokee-project.com/ 阅读全文

posted @ 2013-04-15 19:42 androidme 阅读(229) 评论(0) 推荐(0) 编辑

How to create a hex dump from binary data in C++

摘要: http://stahlworks.com/dev/index.php?tool=csc01How to create a hex dump from binary data in C++ with a few lines of code: free source code examples for instant use in any project, for windows and linux.starting point: let's say we have a simple program like this:#include <stdio.h>int main(i 阅读全文

posted @ 2013-04-15 18:36 androidme 阅读(478) 评论(0) 推荐(0) 编辑

2013年4月14日

GeSHi - Generic Syntax Highlighter

摘要: http://qbnz.com/highlighter/http://sourceforge.net/projects/geshi/GeSHi - Generic Syntax Highlighter for PHP. Used to highlight almost any code for the web. Nearly 150 supported languages: PHP, HTML, C and more. Styles can be changed on the fly and CSS classes can be used to reduce the amount of XHT 阅读全文

posted @ 2013-04-14 20:43 androidme 阅读(202) 评论(0) 推荐(0) 编辑

2013年4月13日

Apache+PHP+MySQL

摘要: 1. Apachehttp://httpd.apache.org/Windows Binary:http://www.apachelounge.com/download/2. PHPhttp://php.net/3. MySQLhttp://www.mysql.com/downloads/4. phpMyAdminhttp://www.phpmyadmin.net/php.ini配置error_log = D:\Software\AMP\Apache24\logs\php_errors.logdoc_root = D:\Software\AMP\Apache24\htdocsextension 阅读全文

posted @ 2013-04-13 22:47 androidme 阅读(337) 评论(2) 推荐(0) 编辑

2013年4月12日

stikked - An advanced and beautiful pastebin written in PHP

摘要: https://github.com/claudehohl/Stikkedhttp://www.maketecheasier.com/run-your-own-pastebin-with-stikked/2013/01/11https://code.google.com/p/stikked/http://bash.freesf.tw/?p=106http://ellislab.com/forums/viewthread/69660/http://blog.craigandrews.com/?p=145404错误https://github.com/claudehohl/Stikked/issu 阅读全文

posted @ 2013-04-12 16:25 androidme 阅读(184) 评论(0) 推荐(0) 编辑

2013年4月10日

Linux的自动执行程序cron和crontab

摘要: http://os.51cto.com/art/200805/75224.htm假如你有一些任务要定期执行,比如清理磁盘、删除过期文件、发送邮件和提醒,这个时候可以用cron来帮你。首先是安装,大多数发行版都预装了,Gentoo下的cron有许多种实现,可以用emerge --search cron来查看,这里用vixie-cron,因为功能比较完整,命令语法也比较通用。# emerge vixie-cron之后要启动cron服务:# /etc/init.d/vixie-cron start别忘了把cron加入到启动脚本中:# rc-update add vixie-cron default完 阅读全文

posted @ 2013-04-10 18:42 androidme 阅读(273) 评论(0) 推荐(0) 编辑

Tomcat start/stop script

摘要: http://blog.valotas.com/2011/05/tomcat-initd-script.htmlhttp://blog.botha.us/sarel/?p=101#!/bin/bash## tomcat7 This shell script takes care of starting and stopping Tomcat## chkconfig: - 80 20#### BEGIN INIT INFO# Provides: tomcat7# Required-Start: $network $syslog# Required-Stop: $network $sysl... 阅读全文

posted @ 2013-04-10 17:25 androidme 阅读(732) 评论(0) 推荐(0) 编辑

2013年4月9日

OpenWrt启动过程分析

摘要: http://www.cnblogs.com/miosec/archive/2013/02/27/2934508.htmlopenwrt是通过一系列shell脚本进行启动流程的组织,下面是启动流程的提纲。如果想详细了解启动的过程,则需要仔细走读脚本文件。1. 在make menuconfig 选择target平台 Broadcom BCM947xx/953xx [2.4]2. linux内核的配置文件由下面两个文件组成target/linux/generic-2.4/config-defaulttarget/linux/brcm-2.4/config-default3. 在配置文件中可以看到C 阅读全文

posted @ 2013-04-09 16:13 androidme 阅读(943) 评论(0) 推荐(0) 编辑

查看安装的glibc版本

摘要: http://blog.csdn.net/jcwkyl/article/details/5153334http://blog.chinaunix.net/uid-14966892-id-2780401.html方法一: 找到libc的DSO(dynamic shared object)并运行它,如下所示: [whb@jcwkyl ~]$ locate libc.so /lib/libc.so.6 /lib/i686/nosegneg/libc.so.6 /usr/lib/libc.so [whb@jcwkyl ~]$ /lib/libc.so.6 GNU C Library stab... 阅读全文

posted @ 2013-04-09 15:43 androidme 阅读(640) 评论(0) 推荐(0) 编辑

2013年4月8日

Linux程序调试--查看二进制文件

摘要: http://blog.sina.com.cn/s/blog_7a2fc53a0100y54h.html一,二进制文件的类型 Linux下的二进制文件是ELF格式的,主要有目标文件、静态链接库文件、动态链接库文件、可执行文件和core dump文件。可以使用如下命令查看其类型: file 文件名。 我们还是以之前的例子test.c举例,test.c的源代码和之前的文章一样: int sub(int a,int b,int c){ *(int *)a=16; return 0; } int main() { int a=0; int b=1; int c=... 阅读全文

posted @ 2013-04-08 18:24 androidme 阅读(6945) 评论(1) 推荐(0) 编辑

2013年4月7日

Complete password field scp command on linux

摘要: http://stackoverflow.com/questions/3457719/complete-password-field-scp-command-on-linuxhttp://www.uini.net/?p=356You can generate a pair of RSA/DSA keys (public and private). In your terminal:$ ssh-keygenIt will generate a pair of files:Private key: .ssh/id_dsaPublic key: .ssh/id_dsa.pubThen, if you 阅读全文

posted @ 2013-04-07 13:13 androidme 阅读(190) 评论(0) 推荐(0) 编辑

2013年4月5日

Linux Process Memory Usage

摘要: http://www.linuxforums.org/forum/red-hat-fedora-linux/49630-how-programmatically-monitor-process-memory-usage.htmlhttp://opentips.blogspot.com/2008/01/linux-process-memory-usage.htmlThe following shell script is used to monitor the memory usage of a process.Save the following script in a file (for e 阅读全文

posted @ 2013-04-05 20:47 androidme 阅读(675) 评论(1) 推荐(0) 编辑

C++命令行解析库

摘要: TCLAPhttp://tclap.sourceforge.net/CLAPhttp://www.cs.bgu.ac.il/~cgproj/CLAP/CLPPhttp://clp-parser.sourceforge.net/Arg_parserhttp://www.nongnu.org/arg-parser/arg_parser.htmlgflagshttps://code.google.com/p/gflags/popthttp://gnuwin32.sourceforge.net/packages/popt.htm 阅读全文

posted @ 2013-04-05 20:46 androidme 阅读(510) 评论(0) 推荐(0) 编辑

2013年4月3日

Build tcpdump for ARM

摘要: http://wiki.neurostechnology.com/index.php/Cross_Compiling_on_Linuxhttp://androidap.blogspot.com/2010/11/tcpdump-for-android.htmlhttp://hi.baidu.com/shangyefeng/item/576ae12c4670c30842634a87http://blog.csdn.net/jgf_ntu/article/details/8607575 阅读全文

posted @ 2013-04-03 14:39 androidme 阅读(193) 评论(0) 推荐(0) 编辑

UPnP/DLNA libs and tools

摘要: MiniUPnPhttp://miniupnp.free.fr/MiniDLNAhttp://minidlna.sourceforge.net/libupnphttp://pupnp.sourceforge.net/http://upnp.sourceforge.net/后者为前者的前身。(As of 2005-2006, the original developers did not have the time to work on libupnp any more and nobody expressed interest in taking over development of the 阅读全文

posted @ 2013-04-03 09:27 androidme 阅读(339) 评论(0) 推荐(0) 编辑

2013年4月2日

media test

摘要: http://samples.mplayerhq.hu/ 阅读全文

posted @ 2013-04-02 18:54 androidme 阅读(131) 评论(0) 推荐(0) 编辑

2013年4月1日

sqlite3x library

摘要: sqlite3x - C++ wrapper of SQLite API.http://sourceforge.net/projects/int64/files/SQLite3%20C%2B%2B%20Wrapper/https://github.com/ptrv/sqlite3xhttp://wanderinghorse.net/computing/sqlite/Appendixhttp://www.sqlite.org/ 阅读全文

posted @ 2013-04-01 14:20 androidme 阅读(312) 评论(0) 推荐(0) 编辑

2013年3月26日

ezwinports

摘要: http://sourceforge.net/projects/ezwinports/This project is a collection of ports to MS-Windows of GNU and Unix software packages, which either don't have precompiled Windows binaries available, or whose existing ports are buggy or broken.All the ports are built using the MinGW development enviro 阅读全文

posted @ 2013-03-26 10:37 androidme 阅读(213) 评论(0) 推荐(0) 编辑

Dos2Unix / Unix2Dos

摘要: http://dos2unix.sourceforge.net/ 阅读全文

posted @ 2013-03-26 10:24 androidme 阅读(117) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页

导航