Main > Free Download Search >

Free craftsman spy 1.0.5 software for linux

craftsman spy 1.0.5

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 96
Craftsman Spy 1.0.5

Craftsman Spy 1.0.5


Craftsman Spy is a framework for JDBC logging. more>>
Craftsman Spy is a an open source and free framework for JDBC logging. Craftsman Spy is a JDBC driver implementation.

This logger logs all SQL connection and processings with execution spent time, all the stored procedures with arguments, all the batch processings and the result sets.

No need to modify your application in order to integrate JDBC logging with Craftsman Spy. The application MUST use the craftsman.spy.SpyDriver and MUST be launched with the -Dspy.driver=... system property.

Be carefull this JDBC driver SHOULD not be used in production mode. Use it only in development or pre-production system.

,b>Usage:

Code

The two solutions can be used as the following examples :
System.setProperty("spy.driver","vendor.database.Driver");// or with the -Dspy.driver=vendor.database.Driver JVM option
Class.forName("craftsman.spy.SpyDriver");
Connection c = DriverManager.getConnection("jdbc:database:mydata");
Class.forName("craftsman.spy.SpyDriver");
Connection c = DriverManager.getConnection("jdbc:spy:vendor.database.Driver:database:mydata");

Log configuration

The log4j.properties or log4j.xml configuration file SHOULD contain the following lines :
log4j.category.craftsman.spy=DEBUG, SpyFile
log4j.appender.SpyFile=org.apache.log4j.DailyRollingFileAppender
log4j.appender.SpyFile.DatePattern=.yyyy.MM.dd
log4j.appender.SpyFile.File=spy.log
log4j.appender.SpyFile.layout=org.apache.log4j.PatternLayout
log4j.appender.SpyFile.layout.ConversionPattern=%m%n

<<less
Download (0.37MB)
Added: 2005-12-13 License: LGPL (GNU Lesser General Public License) Price:
1414 downloads
Tag Soup 1.0.5

Tag Soup 1.0.5


TagSoup is a SAX2 parser written in Java. more>>
TagSoup is a SAX2 parser written in Java that, instead of parsing well-formed or valid XML. Tag Soup parses HTML as it is found in the wild: nasty and brutish, though quite often far from short.

By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. It is a parser, not a whole application; it isnt intended to permanently clean up bad HTML, as HTML Tidy does, only to parse it on the fly.

The following options are understood:

--files
Output into individual files, with html extensions changed to xhtml. Otherwise, all output is sent to the standard output.
--html
Output is in clean HTML: the XML declaration is suppressed, as are end-tags for the known empty elements.
--omit-xml-declaration
The XML declaration is suppressed.
--method=html
End-tags for the known empty HTML elements are suppressed.
--pyx
Output is in PYX format.
--pyxin
Input is in PYXoid format (need not be well-formed).
--nons
Namespaces are suppressed. Normally, all elements are in the XHTML 1.x namespace, and all attributes are in no namespace.
--nobogons
Bogons (unknown elements) are suppressed. Normally, they are treated as empty.
--nodefaults
suppress default attribute values
--nocolons
change explicit colons in element and attribute names to underscores
--norestart
dont restart any normally restartable elements
--any
Bogons are given a content model of ANY rather than EMPTY.
--lexical
Pass through HTML comments. Has no effect when output is in PYX format.
--reuse
Reuse a single instance of TagSoup parser throughout. Normally, a new one is instantiated for each input file.
--nocdata
Change the content models of the script and style elements to treat them as ordinary #PCDATA (text-only) elements, as in XHTML, rather than with the special CDATA content model.
--encoding=encoding
Specify the input encoding. The default is the Java platform default.
--help
Print help.
--version
Print the version number.

<<less
Download (0.050MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
FXPy 1.0.5

FXPy 1.0.5


FXPy is a Python extension module which provides an interface to the FOX cross-platform GUI library. more>>
FXPy is a Python extension module which provides an interface to the FOX cross-platform GUI library.

The FXPy API follows the standard FOX API very closely and for the most part you can use FOX documentation as a reference. But of course, Python isnt C++ and so here are some differences of which you should be know.

Any function which usually takes an FXString as an input instead takes a Python string. Similarly, functions which usually return an FXString will instead return a Python string. For functions which would accept a NULL or empty string argument, just pass an empty string ("") or None.

In FOX, message maps are defined as static class members. In FXPy, you just associate messages with message handlers in the class constructor using the FXMAPFUNC(), FXMAPTYPE(), FXMAPTYPES() or FXMAPFUNCS() methods. See almost any of the example programs for examples of how this is done.

As in C++ FOX, the last argument passed to your message handler functions contains message-specific data. For instance, all SEL_PAINT messages pass an FXEvent object through this argument to give you some information about the size of the exposed rectangle. On the other hand, a SEL_COMMAND message from an FXHeader object passes the index of the selected header item through this argument. Instead of guessing whats in this last argument, your best bet is to instead invoke a member function on the sending object to find out what you need, instead of relying on the data passed through this pointer.

For example, if you get a SEL_COMMAND message from an FXColorWell object, the data passed through that last argument is supposed to be the new RGB color value. Instead of trying to interpret the arguments contents, just turn around and call the color wells getRGBA() member function to retrieve its color. Similarly, if you get a SEL_COMMAND message from a tree list, call its getCurrentItem() method to find out which item was selected.
<<less
Download (0.92MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1195 downloads
YaFM 1.0.5

YaFM 1.0.5


YaFM is a web-based file manager written in PHP. more>>
YaFM is a web-based file manager written in PHP and licensed under the GPL.
It allows you to upload, download, view, edit, copy, move/rename, change permissions and owner group of a single file or a group of files which reside on a unix filesystem local to the script.
It does not require MySQL (although you can easily implement a SQL-based authenticationscheme if you need one).
It should be relatively easy to change the look and feel of YaFM since Ive tried to keep PHP code and HTML separate (the current look and feel is based on Adam Suttons phpFtp)
Installation:
Note: most of these instructions apply to RedHat-like systems. In RedHat the default webroot for apache is /var/www/html and CGI programs are placed into /var/www/cgi-bin and this layout is respected in the .tar.gz archives and RPMs youve downloaded from
YaFMs website.
Also the assumed location of your php CGI executable is /usr/bin/php and the PHP configuration file is assumed to be in /etc/php.ini If your installation differs or you want to install YaFM to another location please extract the archives manually, also you may have to modify the first line of the yafm.phps script!
Quick instructions:
If youve got the .tar.gz package install it as follows:
# tar --directory=/ -xvzf /path/to/yafm-release.tar.gz
If youve got the .tar.bz2 package install it as follows:
# bzcat /path/to/yafm-release.tar.bz2 | tar --directory=/ -xv
If youve got the RPM, install it as follows:
# rpm -Uvh /path/to/fileman-release.rpm
(note: replace yafm-release with the respective release number, e.g. yafm-1.0.5)
Now you should have a working YaFM installation, you can access it at
http://your-host-name/cgi-bin/yafm.phps
WARNING: by default two accounts are created user1 with password1 and
user2 with password2. Please edit the login.inc file to change accounts
Enhancements:
This is a new feature and bugfix release of YaFM but there may still be a few gotchas.
- File Finder implemented
- HTTPS compatible (https://yourhost/cgi-bin/yafm.phps now works)
- You can keep using YaFM while a download is in progress
- Downloads only timeout after one hour
- Login fixes
- YaFM looks better now on Internet Explorer
- More layout fixes
<<less
Download (0.065MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
1487 downloads
Symbion SSL Proxy 1.0.5

Symbion SSL Proxy 1.0.5


SSL Proxy server listens on a TCP port, accepts SSL connections, and forwards them to another local or remote TCP port. more>>
SSL Proxy server listens on a TCP port, accepts SSL connections, and forwards them to another local or remote TCP port.
For example, it is possible to create an HTTPS server if you have an HTTP server and you run an SSL Proxy server on port 443 which forwards the connections to port 80.
SSL Proxys design makes it as secure as possible and still perform well.
Enhancements:
- Improved certificate handling (chained certificates are now supported), more error information on SSL protocol errors during SSL_accept(), -U and -D options (buffer size), and a "powered by" logo.
<<less
Download (0.024MB)
Added: 2005-09-30 License: GPL (GNU General Public License) Price:
1493 downloads
FFTscope 1.0.5

FFTscope 1.0.5


FFTscope is a nice visualization plugin for the AlsaPlayer. more>>
FFTscope is a nice visualization plugin for the AlsaPlayer.

The main purpose of this project is to demonstrate how to write a vis plugin for the AlsaPlayer visualization API.

<<less
Download (MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
865 downloads
Swampp 1.0.5

Swampp 1.0.5


Swampp project is a gentle Content Management System that doesnt do a whole lot of managing. more>>
Swampp project is a gentle Content Management System that doesnt do a whole lot of managing.
Instead of getting in your way, it helps you along your way. It was designed to make it easier for you to produce small Web sites.
It relies on the filesystem, so you can edit your pages with your favorite text editor.
It gathers information about your pages by looking at their markup. It draws menubars, uses pretty URLs, and is fully standards-compliant.
Main features:
- XHTML 1.0 Strict compliance
- Tableless layout
- Complete separation of content and presentation
- Just enough customizability:
- Site title
- Your name
- Colors
- Primary menubar items
- Considerate printer stylesheet
- Intuitive filesystem approach
- Clean URLs
- Written in PHP
- Novel browsing interface
- Automatic detection of page titles
- Cross-browser layout consistency
- Nice typographic styling
<<less
Download (0.012MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1129 downloads
OSSP ex 1.0.5

OSSP ex 1.0.5


OSSP ex is a small ISO-C++ style exception handling library for use in the ISO-C language. more>>
OSSP ex is a small ISO-C++ style exception handling library for use in the ISO-C language. It allows you to use the paradigm of throwing and catching exceptions in order to reduce the amount of error handling code without making your program less robust.

This is achieved by directly transferring exceptional return codes (and the program control flow) from the location where the exception is raised (throw point) to the location where it is handled (catch point) -- usually from a deeply nested sub-routine to a parent routine.

All intermediate routines no longer have to make sure that the exceptional return codes from sub-routines are correctly passed back to the parent.

The OSSP ex facility also provides advanced exception handling features like shielded and deferred exceptions. Additionally, OSSP ex allows you to choose the used underlying machine context switching facility and optionally support multi-threading environments by allowing you to store the exception catching stack in a thread-safe way.
<<less
Download (0.30MB)
Added: 2005-10-03 License: MIT/X Consortium License Price:
1481 downloads
moJangl 1.0.5

moJangl 1.0.5


A simple tool that allows you to call anyone that has an email address. more>> A simple tool that allows you to call anyone that has an email address.

moJangl is a Mozilla add on that allows you to call anyone who has an email address linked in a web page.
The extension places a Jangl icon next to all mailto: links. Click the icon and well give you a Jangl number to call that will send a voice message to that email address!
If they want to call you back, well give them a Jangl number to send a voice mail to your email address in return. Once youve both made that connection, its up to you whether or not to block them from contacting you again, or send that persons calls directly to your phone to talk live!
Main features:
- Respond to classified ads
- Leave audio comments for your favorite blog or podcast
- Send a voice message to anyone that displays an email address on the web, anywhere in the world!
System requirements:
- Firefox 1.5 or more

<<less
Download (11KB)
Added: 2009-04-29 License: Freeware Price: FREE
177 downloads
Cricket 1.0.5

Cricket 1.0.5


Cricket is a high performance, extremely flexible system for monitoring trends in time-series data. more>>
Cricket project is a high performance, extremely flexible system for monitoring trends in time-series data. Cricket was expressly developed to help network managers visualize and understand the traffic on their networks, but it can be used all kinds of other jobs, as well.
Cricket has two components, a collector and a grapher. The collector runs from cron every 5 minutes (or at a different rate, if you want), and stores data into a datastructure managed by RRD Tool. Later, when you want to check on the data you have collected, you can use a web-based interface to view graphs of the data.
Cricket reads a set of config files called a config tree. The config tree expresses everything Cricket needs to know about the types of data to be collected, how to get it, and from which targets it should collect data. The config tree is designed to minimize redundant information, making it compact and easy to manage, and preventing silly mistakes from occurring due to copy-and-paste errors.
Cricket is written entirely in Perl and is distributed under the GNU General Public License.
Cricket is developed on Solaris machines running under Apache. It is known to work on Linux, HP-UX, variants of BSD, and other operating systems. Some users are successfully using Cricket under Windows NT and/or Windows 2000, but at this time, no one has documented this.
Enhancements:
- An error with case dependance with new style views was eliminated.
- A "label" tag was added to the "view" dictionary. This eliminates the need for using spaces in view names. It also allows the Cricket admin to alias different targetTypes to the same name in the HTML menu -- use this feature wisely!
- systemPerfConf.pl was reverted back to using our own SNMP_Session based SNMP interface, and interfaces detection was added [Mike Han]
- The distributed sample-config/Defaults has width-hint and height-hint commented out, to cut down on squashed graphics.
- The handling of NaN was standardized throughout the code. To check for NaN, use isNaN from Common::Util.
- All text files now have LF line endings. In the 1.0.4 release, a number of files were inadvertantly changed to have CRLF line endings.
- A small bug in threshold monitoring was identified and fixed by Jase MacLeod.
- Error reporting by the monitor subsystem has been reviewed and made more extensive, based on a patch by Andrew Clark. If you have scripts that look for the text string "Skipping", you are well advised to look for "Monitor" instead, and review your scripts while youre at it.
- We now support s390x-linux, thanks to Shane Stixrud. [Patch #877924]
<<less
Download (0.40MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
897 downloads
ColorSnatch 1.0.5

ColorSnatch 1.0.5


ColorSnatch is a cross-platform GUI board game. more>>
ColorSnatch project is a cross-platform GUI board game.
ColorSnatch is a board game built using the Lazarus libraries. Player 1 starts in the lower left corner, player 2 in the upper right.
Each turn, players choose one color to add to their territory. Then, all adjacent tiles of that color are captured. The first player to capture 50% of the field wins. It can be played vs. an AI or another human. Internationalization is available.
The game is also a demonstration of Lazaruss capabilities.
Enhancements:
- Basque translation added.
- Minor bugfixes.
<<less
Download (MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1038 downloads
SiteSays 1.0.5

SiteSays 1.0.5


SiteSays enables you to post and view comments about sites while surfing. more>>
SiteSays enables you to post and view comments about sites while surfing.

The SiteSays extension allows you to post and view comments about sites as you surf in a convenient little window in the corner of your browser. It is a novel way to collaborate and interact online.

<<less
Download (0.046MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
924 downloads
VNC Spy 0.1

VNC Spy 0.1


VNC Spy monitors network traffic to find keystrokes entered into a VNC viewer. more>>
VNC Spy monitors network traffic to find keystrokes entered into a VNC viewer. Letters the user types are printed to your screen.

So, for example, if an engineer insists on using VNC to log in from his Windows machine into your network whenever he wants from home, try leaving vncspy running for a while. I like to use the command:

sudo vncspy eth0 | tee keylog

Note that you need to run vncspy as root. You can either su root, or sudo.

This will sniff all keystrokes he enters from home to his VNC server. Assuming he has to enter his user name and password to log-on, you should see his user name in the keylog, followed by his password. Its that simple!

When you get his password, try writing it on a sticky-note, and pasting it on his monitor. Ive found showing people their passwords to be very effective at improving their security habits.

Usage:

vncspy must be run as root. It takes only one optional parameter, the interface to sniff on. If left out, it will use the first interface on your system, typically eth0.

Compling:

The only major dependency for vncspy is the pcap development library. On Debian or Ubuntu, you may issue a command like:

sudo apt-get install libpcap0.8-dev

If your system does not have libpcap available, you can install it from source from:

http://www.tcpdump.org.

Once you have libpcap, compiling vncspy is simple. Just type:

make

It should create the vncspy program. Let me know if you need help.
<<less
Download (0.004MB)
Added: 2006-10-27 License: Public Domain Price:
1108 downloads
BitAnarch 1.0.5

BitAnarch 1.0.5


BitAnarch provides a BitTorrent client with many useful features and reduced resource usage. more>>
BitAnarch provides a BitTorrent client with many useful features and reduced resource usage.
BitAnarch is a compact BitTorrent client.
Main features:
- available in three languages
- multiple downloads support
- automatic bandwidth distribution
- full Unicode filename support
- newsgroup scanning
- automation
- drag-and-drop support
Enhancements:
- Bugfix: crashes at program termination/when the machine is very busy
- Bugfix: Error message does not appear in non-English language settings
- Silent allocation for NTFS
- Stability greatly increased
- CPU usage greatly decreased when minimized
- System newsreader is now used to view nntp messages
- The "Stay on top" setting now effects immediately, restart is no longer needed
- Download rate limit
- A spiced up user interface
<<less
Download (0.70MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
974 downloads
KCometen4 1.0.5

KCometen4 1.0.5


This comes as the latest version of this nice OpenGL screensaver for KDE 4. more>> KCometen4 1.0.5 comes as the latest version of this nice OpenGL screensaver for KDE 4. Inside a box is a nifty light show that features lightning and exploding comets. KCometen4 lets you configure various effects like comet behavior, camera movement, box face images, etc.

Enhancements

  • Spread out comet origination
  • Sync kcometen4.desktop translations with KDE 4.2.4
  • Remove resize hack; bug fixed in KDE 4.2.3
  • Clean up how the config changes interact with the preview
  • Small fixes to CMakeLists.txt files

Requirements:

  • KDE 4.x


<<less
Added: 2009-07-01 License: GPL Price: FREE
1 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5