Main > Free Download Search >

Free problem in software for linux

problem in

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1815
PyWireless 3.3

PyWireless 3.3


PyWireless is a basic wireless connection monitor with DCOP support. more>>
PyWireless is a basic wireless connection monitor with DCOP support.
This is written because:
- KWifiManager seems like disaster (sorry guys!),
- Karamba eats my CPU,
- And there is no (or i cant find) KDE integrated wifi monitor tool
Enhancements:
- Program crashes at Shutdown problem solved.
<<less
Download (0.039MB)
Added: 2006-11-26 License: GPL (GNU General Public License) Price:
1065 downloads
Master Math Word Problems 1.6

Master Math Word Problems 1.6


Master Math Word Problems can help sharpen skills through practice. more>>
Solving word problems is an area where elementary students overwhelmingly display difficulties. Master Math Word Problems program can help sharpen skills through practice. Third through fifth graders learn to watch for key words and translate those into mathematical operations.

Students can learn new math skills, practice logic, get extended practice with word problems, but most of all they learn that they must read the problem. With regular practice your students may become master math word problem solvers.

Download and try out Master Math Word Problems.
<<less
Download (1.2MB)
Added: 2006-05-17 License: GPL (GNU General Public License) Price: $12
1262 downloads
PRepS 2.1.0

PRepS 2.1.0


PRepS is a Problem Reporting and Tracking System. more>>
PRepS is a tool for reporting and tracking problems or tasks. PRepS project is designed for tracking problems with software, but can also be used for tracking other types of problems or tasks. Be creative.

I started working on PRepS after determining that Gnats was overkill for what I needed to do, and that Gnats did not have the worlds greatest user interface. PRepS borrows some ideas from Gnats, and some ideas from other problem reporting systems that I have used. What I am aiming for with PRepS is a system that has enough features to make it useful, yet is not so complicated that it is cumbersome to use.

Please note that PRepS uses the PostgreSQL database server. If you are familiar with PostgreSQL, and with basic DBA tasks, then you should have no problem setting up and using PRepS.

<<less
Download (0.94MB)
Added: 2006-01-02 License: GPL (GNU General Public License) Price:
1540 downloads
strobe-classb 1.8

strobe-classb 1.8


strobe-classb is a small and fast network scanner for Linux. more>>
strobe-classb is a small and fast network scanner for Linux. It works best on kernel 2.0.36. It was originally designed for scanning for open e-mail relays on your LAN. Version 1.8 works on Linux 2.0.35 and later and Linux 2.2.8 and later.

Also here is RH5.0-5.2-patchscript - a script to fix a problem in RedHat 5.0 to 5.2s relaying rulesets where certain envelope recipients could be used to trick the anti-relaying rulesets.

relay-check.pl is included as an example use of the program. It is how I use the program - to scan my Universitys class B network on a regular basis to detect spam relays, which I then use list-hosts.pl to list sorted by network so that I can notify the individual network admins.

I also use this program to detect other, more serious security problems locally. I will not be releasing any of the code I use for this (both because it isnt "production-quality" and because I find so much with these checks that I dont want others to use them). Consider relay-check.pl to be the example of how the code *should* be used, and develop what checks you wish to use locally. If you want a security scanner, http://www.nessus.org/ seems quite promising.

Each perl script has brief documentation at the start of it. If you do not understand this documentation then read the code. If you do not understand the code then you should not be running the program.

<<less
Download (0.012MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1207 downloads
Pipe-Sem 1.0

Pipe-Sem 1.0


This is a pipe based semaphore implementation for developing ASYNC applications. more>>

Pipe-Sem 1.0 is a good utility which might help you a lot in developing ASYNC applications. Many synchronization primitives are available for Unix systems, but any of them expose a pollable interface to the user. In these cases, if the caller execute a down operation on a blocking semaphore, the application will sleep and whole ASYNC loop will starve because of the wait.

To cope with this problem in ASYNC software, the publisher developed a pipe based semaphore implementation, called Pipe-Sem. The implementation is trivially simple and it uses the pipe internal mechanisms to expose a pollable wait interface.

Besides the standard semaphore operations, the function psem_down_fd() can be used to retrieve a files descriptor that can be dropped inside a Unix pollable API like select(2), poll(2) or epoll(2). The caller will have to wait for input events (POLLIN), and when receiving the event itself, the caller should invoke the psem_try_down() function to try to acquire the semaphore.

Please note that receiving an event from the pollable interface, does not mean that we acquired to semaphore, and the function psem_try_down() will have to be called (and tested for zero return code) to correctly complete the down operation.

<<less
Added: 2008-04-08 License: GPL Price: FREE
1 downloads
TurquoiseCRM 1.0.1

TurquoiseCRM 1.0.1


TurquoiseCRM is a lightweight CRM package developed using PHP, MySQL, and Apache. more>>
TurquoiseCRM is a lightweight CRM package developed using PHP, MySQL, and Apache.
The software is easily extendable.
Enhancements:
- An "item search" feature has been added.
- A bug in the "item delete" feature has been corrected.
- The user interface has been optimized for FireFox browsers.
- Other minor bugfixes have been made.
- A problem in downloading the zip file is now handled.
<<less
Download (0.070MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1313 downloads
Pyrex 0.9.4.1

Pyrex 0.9.4.1


Pyrex is a Language for Writing Python Extension Modules. more>>
Pyrex is a Language for Writing Python Extension Modules.
Pyrex is a language specially designed for writing Python extension modules. Its designed to bridge the gap between the nice, high-level, easy-to-use world of Python and the messy, low-level world of C.
You may be wondering why anyone would want a special language for this. Python is really easy to extend using C or C++, isnt it? Why not just write your extension modules in one of those languages?
Well, if youve ever written an extension module for Python, youll know that things are not as easy as all that. First of all, there is a fair bit of boilerplate code to write before you can even get off the ground. Then youre faced with the problem of converting between Python and C data types. For the basic types such as numbers and strings this is not too bad, but anything more elaborate and youre into picking Python objects apart using the Python/C API calls, which requires you to be meticulous about maintaining reference counts, checking for errors at every step and cleaning up properly if anything goes wrong. Any mistakes and you have a nasty crash thats very difficult to debug.
Various tools have been developed to ease some of the burdens of producing extension code, of which perhaps SWIG is the best known. SWIG takes a definition file consisting of a mixture of C code and specialised declarations, and produces an extension module. It writes all the boilerplate for you, and in many cases you can use it without knowing about the Python/C API. But you need to use API calls if any substantial restructuring of the data is required between Python and C.
Whats more, SWIG gives you no help at all if you want to create a new built-in Python type. It will generate pure-Python classes which wrap (in a slightly unsafe manner) pointers to C data structures, but creation of true extension types is outside its scope.
Another notable attempt at making it easier to extend Python is PyInline , inspired by a similar facility for Perl. PyInline lets you embed pieces of C code in the midst of a Python file, and automatically extracts them and compiles them into an extension. But it only converts the basic types automatically, and as with SWIG, it doesnt address the creation of new Python types.
Pyrex aims to go far beyond what any of these previous tools provides. Pyrex deals with the basic types just as easily as SWIG, but it also lets you write code to convert between arbitrary Python data structures and arbitrary C data structures, in a simple and natural way, without knowing anything about the Python/C API. Thats right -- nothing at all! Nor do you have to worry about reference counting or error checking -- its all taken care of automatically, behind the scenes, just as it is in interpreted Python code. And whats more, Pyrex lets you define new built-in Python types just as easily as you can define new classes in Python.
Enhancements:
- Tiny bugfix to correct a tab/space problem in the distutils extension.
<<less
Download (0.17MB)
Added: 2006-04-25 License: GPL (GNU General Public License) Price:
1281 downloads
Harminv 1.3.1

Harminv 1.3.1


Harminv is a free program and C library for harmonic inversion. more>>
Harminv is a free program and C library for harmonic inversion: decomposing a time-series into a sum of sinusoids, including exponentially decaying sinusoids.
Harminv is based on the "filter diagonalization method" (FDM) of Mandelshtam & Taylor, which maps the harmonic inversion problem onto a small eigen-problem (size proportional to the number of sinusoids).
The FDM is often able to obtain much more robust and accurate solutions than alternative methods.
Enhancements:
- An inconsistent sign convention used for phase output was fixed.
<<less
Download (0.32MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1207 downloads
vobject 0.3.0

vobject 0.3.0


vobject is a Python library for processing iCalendar and vCard information. more>>
vobject is a Python library for processing iCalendar and vCard information.
vobject library allows programs to manipulate standard Python objects like datetimes, and tzinfo classes for time zones without worrying too much about iCalendar semantics.
Enhancements:
- Changed API for accessing children and parameters, attributes now return the first child or parameter, not a list. See usage for examples
- Added support for groups, a vcard feature
- Added behavior for FREEBUSY lines
- Worked around problem with dateutils treatment of experimental properties (bug 4978)
- Fixed bug 4992, problem with rruleset when addRDate is set
<<less
Download (0.035MB)
Added: 2006-02-20 License: The Apache License Price:
1343 downloads
Spin 1.5

Spin 1.5


Spin is a transparent threading solution for non-freezing Swing applications. more>>
Spin is a transparent threading solution for non-freezing Swing applications.
Every non trivial GUI sooner or later encounters the problem of "freeze".
This annoying behaviour is experienced by users every time the application performs extensive calculations or blocks for network or disk I/O.
Spin offers a new approach for solving this problem.
It offers transparent thread handling with minimal impact on your application code.
Enhancements:
- Now built with Maven.
<<less
Download (0.49MB)
Added: 2007-03-31 License: GPL (GNU General Public License) Price:
939 downloads
Spyware Removal Tool 3.5

Spyware Removal Tool 3.5


Spyware is a major problem in many computers these days. You can easily be a victim and not even know it. Do you mysteriously have a different h... more>> <<less
Download (15KB)
Added: 2009-03-31 License: Freeware Price: Free
455 downloads
webcam snaps 0.1

webcam snaps 0.1


webcam snaps is a Web cam utility to take snapshots using Web cam. more>>
webcam snaps is a Web cam utility to take snapshots using Web cam. This program is completely written in C.

Using vfl and GTK. I hope this utility will be useful for those who wish to handle Web cam under GNU/Linux.

Ive tested this application on Suse 10.1 and Debian Sarge 3.1a. If you have any problem in compiling or using this application, please feel free to contact me.
<<less
Download (0.10MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
637 downloads
Simple Log 2.0.1

Simple Log 2.0.1


Simple Log is a small library that does logging very simply. more>>
Simple Log is a small library that does logging very simply and requires you to do almost nothing (other than actually logging) to get log output to happen. Simple Log is much simpler to use than a logging framework, especially in terms of configuration.
It doesnt attempt to solve every logging problem in one package, but contains enough features to be a viable alternative for most applications that need logging. This tool will handle the logging needs of most small- to large-sized projects, but with an almost non-existent learning curve.
Enhancements:
- This release is primarily about the addition of log rolling (by time of day, file size, or custom strategy), the inclusion of a small but humorous user guide, the fixing of a raft of minor bugs, and the inclusion of a few other small features increasing flexibility.
<<less
Download (0.98MB)
Added: 2006-07-25 License: The Apache License 2.0 Price:
1187 downloads
Filesystem in Userspace 2.7.0

Filesystem in Userspace 2.7.0


Filesystem in Userspace is an interface for filesystems implemented in userspace. more>>
FUSE can implement a fully functional filesystem in a userspace program.
Main features:
- Simple library API
- Simple installation (no need to patch or recompile the kernel)
- Secure implementation
- Userspace - kernel interface is very efficient
- Usable by non privileged users
- Runs on Linux kernels 2.4.X and 2.6.X
- Has proven very stable over time
Installation
Some projects include the whole FUSE package (for simpler installation). In other cases or just to try out the examples FUSE must be installed first. The installation is simple, after unpacking enter:
./configure
make
make install
If this produces an error, please read on.
The configure script will try to guess the location of the kernel source. In case this fails, it may be specified using the --with-kernel parameter. Building the kernel module needs a configured kernel source tree matching the running kernel. If you build your own kernel this is no problem. On the other hand if a precompiled kernel is used, the kernel headers used by the FUSE build process must first be prepared. There are two possibilities:
1. A package containing the kernel headers for the kernel binary is available in the distribution (e.g. on Debian its the kernel-headers-X.Y.Z package for kernel-image-X.Y.Z)
2. The kernel source must be prepared:
- Extract the kernel source to some directory
- Copy the running kernels config (usually found in /boot/config-X.Y.Z) to .config at the top of the source tree
- Run make menuconfig, then make dep at the top of the source tree (only needed on 2.4 kernels)
If using the 2.6 kernel, then write access is needed to some files in the kernel source tree. Usually it is enough if you make .tmp_versions and .__modpost.cmd writable.
Enhancements:
- Stacking support for the high level API
- Add filename charset conversion module
- Improved mounting
<<less
Download (0.47MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
845 downloads
Azureus Speed Control 1.0

Azureus Speed Control 1.0


Azureus Speed Control is a project that enables automatic configuration of your upload limit. more>>
Azureus Speed Control is a project that enables automatic configuration of your upload limit. This addresses the problem of implicit additional upload when Azureus downloads with high speed, which can lead to connection choking. This is a problem specially for users with low upload bandwidth like German ADSL users.

If your download rate increases, the upload limit will be reduced by a value that can be customized. If the download rate decreases, the upload limit will increase again.

<<less
Download (0.19MB)
Added: 2006-12-28 License: GPL (GNU General Public License) Price:
1044 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5