Main > Free Download Search >

Free flashgot 0.6.1 software for linux

flashgot 0.6.1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 91
FlashGot 0.6.1 for Firefox

FlashGot 0.6.1 for Firefox


FlashGot - download one link, selected links or all the links of a page at the maximum speed with a single click. more>>
FlashGot - download one link, selected links or all the links of a page at the maximum speed with a single click, using the most popular external download managers for Windows, Mac OS X, Linux and FreeBSD (dozens currently supported products, see http://flashgot.net for details).
FlashGot offers also a Build Gallery functionality which helps to synthetize full media galleries in one page, from serial contents previously scattered on several pages, for easy and fast "download all".
FlashGot contextual menu
- for Windows (FlashGet, Free Download Manager, Fresh Download, GetRight, GigaGet, HiDownload, iGetter, InstantGet, Internet Download Accelerator, Internet Download Manager, LeechGet, Mass Downloader, Net Transport, NetXfer (Net Transport 2), NetAnts, ReGet, Star Downloader, Thunder (Chinese only popular product), TrueDownloader and Ukrainian Download Master [Russian language only] ), WellGet
- for Linux / FreeBSD / other Unix-like OSes (Aria, cURL, Downloader 4 X, GNOME Gwget and KDE KGet )
- for Mac OS X (iGetter and Speed Download)
<<less
Download (0.23MB)
Added: 2007-07-16 License: MIT/X Consortium License Price:
534 downloads
SOHT 0.6.1

SOHT 0.6.1


SOHT stands for Socket over HTTP Tunneling and allows you to tunnel socket connections through an HTTP proxy. more>>
SOHT stands for Socket over HTTP Tunneling and allows you to tunnel socket connections through an HTTP proxy.
Restrictive firewalls often prohibit all outgoing trafic except for HTTP.
This application allows you to tunnel socket connections over the HTTP protocol.
This application consists of a server that serves as a proxy and a client which tunnels a socket connection over an HTTP connection to the server.
The current server is written in Java, and there are clients in Java and .NET.
Enhancements:
- Updated to fix an issue that prohibited connections to ports above 32767.
<<less
Download (0.33MB)
Added: 2007-03-27 License: BSD License Price:
949 downloads
fileschanged 0.6.1

fileschanged 0.6.1


fileschanged is a command line utility for monitoring files for alterations. more>>
fileschanged is a GNU/Linux command-line utility that reports when files have been altered.

This software is a client to the FAM (File Alteration Monitor) server that is now available in some distributions. Heres how the fileschanged FAM client works: you give it some filenames on the command line and then it monitors those files for changes.

When it discovers that a file has changed (or has been altered), it displays the filename on the standard-output.

Heres what the usage looks like:

Usage: fileschanged [OPTION...] [FILE]...
Monitors FILEs for alterations. Display the filenames of FILEs that were created, changed, deleted, started execution or finished executing.

-s, --show=EVENT[,...] Display created, changed, deleted, executing, or
executed files (Default is "created,changed"
-a, --show-all Display all file events and the associated action
-f, --files-to-monitor (Default) Monitor the FILEs on the command line
-l, --filelist=FILE Monitor the list of filenames inside FILE
-r, --recursive Monitor subdirectories of directories
-t, --timeout=N Delay showing changed files for N seconds (Def=2)
-p, --display-action Display action when showing altered files
-x, --exec=PROG Run PROG when file altered (PROG action filename)
-?, --help Give this help list
--usage Give a short usage message
-V, --version Print program version

FILEs must exist when monitoring begins, or they will not be monitored.
<<less
Download (0.029MB)
Added: 2005-04-07 License: GPL (GNU General Public License) Price:
1661 downloads
Yasm 0.6.1

Yasm 0.6.1


Yasm is a complete rewrite of NASM. more>>
Yasm is a complete rewrite of the NASM assembler under the "new" BSD License (some portions are under other licenses, see COPYING for details).
Yasm project is designed from the ground up to allow for multiple assembler syntaxes to be supported (eg, TASM, GAS, NASM etc.) in addition to multiple output object formats and even multiple instruction sets. Another primary module of the overall design is an optimizer module.
The core focus of Yasm is not the "yasm" commandline frontend; rather, it is the Libyasm library and associated LoadableModules? (see the ProgrammerReferences for documentation).
Libyasm and the modules are intended for reuse in other sorts of programs dealing with code at the assembly level (compilers, debuggers, etc). Someday, libyasm may be packaged separately from the rest of Yasm.
Key Current User-Visible Yasm major features:>
- Nearly feature-complete lexing and parsing of (preprocessed) NASM syntax?.
- AMD64 support (enabled using "BITS 64" and "-m amd64" option)
- 64-bit (and larger) integer constants allowed (including math operations).
- Internationalization support via GNU gettext.
- A simple 2-pass optimizer (its a bit better than the NASM one).
- The "real" NASM preprocessor (imported from NASMs source tree).
- Binary object file? output (NASM style).
- COFF object file? output, for use with DJGPP.
- Win32 object file? output (including Win64/AMD64 support).
- STABS debug format?.
- ELF32 and ELF64 object file output. No debugging information included at this point.
- Portability; currently compilable on:
- UNIX and compatibles (FreeBSD and Linux tested, GNU configure based autoconfiguration)
- DOS (using DJGPP)
- Windows (using Visual C++ or CygWin).
Key Internal Main features:>
- A NASM syntax parser written in yacc. This simplifies the source code and increases performance: yacc-generated parsers are almost always faster than hand-written ones. Also, yacc (and its GNU implementation, bison) is an extremely well-tested and well-documented tool.
- Architecture-specific instruction parsers hand-written for simplicity and size, as well as to make it easy to add additional architectures while retaining the same front-end syntax. The blend of yacc for syntax and a hand-written parser for instructions strikes a great balance between the strengths and weaknesses of each approach.
- A NASM syntax? lexer written in re2c. A highly efficient scanner generator (almost always faster than lex/flex), its also very embeddable due to its code generation methodology, allowing a number of re2c scanners to be used in various places in yasm without any worries about naming conflicts.
- Many of the modular interfaces at least superficially finished. This is still an area that needs a lot of work.
- A small set of portable equivalants of useful functions that are standard on some systems (detected via configure), such as the queue(3) set of functions, strdup, strcasecmp, and mergesort.
- A decent (and growing) set of assembler test input files to test the entire assembler as well as specific modules.
Important Differences from NASM:
- Yasm defaults to reading from standard input if no files are specified. When an input file is specified, Yasm behaves like NASM.
- A number of command line options are different. Run "yasm --help" for a quick command line option summary, or read the full yasm(1) manpage for detailed descriptions of all command line options.
Enhancements:
- This release adds SSE4.1 and SSE4.2 instruction support, a .set directive in the GAS parser, and allowing Mach-O custom sections.
- Bugfixes include fixes to AMD Pacifica (SVM) instructions, absolute section handling, RIP-relative cross-section references in bin output, and many others.
<<less
Download (1.1MB)
Added: 2007-06-16 License: BSD License Price:
876 downloads
Klear 0.6.1

Klear 0.6.1


Klear is a KDE application for recording video streams from your DVB device. more>>
Klear is a KDE application for recording video streams from your DVB device and watching TV with all advantages of digital television (like EPG, OSD, and so on).
Klear project is developed for SWP lectured by Prof. Knabe at the TFH Berlin. We started in October 2004, so this program is currently under heavy development. Have a look at the features to know whats working and whats not.
Main features:
- DVB Playback
- nifty GUI with fullscreen and minimal mode
- Internal (and player-independant) Tuner for DVB-T and DVB-S
- screenshot capability
- Video-Deinterlacing
- Audio-muting
- system preferences
- complete graphical configuration system
- quick-recording system
- full featured scheduled recording
- recording formats: MPEG TS (raw) and MPEG PS (realtime conversion)
Enhancements:
- Added Gnome support
- Added support for recording to other partitions
<<less
Download (0.56MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
828 downloads
tplay 0.6.1

tplay 0.6.1


TPLAY is a buffered audio player for Linux 2.0 or newer, Solaris and BSDs. more>>
tplay is a buffered audio player for Linux 2.0 or newer, Solaris and BSDs. RIFF/WAVE (WAV) and Sun audio (AU) file headers are recognized. This is still considered BETA software and may not work as expected. Please mail me for bug reports, opinions or suggestions.

RIFF/WAVE (WAV) and Sun audio (AU) file headers are recognised, too.

Buffer size is defaulted to 512k. It is about 3 seconds CD audio (44100Hz/sample, 16bytes, stereo). If filename is not given, standard input is used. If -x (or --swap) flag is set, the byte order of audio sample is swapped before playing. The default is little endian or big endian according to hardware and it is guessed by configure script.

Option -r (or --raw) forces tplay to handle the sample as an raw PCM audio sample. Sun audio or WAV headers are ignored.

<<less
Download (0.081MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1185 downloads
JSTUN 0.6.1

JSTUN 0.6.1


JSTUN is a STUN Through Network Address Translation implementation. more>>
JSTUN project is a java based STUN (Simple Traversal of User Datagram Protocol (UDP) Through Network Address Translation (NAT)) implementation. STUN provides applications a mean to discover the presence and type of firewalls or NATs between them and the public internet.
Additionally, in presence of a NAT STUN can be used by applications to learn the public Internet Protocol (IP) address assigned to the NAT.
So far, most of the message headers and attributes as standardized in RFC 3489 are part of "JSTUN". The current "JSTUN" version also includes a STUN-Client to discover firewalls and NATs. "JSTUN" is licensed unter GNU Gerneral Public License.
Version restrictions:
- Due to the lack of RFC compliant STUN servers I could not test the shared secret request / response functionality. Additionally, the message attribute username, password and message integrity are not tested for the same reason. The implementation of the message attribute message integrity is not completed, because I see no reason to add a cryptographic library as long as no public available STUN server supports message integrity.
- The reality is not as dark as it might seem after reading the previous section. All tested STUN servers provided a minimal set of functionality that is required to discover firewalls and NATs.
- If you find a bug or if you implement enhancements or additional functionalities please do not hesitate to contact me by email. A CVS account can be provided if required.
<<less
Download (0.041MB)
Added: 2006-08-30 License: GPL (GNU General Public License) Price:
1151 downloads
adesklets 0.6.1

adesklets 0.6.1


adesklets is an interactive Imlib2 console for the X Window system. more>>
adesklets is an interactive Imlib2 console for the X Window system. adesklets project provides to scripted languages a clean and simple way to write great looking, mildly interactive desktop integrated graphic applets (aka "desklets").
Since this is adesklets, others still have plenty of space to start similar projets, from bdesklets to z, excluding g, which is already taken.
Seriously though, all those packages are nice. Nevertheless, the first two have very heavy requirements in terms of library dependencies; basically, gDesklets requires a complete GNOME desktop to be installed (plus specialized libraries such as gnome-python, while SuperKaramba needs almost all of the KDE libraries and base environment.
This reflects on performance for the task at hand1. On the other hand, while GKrellM is significantly lighter (it still depends on GTK+ though), it does not deliver the same experience in terms of ?eye-candiness? (to the authors taste, of course) or ?scriptability? than the other two.
Thus, adesklets was born. It provides:
- a minimal framework for X Window desklets seamlessly integrated into the desktop, with an easy to use central management for starting, positioning and stopping them.
- a generic, rich and easy to use drawing API similar to gDesklets and SuperKaramba regarding its high visual quality, thanks to the Imlib2 library.
- very limited library dependencies: uses the very good (and lightning fast) Imlib2 library for all graphic-related operations. No window toolkit used whatsoever; the program relies directly on xlib.
- a light, robust and small interpreter potentially usable with all sorts of scripting languages thanks to a clean, limited and homogenous syntax. As on version 0.4.2, support for Python is provided out of the box. Future support for Perl and Ruby is planned. Feel free to contribute support for your favorite language!
- Minimal disk space, memory footprint and CPU usage. Typically, on glibc 2.3.4 Linux 2.6 x86, a unique executable is less than 130 KB on disk, takes less than 3 MB of virtual memory per desklet right after initialization, and almost no processor cycles (including cycles from a Python interpreted script) when idle.
Enhancements:
- This is a bugfix release.
- It compiles without warnings on all gcc 4.x releases while retaining compatibility with all previous versions of the compiler.
- A new test/timing.py framework was added to help diagnose potential timing issues.
<<less
Download (0.60MB)
Added: 2006-04-01 License: GPL (GNU General Public License) Price:
1310 downloads
gnetmd 0.6.1

gnetmd 0.6.1


gnetmd is a suite of NetMD-related programs and plugins more>>
gnetmd is a suite of NetMD-related programs and plugins.
gnetmd plugin includes the libgnetmd library, a standalone GNOME2.0 frontend, an XMMS plugin, and a Nautilus view.
Main features:
- A library (still no uploading or downloading of songs).
- An XMMS plugin.
- A Nautilus View.
- A standalone GNOME2 application.
Installation:
To compile, run "./configure" then run "make".
To install, run "make install" as root.
<<less
Download (0.27MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1285 downloads
PleiadesGeocoder 0.6.1

PleiadesGeocoder 0.6.1


PleiadesGeocoder is used for geocode and process Plone objects for use with Google Earth or PleiadesOpenLayers. more>>
PleiadesGeocoder is used for geocode and process Plone objects for use with Google Earth or PleiadesOpenLayers.
PleiadesGeocoder provides basic geospatial capabilities for Plone and enables content to be marshalled into Google Earth or OpenLayers maps.
Main features:
- Interfaces that will cover the first ~80 percent of content georeferencing use cases.
- Adapters for Plone content types. Implementations are modeled after the GeoRSS Simple profile.
- A geospatial protocol -- the @@geo logical view.
- GeoRSS and KML views of AT content, folders, and topics.
- Location geocoding tool based on geopy.
The geocoding tool uses the Google geocoding API to find matches for Plone locations, and return spatial coordinates. The API gives you worldwide city-level geocoding precision and address-level precision for the United States.
Chances are you have locations in your site already. Its a standard Plone metadata field, and appears in your user personal preferences form. PleiadesGeocoder includes methods for geocoding site user locations and serializing information about users into KML for use with Google Earth, or GeoRSS for use with other services.
Enhancements:
- Switch to use of geopy for geocoding (ticket #68, #183).
<<less
Download (0.032MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
977 downloads
Liboobs 0.6.1

Liboobs 0.6.1


Liboobs is a wrapping library to the System Tools Backends. more>>
Liboobs is a wrapping library to the System Tools Backends.

Liboobs will provide easy to access GObjects to system configuration details, like users, groups and network interfaces, it will handle sessions with the backend and data consistency too

To compile, you will need system-tools-backends 2.0 and DBus >= 0.31

Installation:

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (0.37MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1082 downloads
OSGEdit 0.6.1

OSGEdit 0.6.1


OSGEdit is an editor of 3D scenes for scientific applications and games, using the OpenSceneGraph (OSG) library. more>>
OSGEdit is an editor of 3D scenes for scientific applications and games, using the OpenSceneGraph (OSG) library.
OSGEdit project allows easy scenegraph editing for anyone using OpenScenegraph in some 3D project.
OpenSceneGraph is a free (LGPL) library that implements professional 3D scenegraph management, usefull for games, scientific applications, real-time simulations, etc.
Take in mind that Its only a scene editor/composer, not a modeller. You can use many programs (like Blender) to model your objects and import them into OSGEdit to compose a complex OSG scene for your application with switches lods, etc.
Main features:
- Good design techniques (uses a lot of design patterns)
- wysiwyg: Its rendering all the time using OSG, so what you see on the screen is what you get when you open the scene with osgviewer or your own app.
- You can see a tree representing the graph where you can select nodes for all the operations. This tree is really a graph, the same node can hang in two different branches, and its a shared node, not a copy, changes on the node in one branch affect to the same node in the other branch.
- Each node type has a properties dialog integrated in the window (most of them are already supported).
- Of course, you can also manipulate transforms visually, there are tools to move, scale, and rotate transform nodes visually with the mouse.
- All the operations except for the new/open/save and zoom changes, can be undo and redo without limit.
- You can create new group (Group/Transform/Switch/LOD) nodes (It doesnt allow for creating of geodes, its not a modeller, only a scene composer).
- For these files that only contain one geode, you can also insert a Transform node as a parent of the selected node, even if its the root node.
- You can open all the formats supported by OSG and also save all the formats supported for writing by OSG.
- There is a tool for merging in files, you can add child nodes that are readed from file (this is very important if you are going to compose a complex scene from several models.
- Nodes can be copied, pasted into group nodes, and even cutted.
<<less
Download (0.46MB)
Added: 2006-01-29 License: GPL (GNU General Public License) Price:
1372 downloads
SMSTerm 0.6.1

SMSTerm 0.6.1


SMSTerm is an application that uses the ICQ2000 protocol. more>>
SMSTerm is an application that uses the ICQ2000 protocol to present you a shell on your mobile phone which allows you to interact with your computer from any mobile on a GSM network. It runs a shell on a pty, and allows you to directly send commands to the shell through SMS. Minimal authentication is done over SMS before spawning a shell and offering it to the user on the mobile phone. It is very useful for remote administration tasks, or checking out the status of the network, or just to run some small chores on your system while you are away. It uses Expect.pm in the background. SMSTerm also includes a script to send SMS through the ICQ network from the command line to any GSM mobile, and also includes a PHP script to set up a Web->SMS gateway.
This is a simple perl script to allow all you people out there who cannot live without having a peek at what your box at home has to say, when you are on the move. All you need is a GSM mobile, and an ICQ account. An ICQ account is required because it is used as the
underlying protocol in SMSTerm to transfer/recieve SMSs.
Yoy can use this application to contact systems behind NATs, as the kernel ships with kernel modules to allow ICQ to be masqd reliably. It is a good way to telnet into your system, which maybe behind a firewall, and do some chores, when youre halfway accross the globe
Enhancements:
- included the new vICQ.pm version 1.10: the earlier version had some serious bugs in receiving SMS which prevented SMSTerm from working at all. I released SMSTerm 0.6 in a hurry during my exams so I couldnt test it thoroughly. Apologies to everyone who couldnt get it to work. This time everything is tested and tried, and it works.
-
- delay modified: the default delay time has been increased from 10s to 20s in SMSTerm. This is because ICQ was giving me RATE_LIMIT errors if i set it too low. Anyone who get a RATE_LIMIT can try bumping it somemore.
<<less
Download (MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1226 downloads
Autotorrent 0.6.1

Autotorrent 0.6.1


Autotorrent is an Amarok script adds a Download this album menu item. more>>
Autotorrent is an Amarok script adds a "Download this album" menu item that when clicked, searches mininova.org for the album and starts Azureus with the Magnet URI.

Right now the code only has support for Mininova but Id definitely accept code for other sites if people are willing to code it.

<<less
Download (0.004MB)
Added: 2007-04-22 License: GPL (GNU General Public License) Price:
547 downloads
3dFB 0.6.1

3dFB 0.6.1


3dFB is a 3D file manager and browser. more>>
3dFB is a 3d File Manager / Browser. It was started in 2004 by Roy El-Rayes.
The aim of this project is to make a viable, workable, 3d file manager that is not a hog on resources and can actually be usable.
Main features:
- Mouse Movement
- Level Zoom
- Ability to show different types of information about a file by pressing tab
- Fog
- 2 Different Views
- Copy / Move / Delete File
- Fullscreen support
The current set of keys are as follows:
- w : activates mouse-move
- q : zooms to end of level
- a : zooms to middle of level
- z : zooms to front of level
- tab/ctrl-tab : switches between different information for each file
- g : turns fog on/off
- v : switches views between normal and top-down
- page-up, page-down : changes our current level
- left, right, up, down : changes your location in the 3d world
- c : copy a file
- m : move a file
- d : delete a file
- f : fullscreen
- escape : exit
- n : show names on current level
- o : show all names
<<less
Download (0.10MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1639 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5