tracker 3.0
Track + Task Tracker 3.0.0
Track + is an online project management and issue tracking with team collaboration, user management, multiple access levels. more>> <<less
K3 Tracker 1.0
"K3 Tracker" ???????? ???????? ???????????? ???????? ?????????? ???????? (issue tracking system). ??????? ????????????? ??? ??????? ????? ??????????... more>> <<less
Tracker 0.5.2
Tracker is a first class object database, extensible tag/metadata database, search tool and indexer. more>>
It can trawl through your hard drive and index existing files and data stores.
It has been designed from the ground up to be very lightweight (the tracker daemon consumes ~4MB of RAM in typical use) yet at the same time very fast too.
It provides a comprehensive, persistent and extensible storage system that can store and index almost any object. These objects can also have extensible user defined metadata and tags to create rich first class objects.
First class object support includes:
- Files
- Documents
- Music
- Images
- Videos
- Text Files
- Development Files
- Playlists*
- Notes*
- Applications*
- People/Contacts*
- Emails*
- Conversations*
- Appointments*
- Tasks*
- Bookmarks and History*
- Projects*
(* these services are not currently indexed at the moment but will be in later versions)
Main features:
- Desktop-neutral design (its a freedesktop product built around other freedesktop technologies like DBus and XDGMime but contains no GNOME specific dependencies)
- Very memory efficient and non-leaking (typical RAM usage 4 - 6 MB). Unlike some other indexers, tracker is designed and built to run well on lower memory systems with typically 128MB or 256MB memory. It should even be efficient enough to use on some mobile devices.
- Non-bloated and written in C for maximum efficiency.
- Small size and minimal dependencies makes it easy to bundle into various distros including live cds.
- Fast indexing and unobtrusive - no need to index stuff overnight. Tracker runs at nice+10 so it should have a minimal impact on your system.
- Implements the freedesktop specification for metadata http://freedesktop.org/wiki/Standards/shared-filemetadata-spec
- Extracts embedded File, Image, Document and Audio type metadata from files.
- Extracts embedded metadata from HTML, PDF, PS, OLE2 (DOC, XLS, PPT), OpenOffice (sxw), StarOffice (sdw), DVI, MAN, MP3 (ID3v1 and ID3v2), OGG, WAV, EXIV2, JPEG, GIF, PNG, TIFF, DEB, RPM, TAR(.GZ), ZIP, ELF, REAL, RIFF (AVI), MPEG, QT and ASF files
- Supports the WC3s RDF Query syntax for querying metadata
- Provides support for both free text search (like Beagle/Google) as well as structured searches using RDF Query
- Respond in real time to file system changes to keep its metadata database up to date and in synch
- Fully extendable with custom metadata - you can store, retrieve, register and search via RDF Query all your own custom metadata
- Can extract a files contents as plain text and index them
- Provides text filters for PDF, MS Office, OpenOffice (all versions), HTML and PS files.
- Can provide thumbnailing on the fly
tektracker 0.7.0
ttrk (tektracker) is a console MIDI sequencer with a tracker-style step editor. more>>
There are five main goals for creating ttrk:
1. Tracker-style step editor, think ScreamTracker3.
2. Pattern based sequencer per track, more like Sonic Foundrys ACID.
3. Big, accessable track mute buttons, think Alesis MMT8.
4. Realtime editing, never need to push stop.
5. All functions directly accessable from the keyboard for rapid editing.
Main features:
- Tracker-style step editor.
- 256 channels, each with 256 patterns.
- Songs up to 4096 patterns long.
- Pattern copy and paste.
- Sync to external MIDI.
- Sends MIDI sync.
- Convenient channel mute buttons for live play.
Schism Tracker 1.0
Schism Tracker is a music editor that aims to match the look and feel of Impulse Tracker as closely as possible. more>>
The player code is based on Modplug, so it supports a wide variety of module formats.
GPS Tracker 0.3.1
GPS Tracker project allows someone to track a GPS enabled cell phone using Google maps. more>>
You need to have a data plan so that you can make updates to your website from the cellphone. Please read the ReadMe.txt file in the download for installation instructions. I hope you enjoy the project. If you have any questions, feel free ask them in the forum.
There are two projects available. The first project is built with .NET and Microsoft SQL Server. The second project is built with PHP and MySQL. If you have any suggestions, please feel free to let me know. Both projects use java (J2ME) on the phone.
How It Works:
None of the code for this project is very difficult, but it does span a number of tiers and languages which may be unfamiliar to some. Figure 1 shows the data flow from phone to Google map.
Phone
Lets start with the code on the phone. This app is written in java using Java 2 Micro Edition (J2ME). Java is very similar to C#. As you look through the code, the only thing that might confuse a C# coder is the vector. A java vector is pretty much a C# ArrayList, a dynamic array. There are 2 classes in the app, LBSMidlet7 and Qworker. A midlet is an app that runs on cell phones. Take a look at the class definition. It extends the MIDlet class and implements a LocationListener interface. That means that we need to put all the method definitions of that interface into our class. Well get to that in a bit, right now lets look at the constructor.
We do 2 things in the constructor. We create a QWorker object and pass it "this" and the website that we will be uploading to. The getAppProperty method gets attributes out of the JAD file. Open the JAD file in your favorite text editor and there youll see the webpage that youll be sending GPS data to. Notice how were passing "this" to the GWorker object? Thats the LBSMidlet7 object. Take a quick look at the QWorker class, it extends the Thread class. Thats why we call worker.start() in the LBSMidlet7 constructor. We want to start our worker thread.
When you start a thread, what you are doing is creating an object and then running that objects run() method. Take a look at the run method. It has an endless loop and in the loop the first thing it does is call queue.wait(). Look at the definition of the queue. The queue is an abstract data type (ADT), it just like a queue at a bank, enter the queue at the back of the line and leave the queue when you get to the front of the line. Look at the definition of the queue, its our vector (dynamic array). When you call wait() on an object within a class that extends the Thread class, it puts that object to sleep. Think about that a little. When we hit that line, our QWorker object is now waiting... Whats it waiting for? Well get to that in a minute. Before we do that, take a look at the synchronized keyword. Notice that its wrapping the queue. What that does is it puts a lock on the queue and tells all other processes not to touch the queue until that little block of code is done with it.
Ok, so now weve started a worker thread and put it to sleep. Lets now go back to the LBSMidlet7 class and take a look at the startApp() method. In the lifecycle of a midlet, the constructor is called once and then the startApp() method is called next. In fact it can be called several times, like for instance when you close a flip phone and then open it again. What happens is that the app is suspended and when you flip the phone open again, startApp() is called again. In startApp(), we get our display and then we create a LocationProvider if one hasnt already been created and we create another thread... Why are we creating all these threads? Good question. When a midlet (app) is suspended, the backgroud threads that are created keep running. That allows us to get our GPS data and send it to our webserver while we do other important stuff, like make phone calls.
The LocationProvider is what gets our GPS data. First we create a criteria, were using the default, but you can set stuff like accuracy, response time etc. Next we create our Location Listener. Its pretty much just what it sounds like. Here you can set the interval for how often you want to get GPS data. Its currently set to 60 which is in seconds. When data comes in, the locationUpdated() method is called. This is another one of the required methods in the LocationListener interface. Here we create yet another thread and call getLocation(). The getLocation() method gets the GPS coordinates, creates a queryString which we will send to the web server a little later and then calls worker.addToQueue in the QWorker class.
Lets go back over to the QWorker class and see what happens in that method. It add the queryString to the queue and then calls queue.notify(). Guess what queue.notify() does? It wakes up our sleeping QWorker thread and tells it to get to work! Notice that our calls to the queue are once again wrapped in a synchronized block. Please practice safe threading... When notify() is called on a thread, what it does is go back to the run() method and execute the next line of code right after where we told the queue to wait(). So now we are just about ready to send the GPS data to the web server. We have a couple of interesting lines of code there. First we call peekInQueue() which gets the queryString out of the queue but leaves it there for now. Then it sends the queryString to the getUrl method which attempts to send the queryString to our web server. If its successful, we can remove the queryString from the queue. If not, we leave the queryString in the queue and try to send it to the webserver again later.
Why in the world do we have this complicated queue here? Im glad you asked. There may be times when you are receiving GPS data but are not actually in an area that has a cell phone connection. If we dont have a cell phone connection, we cant send our GPS data to our web server. So we stick our queryString in our queue and wait until we get back into an area with cell phone connectability. Can you hear me now?
Well, weve spent a pretty fair bit of time explaining the phone code. Its a little complicated but its important to know whats going on if you want to take the code and make modifications to it to suit your needs. Heres a good article on the Sun website to let you know about more capabilities of the Location Based Services API. Right about now, our queryString should be arriving at our website, lets catch up to it and see what happens.
Enhancements:
- Added comments to code
Time Tracker 1.0.2
TimeTracker is an application loosely based on TimeKeeper, a Windows application used to track the time you spent on a task. more>>
Being a Linux user and not willing to install Wine, I decided to hack my own version.
NP PPC Tracker 1.0
NPTracker is script to track keywords, clicks, codes and test performance of different types of advertising. Discover which keywords, search terms and referral sites actually make you money and which more>>
Free NP [KISS] Tracker Genially Simple Ad Performance Tracking
NPTracker is script to track keywords, clicks, codes and test performance of different types of advertising.
Discover which keywords, search terms and referral sites actually make you money and which ones part you with it. Simple and powerful.
NPTracker is a simple but powerful script to:
+ dynamically track performance of your PPC campaigns on a keyword level
+ reveal which keywords are profitable and which are not
+ discover what search keywords people are using when clicking on your ads
+ see exact referral sites people are coming from
+ capture traffic statistics in real-time, including IPs, browser and OS info
everything with a genuinely simple free NPTracker script.
More details about Free NP Tracker are available at http://NeoPerformancer.com/nptracker/
Requirements: PHP 4.3
<<lessDigg Tracker 1.0.3
Digg Tracker is an extension provided by Netscape which allows you to keep tabs on what stories you and your friends are diggin. more>>
Netscapes Digg Tracker extension helps you keep tabs on what stories your Digg friends are digging, submitting, and commenting on. A new toolbar button (shown in the preview image) features the Digg digger. When there is new activity by your friends (i.e., a new comment or a new story submission), the button will be activated and the digger will be shown with his trusty shovel.
Clicking on the activated button will open a list of your friends activity in the sidebar, allowing you to easily browse the stories theyve submitted, commented on, and dugg. Each time you view your friends activity, you will only be shown activity that is new since the last time you opened the sidebar.
In addition, the top 5 stories from Netscape.com will be shown below your friends activity. At any time, you can click the toolbar button to view these links, even if there is no new activity to display.
Diet Tracker 1.5
Diet Tracker is a set of Perl codes to help you keep track of your diet progress. more>>
This software was inspired by Jeremy Zawodnys Excel spreadsheet that does almost the same thing. I wanted a web version that was simple and meant for single user and not finding any, wrote one.
Main features:
- Web based
- Track calorie intake per day
- Graphs to track weight and intake history
- Moving average calculation to even out jitters
- Automatic BMI calculation
- Clean interface
Issue-Tracker 4.0.4
Issue-Tracker is a support issue management system. more>>
Issue-Tracker also includes many features that will allow customer/technical support organizations to take care of customer issues quickly and easy. Some of these features include things like file uploads, email parsing, email and sms notifications, unlimited users and groups, and much more.
Main features:
- Modular API
- MySQL and PostgreSQL support (MySQL only available in 4.0 and later)
- Unlimited groups
- Group and System Announcements
- Email Interface for pure email interact
- Theme system for easy interface customization
- File uploads
- Support for unauthenticated modules
- Report system for groups and individual users
- Statuses, Categories, and Products editable on per-group basis
- Definable permission set to create roles for users
- Template based for easy UI modifications (Smarty Template Engine)
- Group quotas, either issues or hours based
- Email and SMS alerts
- and much more
Asset Tracker 0.5.06
Asset Tracker provides an inventory management system. more>>
Asset Tracker is an inventory management system that allows flexibility in choosing column names and types and contains a plugin system, an access control system, filtering and sorting in the list view, and bookmarkable pages and views.
Main features:
- Suitable for tracking any kind of physical object.
You can create multiple asset databases containing any information you wish to keep track of. Some examples: put all your IT infrastructure into the database, or if you are a building manager, put all your facilities equipment in the database.
- Designed with flexibility in mind.
This means that you can add or remove any columns from the database at any time. Each column can have whatever name youd like to give it. Currently, columns can contain numbers, dates, free-form text, or drop-down lists (to be used if there are a range of valid items that could go into that field).
- Contains a plugin system
This allows you to add any custom functionality that youd like. A plugin is included with the default distribution to enable a connection with RT2 and RT3 databases (I have verified that it works with RT3, but have not updated the documentation to reflect this yet). RT is Request Tracker, an incident management and response system available from http://www.bestpractical.com/rt/. If you have created a plugin youd like to share with everyone, please email me at assettracker@yoderhome.com so I can upload your plugin to the sourceforge download area.
- Contains an access control system
This allows you to decide who can view, add, modify, and delete items from any of the tables. The access control system is administered from within Asset Tracker.
- Comprehensive filters and sorting in the list view
This allows you to choose only to see the data you want to see. For example, a facilities manager might want to see items that were installed 1 year ago, and whose expected lifetime is 365 days. This is easy to manage with the filtering interface. It becomes particularly powerful when coupled with external database connections such as RT2 (see above). If a particular asset keeps generating repair orders within RT2, there will be a high number of RT2 links associated with the asset; this can easily be identified using the sorting and filtering interface.
- All asset list views are bookmarkable
If you create a view with a particular sort order and filters, you can bookmark the search and return to it easily (of course, if the contents of the database change, the view will reflect the updated database). In fact, all operations within Asset Tracker are handled this way, so you can easily bring up any previous page or view.
ChibiTracker 1.0 RC1
ChibiTracker is a portable IT (Impulse Tracker) clone. more>>
ChibiTracker is Open Source Software under the GNU Public License, and it can be run under Windows, Mac-OS, Linux, FreeBSD, BeOS, and more to come.
For those who havent used trackers before, ChibiTracker is a small, compact music composing application that is easy to learn and powerful enough to sound good.
Enhancements:
- This release has many changes, including better dialog management, playback fixes, and loading samples from inside songs.
Scout Tracker 0.13
Scout Tracker tracks Boy Scout advancements towards their Eagle Scout. more>>
Scoutmasters can let the boys know about incomplete requirements without affecting advancement records. Worksheets created for the scouts are stored in a database for easy view and hide access.
Scouts can view the progress of all scouts to enable them to find other scouts who need to work on the same requirement or merit badge. Only leaders and administrators can change data on the site. The best part is that parents and scouts can access their information anytime they want without having to call the Scoutmaster.
Rubicon Tracker 2.0.6
Rubicon Tracker is web-based trouble tracking system. more>>
Tracker is a Web based system. All interaction occurs through a regular Web Browser. Tracker can be used for Bug Tracking, Phone/Help Desk Support, or any other process that requires tracking of items through phases.
Main features:
Issue Tracking from Majentis
- Rubicon Tracker is a Web based system for tracking and managing Defects and Issues in a project or muliple projects. Rubicon Tracker shares information among team members, clients, and management, offering an end-to-end Issue Managment solution.
Web Based
- Rubicon Trackers Web based format allows your team, clients, and management to collaborate from anywhere. Rubicon Tracker requires no Web Server to run, setup, or maintain. Rubicon Tracker is its own Web Server, geared specifically for this application, allowing speedy responses even under heavy loads.
Email Notification
- Keep all team members in the loop using instant notification by email when an issue (we call them tickets) is added or modified in any way. When a ticket is added, email is sent to all Project Managers registered with that project. Once the Project Manager decides who is best suited to work on a ticket, the person assigned is sent an email notifying them that they have a ticket. All modifications to the ticket will will generate email for all persona invlolved.
Move Tickets
- If a ticket is inadvertently added to the wrong project, a Project Manager can move the ticket to any other project the Project Manager has access to.
Online or Self-Hosted
- Majentis offers you two solutions for Issue Tracking. You can install and maintain Rubicon Tracker on your own servers, or you can use our on-line system, outsourcing your Issue Tracking needs.