`
文章列表
熟悉一下ABAP基本语法, 例程如下.   *&---------------------------------------------------------------------* *& Report ZWQS_TEST_UNIT4 *& *&---------------------------------------------------------------------* *& *& *&--------------------------------------------------------- ...
我想有一天, 我会教孩子们编程. 下面一个很有趣的例子.   今天微信群里面出了这么一道题. 详见下图题4. (BTW, 如果把题干中的交换改成计算, 题干讲更容易理解.)       很有趣的问题. 对应的ruby代码如下:   start_num = 3 begin old_num = start_num new_num = old_num.to_s.chars.map(&:to_i).map{ |a| a*a*a }.inject(:+) puts new_num start_num = new_num end while ...
看了这个网易公开课. http://v.163.com/movie/2013/3/H/I/M92389L06_M9238GTHI.html 让我们教孩子编码吧   觉得下面这个做动画/编程的网站很好玩, 我立刻注册, 完成了入门教程, 只做了几个动画, 非常有趣. http://scratch.mit.edu   先存下来, 我想, 我和我的孩子一定会回来的.
bash的alias(别名)不直接支持$1,$2,$3,这样的命令行参数. 所以我们可以在/etc/bashrc中, 使用函数来替代. (但是我不知道为什么貌似alias temp='echo $1', 这样会把对temp的参数打印出来, 需要进一步确认...)   Anyway, 比如像下面这样, 可以满足我的需求 ils() { find . -maxdepth 1 -iname \*$1\* } rls() { ls -al *$1* }   BASH : Alias and Parameters http://chinmaykamat.wordp ...
最开始一直使用这个工具. FileLocator Lite(Free Edision, Predecessor is Agent Ransack) http://www.mythicsoft.com/page.aspx?type=filelocatorlite&page=home   后来因为公司不允许使用Filelocator, 切换到了AstroGrep. AstroGrep并非最好用的工具, 但胜在开源免费, 既能满足我的功能需求, 有符合公司规定. 有类似需求者自行对比. http://astrogrep.sourceforge.net/screenshots/ ...
The following link is very useful for beginner.   Creating your own syntax files @vim wiki   There are some predefined groups for highlight. Type :help group-name to see how they are highlighted, and how is the color they looks like. And type :help syntax on vim for more information.   There ...
  从下面的URL中,获得了这个Library. Get paths of selected items in an explorer window   /* http://www.autohotkey.com/board/topic/60985-get-paths-of-selected-items-in-an-explorer-window/ Library for getting info from a specific explorer window (if window handle not specified, the currently active ...
Run "everything --help"   or check the following URL http://support.voidtools.com/everything/Command_line_options   some example Everything.exe -path <path> Everything.exe -filename <file>  Everything.exe -search <text>  
Using Command Line Options http://www.emeditor.com/help/howto/file/file_commandline.htm   Command line options can be specified in the Run dialog box on the Start menu or a  Command Prompt window. Syntax Open a file or files "File1" "File2" "File3" ... [/r] [/fh ...

Links

Reference Card   DZone refcardz http://refcardz.dzone.com/   DevCheatSheet http://devcheatsheet.com/   FireFox addons   Firebug: https://addons.mozilla.org/zh-CN/firefox/addon/1843   Dafizilla ViewSourceWith: https://addons.mozilla.org/zh-CN/firefox/addon/394   火狐中国版自带的快速拨号(火狐中国版 主页 ...
通常情况, 我们升级kernel使用的文件是形如下面这样的SAPEXE和SAPEXEDB文件: SAPEXE_100-10007272.SAR SAPEXEDB_105-10007263.SAR   他们分别是DB independent和DB dependent.   关于SAPEXE是DB independent kernel的一个完整包, 有时候最新版本的kernel没有被打包成SAPEXE, dw_XXX-XXXXXXXX.sar的形式release出来, ( 有时候我们也叫做disp+work.sar, 比如在这个连接中: https://community.wd ...
Wireshark是一款非常好用的网络抓包工具:  http://www.wireshark.org/   下面这篇链接是一个比较general的介绍:  How to Use Wireshark to Capture, Filter and Inspect Packets   然而, 默认情况下wireshark会把网络上所有的包都抓过来,所以结果中有很多我们不想去关心的信息.  此时我们就需要使用Filter, 来进行有重点的分析.   下面的链接是wireshark filter的一个easy tutorial http://openmaniak.com/wiresha ...
在一个VMware虚拟机的Setting中可以设置Shared Folders. 理论上在设置好之后, 我们便可以使用在虚拟机中直接访问, 无论是linux系统, 还是windows系统. 对于linux系统, 之所以可以访问这个共享文件夹, 是因为mount的缘故. 可以参考下面的链接: Mounting Shared Folders in a Linux Guest 命令式形如下面这样: mount -t vmhgfs .host:/ /home/user1/shares 默认会映射到/mnt/hgfs之下   但是我的linux系统, 在完成配置之后, 无法访问我配置的 ...
[追记 about excel Conditional Formatting Rules @2015-07-15  12:58]   发现了两个很好的URL http://www.howtogeek.com/howto/45670/how-to-highlight-a-row-in-excel-using-conditional-formatting/ http://www.contextures.com/xlCondFormat02.html   尤其在第二个URL中, 包含了一个sample file.  包含了很多应用场景和实例, 足以满足我的各种需求. http://w ...
在XP时代,我们可以在【资源管理器 - 工具 - 文件夹选项】中设置一个文件扩展名对应的打开程序。 这里面有高级设置, 允许我们制定打开文件时, 给应用程序传递的参数情况。   但是到了windows7, 情况有一点变化,文件类型的默认程序在下面地方设置。 【开始菜单 - 默认程序  - 将文件类型或协议与程序关联】 这里面我没有找到我想要的高级选项(已配置启动ruby时候向ruby.exe传递的参数)   所以只好使用下面的命令行进行配置 关联文件类型:C:\> assoc .rb=RubyScriptC:\> ftype RubyScript="D:\ ...
Global site tag (gtag.js) - Google Analytics