a o gratuitos
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 62
Petals on a Rose 1.0
Petals on a Rose is an intriguing puzzle game for all ages. more>>
Petals on a Rose is an intriguing puzzle game for all ages. This website claims that Bill Gates was stumped by it for two days. Its usually played with a group of friends and a set of 5 dice. The game master rolls the dice and tells everyone the answer. This computer version of the puzzle works similarly, only in this case the computer plays as the game master.
To play you just double click the icon to start the program. Type your guess in the "Answer" field and press "Check". If your guess is correct you get congratulated, otherwise you need to try again. If you get tired of guessing you can press the "Give Up" button and youll get the answer to that particular roll.
Just press the "Roll Dice" button at any time to get a new set of numbers.
Always remember, dont tell the answer to anyone!
Have fun, and good luck.
<<lessTo play you just double click the icon to start the program. Type your guess in the "Answer" field and press "Check". If your guess is correct you get congratulated, otherwise you need to try again. If you get tired of guessing you can press the "Give Up" button and youll get the answer to that particular roll.
Just press the "Roll Dice" button at any time to get a new set of numbers.
Always remember, dont tell the answer to anyone!
Have fun, and good luck.
Download (0.16MB)
Added: 2007-07-20 License: MIT/X Consortium License Price:
826 downloads
A practical lambda-calculator 2.2
A practical lambda-calculator is a Lambda-calculator with convenient commands and shortcuts. more>>
A practical lambda-calculator is a normal-order evaluator for the untyped lambda-calculus, extended with convenient commands and shortcuts to make programming in it more productive.
Shortcuts are distinguished constants that represent terms. Commands define new shortcuts, activate tracing of all reductions, compare terms modulo alpha-conversion, print all defined shortcuts and evaluation flags, etc.
Terms to evaluate and commands are entered at a read-eval-print-loop (REPL) "prompt" or "included" from a file by a special command. A Haskell branch is an embedding of the lambda calculator (as a domain-specific language) into Haskell. The calculator can be used interactively within Hugs or GHCi.
The present calculator implements what seems to be an efficient and elegant algorithm of normal order reductions. The algorithm is "more functional" than the traditionally used approach.
The algorithm seems identical to that employed by yacc sans one critical difference. The calculator also takes a more "functional" approach to the hygiene of beta-substitutions, which is achieved by coloring of identifiers where absolutely necessary. This approach is "more functional" because it avoids a global counter or the threading of the paint bucket through the whole the process. The integration of the calculator with Haskell lets us store terms in variables and easily and intuitively combine them.
The traditional recipe for normal-order reductions includes an unpleasant phrase "cook until done". The phrase makes it necessary to keep track of reduction attempts, and implies an ugly iterative algorithm. Were proposing what seems to be an efficient and elegant technique that can be implemented through intuitive re-writing rules.
Our calculator, like yacc, possesses a stack and works by doing a sequence of shift and reduce steps. The only significant difference from yacc is that the lambda-calculator "reparses" the result after the successful reduce step. The source and the target languages of our "parser" (lambda-calculator) are the same; therefore, the parser can indeed apply itself.
The parsing stack can be made implicit. In that case, the algorithm can be used for normalization of typed lambda-terms in Twelf.
The following examples show that lambda-calculus becomes a domain-specific language embedded into Haskell:
> c0 = f ^ x ^ x -- Church numeral 0
> succ = c ^ f ^ x ^ f # (c # f # x) -- Successor
> c1 = eval $ succ # c0 -- pre-evaluate other numerals
> c2 = eval $ succ # c1
> c3 = eval $ succ # c2
> c4 = eval $ succ # c3
It is indeed convenient to store terms in Haskell variables and pre-evaluate (i.e., normalize) them. They are indeed terms. We can always ask the interpreter to show the term. For example, show c4 yields (f. (x. f (f (f (f x))))).
let mul = a ^ b ^ f ^ a # (b # f) -- multiplication
eval $ mul # c1 ---> (b. b), the identity function
eval $ mul # c0 ---> (b. (f. (x. x))), which is "const 0"
These are algebraic results: multiplying any number by zero always gives zero. We can see now how lambda-calculus can be useful for theorem proving, even over universally-quantified formulas.
The calculator implements Dr. Fairbairns suggestion to limit the depth of printed terms. This makes it possible to evaluate and print some divergent terms (so-called tail-divergent terms):
Lambda_calc> let y_comb = f^((p^p#p) # (c ^ f#(c#c))) in eval $ y_comb#c
c (c (c (c (c (c (c (c (c (c (...))))))))))
It is amazing how well lambda-calculus and Haskell play together.
<<lessShortcuts are distinguished constants that represent terms. Commands define new shortcuts, activate tracing of all reductions, compare terms modulo alpha-conversion, print all defined shortcuts and evaluation flags, etc.
Terms to evaluate and commands are entered at a read-eval-print-loop (REPL) "prompt" or "included" from a file by a special command. A Haskell branch is an embedding of the lambda calculator (as a domain-specific language) into Haskell. The calculator can be used interactively within Hugs or GHCi.
The present calculator implements what seems to be an efficient and elegant algorithm of normal order reductions. The algorithm is "more functional" than the traditionally used approach.
The algorithm seems identical to that employed by yacc sans one critical difference. The calculator also takes a more "functional" approach to the hygiene of beta-substitutions, which is achieved by coloring of identifiers where absolutely necessary. This approach is "more functional" because it avoids a global counter or the threading of the paint bucket through the whole the process. The integration of the calculator with Haskell lets us store terms in variables and easily and intuitively combine them.
The traditional recipe for normal-order reductions includes an unpleasant phrase "cook until done". The phrase makes it necessary to keep track of reduction attempts, and implies an ugly iterative algorithm. Were proposing what seems to be an efficient and elegant technique that can be implemented through intuitive re-writing rules.
Our calculator, like yacc, possesses a stack and works by doing a sequence of shift and reduce steps. The only significant difference from yacc is that the lambda-calculator "reparses" the result after the successful reduce step. The source and the target languages of our "parser" (lambda-calculator) are the same; therefore, the parser can indeed apply itself.
The parsing stack can be made implicit. In that case, the algorithm can be used for normalization of typed lambda-terms in Twelf.
The following examples show that lambda-calculus becomes a domain-specific language embedded into Haskell:
> c0 = f ^ x ^ x -- Church numeral 0
> succ = c ^ f ^ x ^ f # (c # f # x) -- Successor
> c1 = eval $ succ # c0 -- pre-evaluate other numerals
> c2 = eval $ succ # c1
> c3 = eval $ succ # c2
> c4 = eval $ succ # c3
It is indeed convenient to store terms in Haskell variables and pre-evaluate (i.e., normalize) them. They are indeed terms. We can always ask the interpreter to show the term. For example, show c4 yields (f. (x. f (f (f (f x))))).
let mul = a ^ b ^ f ^ a # (b # f) -- multiplication
eval $ mul # c1 ---> (b. b), the identity function
eval $ mul # c0 ---> (b. (f. (x. x))), which is "const 0"
These are algebraic results: multiplying any number by zero always gives zero. We can see now how lambda-calculus can be useful for theorem proving, even over universally-quantified formulas.
The calculator implements Dr. Fairbairns suggestion to limit the depth of printed terms. This makes it possible to evaluate and print some divergent terms (so-called tail-divergent terms):
Lambda_calc> let y_comb = f^((p^p#p) # (c ^ f#(c#c))) in eval $ y_comb#c
c (c (c (c (c (c (c (c (c (c (...))))))))))
It is amazing how well lambda-calculus and Haskell play together.
Download (0.021MB)
Added: 2005-04-01 License: Public Domain Price:
1672 downloads
A Jacks Game 1.0
A Jacks Game is a real-time game that runs in a Web browser using the AJAX technology. more>>
A Jacks Game is a real-time game that runs in a Web browser using the AJAX (Asynchronous JavaScript and XML) technology.
Multiple users can login in A Jacks Game to explore a common map and earn a common currency as their score.
A Jacks Game is free software released under GNU/GPL Open Source License.
<<lessMultiple users can login in A Jacks Game to explore a common map and earn a common currency as their score.
A Jacks Game is free software released under GNU/GPL Open Source License.
Download (0.014MB)
Added: 2006-01-05 License: GPL (GNU General Public License) Price:
1389 downloads
Faq-O-Matic 2.721
The Faq-O-Matic is a CGI-based system that automates the process of maintaining a FAQ list. more>>
The Faq-O-Matic is a CGI-based system that automates the process of maintaining a FAQ list. It allows visitors to your FAQ to take part in keeping it up-to-date. A permission system also makes it useful as a help-desk application, bug-tracking database, or documentation system. Jon wrote an article about the FAQ-O-Matic that appeared in the USENIX ;login: newsletter: http://www.usenix.org/publications/login/1998-6/faq.html.
This documentation itself is, naturally, maintained with Faq-O-Matic. Hence the weird title. If you see anything that can use updating, please do fix it! If you just want to play around, check out the (Xref) Playground.
A mailing list is very good because it gets together people who have questions with people who have answers.
A mailing list archive is even better, because it lets thoughtful people with Frequently Asked Questions search for an immediate answer, and avoid bothering the people who have answers. Unfortunately, the answers in a mailing list archive become stale over time, are disorganized, and are hard to sift from the conversational noise of the mailing list.
A Frequently Asked Questions list (FAQ) is even better, because the people with questions can be a little lazier and still find their answer right away. Unfortunately, maintaining a FAQ list requires effort; if the people with the answers become lazy, the FAQ list becomes stale.
I wrote the FAQ-O-Matic when I found myself frequently answering a certain question on a mailing list. The FAQ for the list had become stale (its creators interest had succumbed to laziness), and I knew I was far too lazy to take over maintaining my own FAQ.
So, in a triumph of laziness, I wrote the FAQ-O-Matic. The idea is this:
- People with answers can submit them to the FAQ, but
nobody is responsible for knowing all the answers.
- People with corrections can make them to answers, but
nobody is responsible for coordinating corrections.
This worked pretty well, but the first FAQ-O-Matic tended to become disorganized, since no-one was responsible for its structure. So I added commands to move answers and categories around, plus a Moderator feature that lets one person keep track of changes to the FAQ by e-mail:
- A person can keep a subset of the FAQ organized, but he
or she doesnt have to know all the answers or organize
the whole FAQ.
So a FAQ-O-Matic is something that lets the members of a community share the tasks of entering, correcting, and organizing frequently-asked questions and answers. Many folks have found other uses for FAQ-O-Matic, treating it as a general collaborative editing tool.
<<lessThis documentation itself is, naturally, maintained with Faq-O-Matic. Hence the weird title. If you see anything that can use updating, please do fix it! If you just want to play around, check out the (Xref) Playground.
A mailing list is very good because it gets together people who have questions with people who have answers.
A mailing list archive is even better, because it lets thoughtful people with Frequently Asked Questions search for an immediate answer, and avoid bothering the people who have answers. Unfortunately, the answers in a mailing list archive become stale over time, are disorganized, and are hard to sift from the conversational noise of the mailing list.
A Frequently Asked Questions list (FAQ) is even better, because the people with questions can be a little lazier and still find their answer right away. Unfortunately, maintaining a FAQ list requires effort; if the people with the answers become lazy, the FAQ list becomes stale.
I wrote the FAQ-O-Matic when I found myself frequently answering a certain question on a mailing list. The FAQ for the list had become stale (its creators interest had succumbed to laziness), and I knew I was far too lazy to take over maintaining my own FAQ.
So, in a triumph of laziness, I wrote the FAQ-O-Matic. The idea is this:
- People with answers can submit them to the FAQ, but
nobody is responsible for knowing all the answers.
- People with corrections can make them to answers, but
nobody is responsible for coordinating corrections.
This worked pretty well, but the first FAQ-O-Matic tended to become disorganized, since no-one was responsible for its structure. So I added commands to move answers and categories around, plus a Moderator feature that lets one person keep track of changes to the FAQ by e-mail:
- A person can keep a subset of the FAQ organized, but he
or she doesnt have to know all the answers or organize
the whole FAQ.
So a FAQ-O-Matic is something that lets the members of a community share the tasks of entering, correcting, and organizing frequently-asked questions and answers. Many folks have found other uses for FAQ-O-Matic, treating it as a general collaborative editing tool.
Download (0.35MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1219 downloads
A Java Grid - QuickTable Unix 2.0.5
A Free Java Grid control - QuickTable for database/EJB/Hibernate using JTable more>> QuickTable can be used as
Database Grid
EJBs/DataObjects Grid
Delimited/Fixed length data file Grid
Array/Vector/Collection Grid
QuickTable is built on top of JTable, so you dont have to learn any new API. QuickTable is bundled with lots of features including Print Preview, Printing, Find & Replace, Sorting, Skin, copy/paste to Excel, Image cells, Calendar cell editor,Customizer etc.
Database data can be loaded into QuickTable in just one statement
dBTable1.refresh(yourResultSet);
EJB data can be loaded in few statements
Collection c = home.findCustomerByLastName("smith");
dBTable1.refreshDataObject(c,null);<<less
Download (2.45MB)
Added: 2009-04-01 License: Freeware Price: Free
205 downloads
Gapcmon a Linux GUI monitor for APCUPSD 0.8.5
Gapcmon is a gtk/glib desktop monitor program for the apcupsd package. more>>
Gapcmon is a gtk/glib desktop monitor program for the apcupsd package. Apcupsd interfaces with UPS power systems on local or networked systems. gapcmon connects to apcupsd via the NIS api to collect and displays the current operational state of the UPS.
A Gtk2/GLib2 GUI application used to monitor UPS devices controlled by the APCUPSD package. The program uses the NIS interface from apcupsd to collect event and status information for display to the end-user. Because of this great interface, this program can be executed on any OS supported machine and use the network socket interface to connect back to apcupsd. Of course apcupsd must be compiled with nis support
(i.e. ./configure --enable-nis --enable-gapcmon ...).
The general design model for gapcmon assumes the user has one or more UPSs attached to one or more tcpip/hosts with network connectivity to/from the gapcmon workstation. Gapcmon provides a Preferences panel to capture the hostname, port, and polling cycle for that UPS; along with an "enable" checkbox to indicate if the monitor for this configuration should be active. Gapcmon collects status and event information for each enabled UPS configuration and presents it to the user via a Detailed Information window.
Main features:
- FreeDesktop.org Spec for Notification Area Icons.
- Unlimited support for multiple UPSs.
- Historical Graph of five data points are charted. A total of 40 points are maintained on the graph. The data points are LINEV, BATTV, BCHARGE, LOADPCT, and TIMELEFT.
- Clicking an notification icon will cause the information window for that monitor to become visible or be hidden, if its already visible.
- Monitor tooltips are available when hovering the mouse over the icon, and contain a quick summary of the ups status.
- Icons are dynamically added or removed when enabled in preferences.
- Icon changes to reflect the operational state of the UPS.
- o where state is (online, onbattery, charging, not communicating, no cable)
- History graph supports popup tooltip for data point under the mouse pointer, showing dataseries name, color, time, and value.
- Configuration of the tcpi/ip hostname, tcp port number, and whether that monitor is currently enabled is provided via a central Preferences page.
- background thread for all network io to keep user interface responsive.
<<lessA Gtk2/GLib2 GUI application used to monitor UPS devices controlled by the APCUPSD package. The program uses the NIS interface from apcupsd to collect event and status information for display to the end-user. Because of this great interface, this program can be executed on any OS supported machine and use the network socket interface to connect back to apcupsd. Of course apcupsd must be compiled with nis support
(i.e. ./configure --enable-nis --enable-gapcmon ...).
The general design model for gapcmon assumes the user has one or more UPSs attached to one or more tcpip/hosts with network connectivity to/from the gapcmon workstation. Gapcmon provides a Preferences panel to capture the hostname, port, and polling cycle for that UPS; along with an "enable" checkbox to indicate if the monitor for this configuration should be active. Gapcmon collects status and event information for each enabled UPS configuration and presents it to the user via a Detailed Information window.
Main features:
- FreeDesktop.org Spec for Notification Area Icons.
- Unlimited support for multiple UPSs.
- Historical Graph of five data points are charted. A total of 40 points are maintained on the graph. The data points are LINEV, BATTV, BCHARGE, LOADPCT, and TIMELEFT.
- Clicking an notification icon will cause the information window for that monitor to become visible or be hidden, if its already visible.
- Monitor tooltips are available when hovering the mouse over the icon, and contain a quick summary of the ups status.
- Icons are dynamically added or removed when enabled in preferences.
- Icon changes to reflect the operational state of the UPS.
- o where state is (online, onbattery, charging, not communicating, no cable)
- History graph supports popup tooltip for data point under the mouse pointer, showing dataseries name, color, time, and value.
- Configuration of the tcpi/ip hostname, tcp port number, and whether that monitor is currently enabled is provided via a central Preferences page.
- background thread for all network io to keep user interface responsive.
Download (0.089MB)
Added: 2007-07-14 License: GPL (GNU General Public License) Price:
834 downloads
Linux on a Stick 0.3
Linux on a stick is an attempt to make a Live-CD/USB-Flash server Linux distro. more>>
Linux on a Stick is an attempt to make a Live-CD/USB-Flash server Linux distro. At its heart is a very small and simple Linux distro that boots off CD/Flash and runs from RAM (Ie no spinning hard drives of death).
This approach allows us to strip the OS to its very basic components, which minimizes the amount of resources required. This distro is targeted towards Server administrator who are familiar with Linux, its only configuration method is the command line.
Enhancements:
- Linux kernel 2.4.33 was replaced with 2.6.18.8.
- A USB booting problem that would prevent it from booting on some BIOSs (Namely AMI) was resolved.
- The ARDIS iSCSI target was replaced with the Enterprise iSCSI target (v0.4.14).
- The Open iSCSI initiator (v2.0.754) package with kernel modules is included.
- The distribution now boots on more than just Intel CPUs.
- Userland tools (v3.6.19) and kernel FS support were included for ReiserFS and XFS.
- The PHP CLI is included in php-5.2.0 in root.gz initrd.
<<lessThis approach allows us to strip the OS to its very basic components, which minimizes the amount of resources required. This distro is targeted towards Server administrator who are familiar with Linux, its only configuration method is the command line.
Enhancements:
- Linux kernel 2.4.33 was replaced with 2.6.18.8.
- A USB booting problem that would prevent it from booting on some BIOSs (Namely AMI) was resolved.
- The ARDIS iSCSI target was replaced with the Enterprise iSCSI target (v0.4.14).
- The Open iSCSI initiator (v2.0.754) package with kernel modules is included.
- The distribution now boots on more than just Intel CPUs.
- Userland tools (v3.6.19) and kernel FS support were included for ReiserFS and XFS.
- The PHP CLI is included in php-5.2.0 in root.gz initrd.
Download (61.4MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
557 downloads
Spider Game Grande Jogo 1.0.1
Liberte Jogos Online. Jogos de Ação Gratuitos, Jogos de Guerra e Jogos de Batalha. Crianças e Meninas que Vestem Jogos, Jogos de Moda, Jogos de Futebo... more>> <<less
Download (1220KB)
Added: 2009-04-01 License: Freeware Price: Free
206 downloads
A-foto 1.6 RC7
A-foto is a theme (applet) for Superkaramba. more>>
A-foto is a theme (applet) for Superkaramba. A-foto show pictures on your desktop with different frame decorations and has the ability to change picture at present intervals.
Known Issues in this version:
- There is NO "add to line" mode. The organization of presented images is now accomplished through management of contents of the chosen folder. One suggested way of organizing custom slide shows is to create an empty folder and drag LINKS to preferred photos into that folder. Drop that folder onto a-foto. Presently, this appears to be the easiest way to achieve manageability of slide show content. Your alternative suggestions are welcome.
- Starting a second instance of A-foto from SuperKaramba interface may fail. Double-click on afoto.skz file to start additional applets.
- A-foto settings have "historical priority." Settings for 1st afoto applet ever will always be the 1st in line to be used when you open afoto. To get to the settings of the 3rd afoto instance, you need to open 3 afoto applets. We are working on a solution. Any comments and suggestions are welcome
<<lessKnown Issues in this version:
- There is NO "add to line" mode. The organization of presented images is now accomplished through management of contents of the chosen folder. One suggested way of organizing custom slide shows is to create an empty folder and drag LINKS to preferred photos into that folder. Drop that folder onto a-foto. Presently, this appears to be the easiest way to achieve manageability of slide show content. Your alternative suggestions are welcome.
- Starting a second instance of A-foto from SuperKaramba interface may fail. Double-click on afoto.skz file to start additional applets.
- A-foto settings have "historical priority." Settings for 1st afoto applet ever will always be the 1st in line to be used when you open afoto. To get to the settings of the 3rd afoto instance, you need to open 3 afoto applets. We are working on a solution. Any comments and suggestions are welcome
Download (0.23MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
941 downloads
Wiki on a Stick 0.9.3
Wiki on a Stick is a personal wiki that lives in a single self-modifying HTML file that contains the software, interface... more>>
Wiki on a Stick is a personal wiki that lives in a single self-modifying HTML file that contains the software, interface, and database.
Its useful for taking notes, for use as a calendar, and for documenting software, etc. Wiki on a Stick currently only works in Firefox
<<lessIts useful for taking notes, for use as a calendar, and for documenting software, etc. Wiki on a Stick currently only works in Firefox
Download (0.042MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
Carrera So-o 1.0
Carrera So-o is a simple yet challenging racing game to make time go by in boring moments. more>>
Carrera So-o is a simple yet challenging racing game to make time go by in boring moments.
Carrera So-o counts with 2 tracks to choose (grass and snow) with a simple objective... be the first to get to the finish line in order to win the game.
<<lessCarrera So-o counts with 2 tracks to choose (grass and snow) with a simple objective... be the first to get to the finish line in order to win the game.
Download (0.83MB)
Added: 2007-04-20 License: Freeware Price:
923 downloads
JTAG-O-MAT 1.2.5
JTAG-O-MAT program provides a simple but highly flexible interface to JTAG hardware. more>>
JTAG-O-MAT program provides a simple but highly flexible interface to JTAG hardware. In opposite to similar projects, the focus is on running automatic JTAG sequences. The code has been kept intentionally simple to maintain portability and allow modification without the risk to spoil too many dependant parts.
The program doesnt support debugging and cannot be used with GDB or other debuggers. Well, it can stop the CPU and retrieve register and memory contents, but thats all. And debugging support is not on the todo list.
Instead its mainly intended to bring up a virgin hardware, use it in an automated test environment or to preload boards in a production environment. Or simply to play around with JTAG. In that sense, boundary scan support will appear on the todo list sooner or later.
Supported Hardware
This release had been tested with a Wiggler compatible JTAG adapter for the parallel port and an AT91R40008 based target board named Ethernut 3.
Additionally included is the firmware for a tiny ATmega8L based board named Turtelizer, which can be used as a JTAG adapter for the PC serial port.
Enhancements:
- Memory uploads are now eight times faster.
- Wiggler support for Linux and Intel Hex File support was added.
<<lessThe program doesnt support debugging and cannot be used with GDB or other debuggers. Well, it can stop the CPU and retrieve register and memory contents, but thats all. And debugging support is not on the todo list.
Instead its mainly intended to bring up a virgin hardware, use it in an automated test environment or to preload boards in a production environment. Or simply to play around with JTAG. In that sense, boundary scan support will appear on the todo list sooner or later.
Supported Hardware
This release had been tested with a Wiggler compatible JTAG adapter for the parallel port and an AT91R40008 based target board named Ethernut 3.
Additionally included is the firmware for a tiny ATmega8L based board named Turtelizer, which can be used as a JTAG adapter for the PC serial port.
Enhancements:
- Memory uploads are now eight times faster.
- Wiggler support for Linux and Intel Hex File support was added.
Download (0.10MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1325 downloads
Disc-O-Matic 0.3
Disc-O-Matic is a GTK+ CD/DVD-ROM archiving tool for mastering and burning multiple discs. more>>
Disc-O-Matic is a GTK+ CD/DVD-ROM archiving tool for mastering and burning multiple discs.
Disc-O-Matic can be used in situations where you have a lot of data that you wish to burn to discs (e.g. keeping an MP3 collection synchronized with a set of CD-RWs).
<<lessDisc-O-Matic can be used in situations where you have a lot of data that you wish to burn to discs (e.g. keeping an MP3 collection synchronized with a set of CD-RWs).
Download (0.097MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1191 downloads
LINGOT Is Not a Guitar-Only Tuner 0.7.2
LINGOT is a musical instrument tuner. more>>
LINGOT is a musical instrument tuner. LINGOT is easy to use, accurate, and highly configurable. Originally conceived to tune electric guitars, its configurability gives it a more general character. (Tuning another instruments has not been tested).
It looks like an analogic tuner, with a gauge indicating the relative shift to a certain note --found automatically as the closest note to the estimated frequency--, indicating that note and its frequency.
The note will be found automatically, since the program hasnt any manual function mode (indicating the note to tune manually), for mantaining its general purpose.
We recommend using the tuner in conjunction with a sound mixer for selecting the desired recording source and the signal recording levels.
Main features:
- Accurate.
- Easy to use. Just plug in your instrument and run tuner.
- Very configurable via GUI. Its possible to change any parameter while the program is running, without editing any file.
- It works in an automatic way. It isnt necessary specify the note to tune; the program guesses it.
- Its free software. It has GPL license.
- Tuning other instruments than guitars is possible. Since this program guesses the note you are playing, it can be used to tune a piano, a bass, a violin, etc.
Enhancements:
- Files have been reorganized to a more "GNU-like" structure.
- Multi-lingual support has been added.
<<lessIt looks like an analogic tuner, with a gauge indicating the relative shift to a certain note --found automatically as the closest note to the estimated frequency--, indicating that note and its frequency.
The note will be found automatically, since the program hasnt any manual function mode (indicating the note to tune manually), for mantaining its general purpose.
We recommend using the tuner in conjunction with a sound mixer for selecting the desired recording source and the signal recording levels.
Main features:
- Accurate.
- Easy to use. Just plug in your instrument and run tuner.
- Very configurable via GUI. Its possible to change any parameter while the program is running, without editing any file.
- It works in an automatic way. It isnt necessary specify the note to tune; the program guesses it.
- Its free software. It has GPL license.
- Tuning other instruments than guitars is possible. Since this program guesses the note you are playing, it can be used to tune a piano, a bass, a violin, etc.
Enhancements:
- Files have been reorganized to a more "GNU-like" structure.
- Multi-lingual support has been added.
Download (0.44MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
853 downloads
Lazy TSS's I/O bitmap update 0.2
Lazy TSSs I/O bitmap update patch implements a lazy TSSs I/O bitmap copy for the i386 and x86-64 architecture. more>>
Lazy TSS's I/O bitmap update 0.2 provides you with an excellent product which implements a lazy TSSs I/O bitmap copy for the i386 and x86-64 architecture.
Instead of copying the bitmap at every context switch, the TSSs I/O bitmap offset is set to an invalid offset, so that an attempt to access the bitmap from the CPU will trigger a GP fault. It is lazily at that stage that the bitmap is updated, by hence avoiding bitmap copies in cases where the switched task do not perfom any I/O operation.
Added: 2008-04-09 License: GPL Price: FREE
12 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above a o gratuitos search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed