上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 35 下一页
摘要: Yours faithfully or Yours sincerely; Dear Sir or Dear MrOn this page we look at important phrases for writing letters and emails, such as when to useY... 阅读全文
posted @ 2013-01-24 14:23 Biiigfish 阅读(593) 评论(0) 推荐(0) 编辑
摘要: Kernel Modules and System CallsCreating a "Syscalls" moduleby John BrodieCreating a module for your system calls allows you to make quick changesto your syscalls, without the need to rebuild any of the kernel, and withoutthe need to install/reboot your new kernel version. However, adding n 阅读全文
posted @ 2013-01-21 17:46 Biiigfish 阅读(395) 评论(0) 推荐(0) 编辑
摘要: [备忘]费劲找二进制比较软件...发现这个现成的,虽然比较ugly,但是build-in的工具毕竟是最好获取的~Windows1. 用fc.exe比较 simple.exe 和 simple.ex_. 使用以下命令行:D:/Study/hack/example>fc simple.exe simple.ex_ > simple.dif2. 使用type工具查看simple.dif文件, 命令行如下:D:/Study/hack/example>type simple.dif3. 编辑二进制软件第一个,首当其中肯定是Ultra-Edit。第二个,毕竟Ultra-Edit是要钱的。 阅读全文
posted @ 2013-01-18 15:46 Biiigfish 阅读(7434) 评论(0) 推荐(0) 编辑
摘要: 恩,就这么开始了首先说一下这个小小的插曲。。。写着写着,它就崩溃了,然后我也崩溃了。。。崩溃的我到处找一个不会让我崩溃的工具,然后找来找去就找到了scribefire。1. 关于从Command Line取参数进来~ Shell Built in Variables~ Meaning$#Number... 阅读全文
posted @ 2013-01-18 10:53 Biiigfish 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 一. 前言shell编程在unix/linux世界中使用得非常广泛,熟练掌握shell编程也是成为一名优秀的unix/linux开发者和系统管理员的必经之路。脚本调试的主要工作就是发现引发脚本错误的原因以及在脚本源代码中定位发生错误的行,常用的手段包括分析输出的错误信息,通过在脚本中加入调试语句,输出调试信息来辅助诊断错误,利用调试工具等。但与其它高级语言相比,shell解释器缺乏相应的调试机制和调试工具的支持,其输出的错误信息又往往很不明确,初学者在调试脚本时,除了知道用echo语句输出一些信息外,别无它法,而仅仅依赖于大量的加入echo语句来诊断错误,确实令人不胜其繁,故常见初学者抱怨sh 阅读全文
posted @ 2013-01-17 21:48 Biiigfish 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 突然想到这么一个比喻,不是想说明什么。想起以前经常看到的Android生态圈,MAC生态圈,Win生态圈之类。。。是不是可以把“产业生态圈-产业链”和“生态圈-食物链”做类比?生态学里面也形象的把以自养生物为食物的动物称为初级消费者。市场这个“生态圈”里的各级“消费者”传递的不是能量,而是利润;空白市场就是发现了一篇新的草地,模式创新就是创造了一条新的食物链即新的能量(利润)传递路径。商业活动里的消费者应该是食物链里的自养生物,而本地运营商、零售商、工程商等等这些则是这里的初级消费者;工程商和运营商所处的环境类似鱼或者草履虫之类,特点是以某个水池里的生物为食。gongle、MAC、Win这些都 阅读全文
posted @ 2013-01-11 11:03 Biiigfish 阅读(436) 评论(0) 推荐(0) 编辑
摘要: Flash memoryFlash memory is an electronic (i.e. no moving parts) non-volatile computer storage device that can be electrically erased and reprogrammed.Flash memory was developed from EEPROM (electrically erasable programmable read-only memory). There are two main types of flash memory, which are nam 阅读全文
posted @ 2013-01-11 09:46 Biiigfish 阅读(1777) 评论(0) 推荐(0) 编辑
摘要: 1.Install the toolsDownload 'ARM GNU TOOLS' from here : http://wiki.xilinx.com/zynq-toolsIn 64-bit enviroment, some extra packages are needed:apt-get install ia32-libs ia32-libs-gtkGo ahead! Justsudo ./xilinx-2011.09-50-arm-xilinx-linux-gnueabi.binSet a proper install path and Enter all othe 阅读全文
posted @ 2012-11-21 21:02 Biiigfish 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 唔,这个折腾了半天。。。今天学到的两个函数string.sub和string.format。string.sub(s,i,j),将s的第i个到第j个字符取出,i缺省为1,j缺省为-1string.format(),唔,完全可以当作是C里面的printf来用!今天写的一个小程序:#!/usr/bin/envluahere=0forlineinio.lines("./sin512.mif")dohere=here+1ifhere<7thenprint(line)elseif(here-7)%8==0thenline=string.sub(line,5)print(stri 阅读全文
posted @ 2012-11-04 22:08 Biiigfish 阅读(12490) 评论(0) 推荐(0) 编辑
摘要: 1、TCL与Pin PlanQuartus的pin map在Assigment-> Pin Planer,使用比较直观。Quartus提供了一个方便记录-专递Pin Map的方式-TCL文件。TCL文件基本格式:1)#号作为注释的开始2)set_location_assignment PIN_27 -to RESET,表示PIN27被map到硬件Reset3)set_global_assignment -name RESERVE_ALL_UNUSED_PINS "AS INPUT TRI-STATED" ,表示把所有未使用的硬件映射为Input Tri-stated。 阅读全文
posted @ 2012-11-04 10:15 Biiigfish 阅读(2267) 评论(0) 推荐(1) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 35 下一页