background preloader

Tools

Facebook Twitter

SQuirreL SQL Client Home Page. Network Settings Manager | LAN & WLAN | Freeware & Pro. DragToScroll - Universal Drag & Fling/Flick Scrolling. DragToScroll.ahk allows you to scroll any window or control by right clicking (RButton) and dragging the mouse. It works very similarly to the "Hand Tool" in Adobe products, such as Adobe PDF Reader.[*:19ebmxny] Scroll both horizontally and vertically. Works in Firefox, IE, Chrome, Text Editors, Explorer, even controls within scrollable document like EditBoxes, ListViews and DropDownLists. [*:19ebmxny] Works with background windows. Scrolls whatever you drag.[*:19ebmxny] Will not interfere with normal RButton behavior.

Only activated when clicking and dragging.[*:19ebmxny] Control+RButton forces normal behavior[*:19ebmxny] Great for reading or scrolling long documents. Click and drag slowly to follow along as you read, or quickly drag across the screen to jump to the end or anywhere in between.[*:19ebmxny] Customizable! Thanks to the recent contributors & those reporting bugs. 'Tips & Help' said 'History' said. NoteHighlight - Home. Onetastic for OneNote. Onetastic is a free multi-purpose addin for Microsoft OneNote 2010 and 2013 Documentation for Macro Language is now available. Click here to check it out. To learn more about Onetastic, watch this intro video: Want to learn more?

It's Free! Onetastic is absolutely free! Download Now Explore awesome features of Onetastic Macros Automate routine tasks with macrosSearch & replace, Sort, Table of Contents... Macroland Download, rate, review and enjoymore macros at Macroland Learn more > OneCalendar View your OneNote pageson a calendar view. Image Utilities Crop or rotate your images and printoutsor select and copy text from them. Custom Styles Customize styles in OneNote just likeyou can do so in Microsoft Word Learn more > Favorites/Shortcuts Access your favorite pages from a menuor pin shortcuts to them on your desktop Learn more > Sqlshell | Free Development software downloads. Chapter 5. Text Tables. The default field separator is a comma (,).

A different field separator can be specified within the SET TABLE SOURCE statement. For example, to change the field separator for the table mytable to a vertical bar, place the following in the SET TABLE SOURCE statement, for example: SET TABLE mytable SOURCE "myfile;fs=|" Since HSQLDB treats CHAR and VARCHAR strings the same, the ability to assign a different separator to the latter is provided. When a different separator is assigned to a VARCHAR, it will terminate any CSV field of that type.

For example, if the first field is CHAR, and the second field VARCHAR, and the separator fs has been defined as the pipe (|) and vs as the period (.) then the data in the CSV file for a row will look like: First field data|Second field data.Third field data This facility in effect offers an extra, special separator which can be used in addition to the global separator. SET TABLE mytable SOURCE "myfile;fs=|;vs=. " special indicators for separators. 微信 API. MemTrack: Tracking Memory Allocations in C++ Introduction This article describes MemTrack, a library which replaces the standard operator new with a special version that records information about each memory allocation.

This information can be analyzed later for debugging purposes or for performance measurement. The article begins by discussing the use of macros to instrument memory allocation in C and the use of macros combined with "placement operator new" to accomplish the same thing in C++. Then it describes the alternative approach used in the MemTrack library. Instrumenting Memory Allocations in C The use of macros to instrument memory allocation in C is a well-known technique, and it's worth reviewing. Typically, __FILE__ and __LINE__ will be embedded inside another macro, so that they can be applied transparently.

#define malloc(size) custom_malloc(size, __FILE__, __LINE__) Instrumenting Memory Allocations in C++ void *operator new(size_t size, void *p) { return p; } Object *object = new(buffer) Object; Overview The new Macro. How to List Files Opened By a Process « AIX Solaris HPUX UNIX Linux system storage administration ksh/perl scripting. Introduction /proc file system procfiles command pstat command lsof command Conclusion Introduction A system administrator might find it necessary to obtain information about all files that are currently opened by a particular process. A process might have a defect that causes it to continuously create files without closing them, or it might open files, read and write to those files, but fail to close the files afterwards. In such cases it is useful to obtain as much information as possible about the files that have been opened by a process to help in pinpointing the cause of the problem.

AIX has a virtual file system mounted at /proc that provides information about running processes, including the files opened by those processes. AIX also includes a number of commands that can be used to obtain information about files opened by processes. Again we see that process 184422 has one opened file with file descriptor 4. Pstat command The PID for cron is 323762, which is 0x4F0B2 in hex.

使用 lsof 查找打开的文件. 在 UNIX® 环境中,文件无处不在,这便产生了一句格言:“任何事物都是文件”。 通过文件不仅仅可以访问常规数据,通常还可以访问网络连接和硬件。 在有些情况下,当您使用 ls 请求目录清单时,将出现相应的条目。 在其他情况下,如传输控制协议 (TCP) 和用户数据报协议 (UDP) 套接字,不存在相应的目录清单。 但是在后台为该应用程序分配了一个文件描述符,无论这个文件的本质如何,该文件描述符为应用程序与基础操作系统之间的交互提供了通用接口。 因为应用程序打开文件的描述符列表提供了大量关于这个应用程序本身的信息,所以能够查看这个列表将是很有帮助的。 Lsof 简介 只需输入 lsof 就可以生成大量的信息,如清单 1 所示。 清单 1. lsof 的示例输出 bash-3.00# lsof COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME sched 0 root cwd VDIR 136,8 1024 2 / init 1 root cwd VDIR 136,8 1024 2 / init 1 root txt VREG 136,8 49016 1655 /sbin/init init 1 root txt VREG 136,8 51084 3185 /lib/libuutil.so.1 vi 2013 root 3u VREG 136,8 0 8501 /var/tmp/ExXDaO7d ...

每行显示一个打开的文件,除非另外指定,否则将显示所有进程打开的所有文件。 FD 和 Type 列的含义最为模糊,它们提供了关于文件如何使用的更多信息。 与 FD 列相比,Type 列则比较直观。 转到 /proc 目录 尽管与使用 lsof 没有什么直接的关系,但对 /proc 目录进行简要的介绍是有必要的。 在 /proc 目录的每个进程目录中存在着各种文件,它们可以使得应用程序简单地了解进程的内存空间、文件描述符列表、指向磁盘上的文件的符号链接和其他系统信息。 常见用法 前面,我向您介绍了如何简单地运行不带任何参数的 lsof,以便显示关于每个进程所打开的文件的信息。 查找应用程序打开的文件 lsof 常见的用法是查找应用程序打开的文件的名称和数目。 要指定单个进程,可以使用 -p 参数,后面加上该进程的 PID。 清单 2. 查找打开某个文件的应用程序. Huawei Proxy Notification. Spock - the enterprise ready specification framework. Sublime Text 2 设置文件详解 | Hey@feelcss.

Sublime text

Sublime Text 2 设置文件详解 | Hey@feelcss. CCleaner - Optimization and Cleaning - Free Download. Online Diagram & Flowchart Software | LucidChart. HTTrack Website Copier - Free Software Offline Browser (GNU GPL) Pastebin.com - #1 paste tool since 2002!

Demo-tools. yEd - Graph Editor. yEd is a powerful desktop application that can be used to quickly and effectively generate high-quality diagrams. Create diagrams manually, or import your external data for analysis. Our automatic layout algorithms arrange even large data sets with just the press of a button. yEd is freely available and runs on all major platforms: Windows, Unix/Linux, and Mac OS X. The latest release is version 3.12.2 Key Features Import your own data from an Excel® spreadsheet (.xls) or XML Create diagrams with easevia an intuitive user interface. Automatically arrangeyour diagram elements. Export bitmap and vector graphicsas PNG, JPG, SVG, PDF, SWF yEd in 90 seconds Supported Diagrams yEd supports a wide variety of diagram types. Support Resources The yEd online support resources include the yEd Graph Editor manual and the yEd forum where you can give us feedback.

Dev-tools

Lang. Zim - a desktop wiki.