- 博客(24)
- 资源 (12)
- 收藏
- 关注
原创 xcode 使用 vim
对于 vim 控,所有能使用 vim 的地方都是好的,也是必须的,用久了,一离开马上就觉着手足无措,不知道怎么输入文字了。安装上 xcode 以后,第一件事不是学会怎么装程序,而是急迫的搜一下怎么使用 vim ,1: 下载https://github.com/JugglerShu/XVim2:编译 在 finder 中找到下载的文件,解压
2014-01-07 16:04:00 1005
原创 安装Android SDK报错:JDK not found系统找不到指定的文件Java.exe JDK已安装 解决方法
Windows 7 64位,重新安装Android SDK,结果遇到了点小问题: 在检测系统是否安装 JDK 的时候总是提示:Java SE Development Kit (JDK) not foundError:Failed to find java version for ‘C:\windows\system32\java.exe’: [2] 系统找不到指定的文件实际上我
2013-09-28 09:19:05 2332
原创 ruby 安装 常见错误!
错误提示:C:\Program Files (x86)\Vim\vim74\ftplugin\ruby.vim 是发生错误:第 122 行:E171: 缺少 :endif ..........................................原因:没有设置 ruby 路径 _vimrc 种添加:let g:ruby_path='C:\\
2013-09-09 23:37:44 937
转载 C语言 MD5 算法
忘记从哪里抄过来了!#ifndef MD5_H #define MD5_H typedef struct { unsigned int count[2]; unsigned int state[4]; unsigned char buffer[64]; }MD5_CTX; #define F(x,y,z) ((x & y
2012-11-10 12:38:56 947
barebox s3c6410
1:下载 Barbox http://barebox.org/download/ http://git.pengutronix.de/?p=barebox.git;a=summary出现错误: *** Unable to find the ncurses libraries or the *** required header files. ***
2012-09-05 00:05:20 83
Ruby MySQL Win7 Bit64 安装错误
安装mysqlgem install mysql复制 mysql lib 目录下的 libmysql.dll 到 ruby bin 目录 下使用mysql,如,require "mysql"会报错:require.rb:36:in `require’: 193: %1 不是有效的 Win32 应用程序 mysql_api.so (LoadError)原因是 l
2012-05-07 18:06:55 63
原创 Ecmas 常用插件
linum网址: http://stud4.tuwien.ac.at/~e0225855/linum/linum.html.emacs 设置(require 'linum) (global-linum-mode t)颜色主题:网址: http://download.gna.org/color-theme/ 使用方法:(require 'color-theme)
2012-05-06 21:12:29 394
PHP fastcgi 模式 安装
程序下载FastCGI Extension for Internet Information Services 6.0 and 5.1 下载地址:http://www.microsoft.com/download/en/confirmation.aspx?id=11881PHP 下载地址:http://www.php.net/downloads.php,当前最新版本为5.3。
2012-02-06 10:08:19 119
转载 PHP线程安全与非线程安全的区别
原文:http://koda.iteye.com/blog/662034Windows版的PHP从版本5.2.1开始有Thread Safe(线程安全)和None Thread Safe(NTS,非线程安全)之分,这两者不同在于何处?到底应该用哪种?这里做一个简单的介绍。 从2000年10月20日发布的第一个Windows版的PHP3.0.17开始的都是线程安全的版本,这是由于与L
2012-02-06 10:03:35 368
原创 android 环境搭建(windows)
1: 安装 jdkhttp://www.oracle.com/technetwork/java/javase/overview/index.html2: 安装 eclipsehttp://www.eclipse.org/downloads/
2012-02-01 17:57:59 80
原创 ubuntu nfs 设置
1:安装 nfs 服务sudo apt-get install nfs-kernel-server2:设置共享目录:nfs 的共享设置文件为: /etc/exports使用 root 权限 编辑 /etc/exports 安装完毕 nfs 文件以后会自动生成 /etc/exports 文件,文件中有设置共享文件的例子格式如下:/srv/homes
2012-01-19 12:31:31 602
原创 qt 没有找到有效的QT版本
Ubuntu 安装 qt creater 安装完成后,新建项目时提示:没有找到有效的QT版本请在 工具/选项中添加或使用SDK中的工具原因:没有提供c/c++ compile环境解决方法:在终端输入,sudo apt-get install build-essential安装完毕后重新启动 !
2012-01-16 09:47:12 1448 2
原创 ubuntu stm32 开发环境
ubuntu 1: openocd 1.1: 安装 openocdsudo apt-get install openocd 1.2: 配置 openocd 新建 oenocd_stm32.cfg 内容如下:interface jlinkset WORKAREASIZE 0x4000source [find ta
2012-01-13 12:58:28 189
原创 Tenda_W311M ubuntu 驱动
Tenda usb 无线网卡,价格便宜,使用方便,所以一直用着 w311m 只是 linux 下默认是不知吃 w311m 的驱动的!下面是 ubuntu 官方提供的方法: https://help.ubuntu.com/community/WifiDocs/Device/Tenda_W311M1: 检查设备是否连接 输入命令:lsusb 查看是否有如
2012-01-12 20:41:42 2970
转载 Emacs禁止自动产生备份文件
原文地址 : http://www.cnblogs.com/connor/archive/2011/05/19/2051501.html一般我们不想在working directory里面产生"~"给尾的备份文件,因为安全和整洁的问题,特别是编辑网站源文件,万一不小心吧"~"扩展名的备份文件上传,那就危险了,所以你可以使用下面这句话禁止掉自动备份,把它加到你的~/.emacs文
2011-12-22 20:23:26 4061
实时系统 时间综述
说起时间来,说简单也是挺简单的:linux 下想要得到系统的当前时间: time_t timep; struct tm *p; time(&timep); p=localtime(&timep);这样简单的调用就可以得到系统的当前时间了:struct tm 结构体成员如下:The meaning of each is:Member Meaning Ra
2011-12-19 21:37:49 217
原创 stm32 时钟
在STM32中,有五个时钟源,为HSI、HSE、LSI、LSE、PLL。①HSI是高速内部时钟,RC振荡器,频率为8MHz。②HSE是高速外部时钟,可接石英/陶瓷谐振器,或者接外部时钟源,频率范围为4MHz~16MHz。 HSE/LSE时钟源 ③LSI
2011-10-11 18:10:11 1180
原创 我的 vim 配置
let mapleader=",""语言部分 set helplang=cnset encoding=utf-8syntax enablesyntax oncolorscheme desertset nobackup "不自动备份"se bdir=~/.c
2011-10-02 16:53:30 502
原创 SQL 语句
查询数据库 10 - 20 之间的数据 SELECT TOP 10 * FROM MopTbl WHERE (ID NOT IN (SELECT TOP 10 ID FROM MopTbl));
2010-03-17 17:19:00 208
原创 数值分析 Lab 2 的 C++ 程序示例
Lab 2. Lagrange Polynomial Given a set of sample points of a certain function f , use Lagrange polynomial to approximate function values at some given points a1a2 ,…,am .
2006-09-24 19:34:00 1550
原创 How DES works
Data Encryption Standard(DES) , also called as Data Encryption Algorithm(DEA), has been used for over two decades. It has been a landmark in cryptographic algorithms. The origins of DES go bac
2006-09-23 10:11:00 1747
原创 数值分析 Lab 1 的C程序示例
we can know this:so we can use N to substitute the denotation of infinitude : /**//*--------------------------------------------------------------------------- author : yx
2006-09-22 19:17:00 1591
转载 Lab 1 question
Numerical Summation of a SeriesTime limit: 10 Seconds Memory limit: 32768K Special JudgeTotal Submit: 1403 Accepted Submit: 711 Produce a table of the values of the series Equation 1
2006-09-21 21:35:00 968
UNIX® Shells by Example, Third Edition
2012-01-19
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人