Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

Tuesday, December 2, 2008

Remove Malware for Windows

Malwarebytes' Anti-Malware

http://www.malwarebytes.org/

ccleaner.com

http://www.ccleaner.com/

Thursday, July 10, 2008

Console

http://sourceforge.net/projects/console/

Saturday, April 26, 2008

Can not stop external hard disk

1. When the USB device would not stop DUE TO a “program still accessing it.” Instead of shutting down explorer.exe in the Task Manager area, just open Windows Explorer (usually at C:\Windows\explorer.exe) and immediately close it without clicking on any files. Then try stopping the USB device. This worked for me for a Western Digital 500 GB hard drive.

2. Filemon

3. unlocker
http://ccollomb.free.fr/unlocker/

Tuesday, March 18, 2008

WinSCP

http://winscp.net/eng/index.php

An open source SFTP client and FTP client for Windows. Its main function is the secure file transfer between a local and a remote computer. Beyond this, WinSCP offers basic file manager functionality. It uses Secure Shell (SSH) and supports, in addition to Secure FTP, also legacy SCP protocol.

Tuesday, January 22, 2008

Sunday, January 13, 2008

Website development Tools

Apache

PHP

MySQL

all-in-one package

WAMP

http://www.wampserver.com/en/index.php

Friday, January 11, 2008

OpenSSH

For Windows: PuTTY

Thursday, November 8, 2007

WinCVS

http://www.devdaily.com/wincvs/HowToUseWinCVS/

http://ikon.as/wincvs-howto/#startingnew

TightVNC

An enhanced version of VNC (an abbreviation for Virtual Network Computing) is a great client/server software package allowing remote network access to graphical desktops.

TightVNC can be used to perform remote control and administration tasks in Windows, Unix and mixed network environments.

http://www.tightvnc.com/

Tuesday, November 6, 2007

LaTeX

A very power formatter, you should not miss it.

Good tutorial on the website:

http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/

Monday, June 18, 2007

Using the MATLAB Engine

http://www.mathworks.com

Some of the things you can do with the MATLAB engine are
  • Call a math routine, for example, to invert an array or to compute an FFT from your own program. When employed in this manner, MATLAB is a powerful and programmable mathematical subroutine library.

  • Build an entire system for a specific task, for example, radar signature analysis or gas chromatography, where the front end (GUI) is programmed in C and the back end (analysis) is programmed in MATLAB, thereby shortening development time.

The following topics provide information for using MATLAB engine:

The MATLAB engine operates by running in the background as a separate process from your own program. This offers several advantages:

  • On UNIX, the MATLAB engine can run on your machine, or on any other UNIX machine on your network, including machines of a different architecture. Thus you could implement a user interface on your workstation and perform the computations on a faster machine located elsewhere on your network. The description of the engOpen function offers further information.

  • Instead of requiring that all of MATLAB be linked to your program (a substantial amount of code), only a small engine communication library is needed.

The Engine Library

The engine library contains the following routines for controlling the MATLAB computation engine. Their names all begin with the three-letter prefix eng. These tables list all the available engine functions and their purposes.

C Engine Routines

FunctionPurpose

engOpen

Start up MATLAB engine

engClose

Shut down MATLAB engine

engGetVariable

Get a MATLAB array from the MATLAB engine

engPutVariable

Send a MATLAB array to the MATLAB engine

engEvalString

Execute a MATLAB command

engOutputBuffer

Create a buffer to store MATLAB text output

engOpenSingleUse

Start a MATLAB engine session for single, nonshared use

engGetVisible

Determine visibility of MATLAB engine session

engSetVisible

Show or hide MATLAB engine session

Fortran Engine Routines

FunctionPurpose

engOpen

Start up MATLAB engine

engClose

Shut down MATLAB engine

engGetVariable

Get a MATLAB array from the MATLAB engine

engPutVariable

Send a MATLAB array to the MATLAB engine

engEvalString

Execute a MATLAB command

engOutputBuffer

Create a buffer to store MATLAB text output

The MATLAB engine also uses the mx prefixed API routines discussed in Creating C Language MEX-Files and Creating Fortran MEX-Files.

Communicating with MATLAB

On UNIX, the engine library communicates with the MATLAB engine using pipes, and, if needed, rsh for remote execution. On Microsoft Windows, the engine library communicates with MATLAB using a Component Object Model (COM) interface. COM and DDE Support (Windows Only), contains a detailed description of COM.

GUI-Intensive Applications

If you have graphical user interface (GUI) intensive applications that execute a lot of callbacks through the MATLAB engine, you should force these callbacks to be evaluated in the context of the base workspace. Use evalin to specify that the base workspace is to be used in evaluating the callback expression, as follows:

engEvalString(ep, "evalin('base', expression)")

Specifying the base workspace in this manner ensures MATLAB processes the callback correctly and returns results for that call.

This does not apply to computational applications that do not execute callbacks.

Thursday, June 14, 2007

Source Insight

http://www.sourceinsight.com/

Source Insight is a revolutionary project oriented program code editor and code browser, with built-in analysis for C/C++, C#, and Java programs, as well as other languages. Source Insight parses your source code and maintains its own database of symbolic information dynamically while you work, and presents useful contextual information to you automatically. Not only is Source Insight a great program editor, but it also can display reference trees, class inheritance diagrams, and call trees. Source Insight features the quickest navigation of source code and source information of any programming editor. Let Source Insight loose on your project and see what a difference it makes in your productivity. A free 30 day trial version is available here.

Source Insight was designed for large, demanding, real world programming projects. In fact, Source Insight is being used today to develop some of the largest and most successful commercial software products ever written.