Main > Free Download Search >

Free 0.625 as a fraction software for linux

0.625 as a fraction

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 85
Math::Fraction 0.53b

Math::Fraction 0.53b


Math::Fraction is a Perl module to manipulate exact fractions. more>>
Math::Fraction is a Perl module to manipulate exact fractions.
SYNOPSIS
use Math::Fraction;
$a = frac(1,2); $b = frac(6,7);
print "$a + $b = ", $a + $b, "$a * $b = ", $a * $b;
print $a->num;
Main features:
- Being able to add, subtract, multiply, and divide, among other things just like you would normal numbers thats to the overload module.
- Being able to convert a decimal, including repeating ones, into a fraction. For example, 1.142857142857 would become 8/7.
- Being able to control how the fraction is displayed. For example 8/7 verses 1 1/7
- Being able to use arbitrary size numbers in the numerator and the denominator.
- Being able to covert between SMALL (using normal floats/integers) and BIG (using arbitrary size floats/integers) as needed so you do not have to worry about it. (New as of ver .4a)
- Being able to have multiple default sets so that a function can modify the defaults with out effecting other functions (New as of ver .4a)
<<less
Download (0.016MB)
Added: 2007-07-20 License: Perl Artistic License Price:
828 downloads
Choose a free eCourse 1

Choose a free eCourse 1


Education Wallpaper. Education Wallpaper. Education Wallpaper. Auto Expenses – first off, there isn’t the extra expense of gas and we are all aware (a... more>> <<less
Download (41KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
E/AS Automation Solutions 0.2.0

E/AS Automation Solutions 0.2.0


E/AS Automation Solutions is open source software system for help automate your solutions even for personal or corporate ones. more>>
E/AS Automation Solutions is open source software system for help automate your solutions even for personal and/or corporate ones.
E/AS written on CLIP language (CA-Clipper dialect, compiler can be obtained from ITK.ru) and uses CODB (CLIP Object Database) as data storage.
Main features:
- client-server technology (both data and interface forms)
- component infrastructure with interaction between components by messages
- interface forms on XML
- MDI
E/AS contains in typical distribution:
- client software written on clip-ui library
- server software with wrapper for run as daemon
- maintenance tools: CODB console and component manager
- base (form, auth) and example (contact) components
Enhancements:
- completely rewrite code for implement E/AS architecture
- component infrastructure
- own server program instead COBRA
- maintenance tools: CODB console and component manager
- base and example components
- autoupdate views
<<less
Download (0.060MB)
Added: 2005-11-15 License: GPL (GNU General Public License) Price:
1440 downloads
Petals on a Rose 1.0

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.
<<less
Download (0.16MB)
Added: 2007-07-20 License: MIT/X Consortium License Price:
826 downloads
Copy as HTML Link 1.1

Copy as HTML Link 1.1


Copy as HTML Link is a Firefox extension that creates an HTML link to the current page using the selected text and copies it. more>>
Copy as HTML Link is a Firefox extension that creates an HTML link to the current page using the selected text and copies it (into the clipboard) for pasting into other applications.

<<less
Download (0.008MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
910 downloads
A practical lambda-calculator 2.2

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.
<<less
Download (0.021MB)
Added: 2005-04-01 License: Public Domain Price:
1672 downloads
Linux on a Stick 0.3

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.
<<less
Download (61.4MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
557 downloads
A-foto 1.6 RC7

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

<<less
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 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

<<less
Download (0.042MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
839 downloads
Sidebar in a Can 1.0.1

Sidebar in a Can 1.0.1


Sidebar in a Can is a tool for webmasters to take a large amount of static content and turn it into a dynamic content. more>>
Sidebar in a Can is a simple and powerful tool for webmasters to take a large amount of static content (intimidating to new users) and turn it into a quite manageable amount of dynamic content. The result showcases your sites material.

Sidebar in a Can is built on Snippets technology.

Sidebar in a Can is designed to be run as a straightforward web application, with much administrative activity performed on-web. Rather than trying to explain how to use it, I simply encourage you to explore.

Security

The present release of Sidebar in a Can has not been closely scrutinized for security, and should be treated as such by security-conscious administrators. If you examine the code and discover a vulnerability that could compromise the server, please contact the author at jshayward@pobox.com. The script is intended to have light security and not to compromise a server, but it is not intended to store credit card numbers or other sensitive information.

The default installation sets < the private sidebar data directory > and contents to mode 777. Administrators are encouraged to set directory and contents to mode 700, owned by the effective user ID that Snippets will be running under.
<<less
Download (0.056MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
973 downloads
LINGOT Is Not a Guitar-Only Tuner 0.7.2

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.
<<less
Download (0.44MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
853 downloads
MP3 as CD verifier 2 0.1a

MP3 as CD verifier 2 0.1a


MP3 as CD verifier 2 performs lookups on CDDB servers. more>>
MP3 as CD verifier 2 performs lookups on CDDB servers in an attempt to determine whether one or multiple directories of downloaded/ripped MP3 files has correct track lengths.
Please remember that mp3ascd uses the alphabetically sorted list of .mp3 files per directory Hence it is possible that if your filenames are somehow mismatched (case?), they may be sorted incorrectly. If youre getting a mismatch that you think is wrong, run mp3ascd with default options to make sure that the enumerated list of files it finds is sorted correctly.
To install, firstly make sure the script is executable.
I copy mine into a directory in my PATH, such as /usr/bin/. It should work on a multitude of platforms, but if it does not work on yours, please let me know.
Enhancements:
- Improved readability
- Summary reports (recursive), including non-matching directories
- ID3 tag presence info shown in full display mode
<<less
Download (0.011MB)
Added: 2006-07-22 License: GPL (GNU General Public License) Price:
1190 downloads
The Tab Completion Grade Book 1.0beta4.1

The Tab Completion Grade Book 1.0beta4.1


The Tab Completion Grade Book is a full-featured grade book for teachers. more>>
The Tab Completion Grade Book is a full-featured grade book for teachers.
The Tab Completion Grade Book is a free software Java Grade Book program.
It features multiple courses, multiple students, arbitrarily-nested assignments, weighted assignments and categories, XML data storage, and a configurable grading scale for each course.
It can also print a per-student summary.
Main features:
- arbitrarily nested and weighted assignments
- human readable XML file format
- multiple courses and students
- scores can be fractions
- configurable grading scale per course
- print per-student summaries
- statistics, scatterplots, colors
- single student view
<<less
Download (0.59MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1106 downloads
Open as user 0.1.4

Open as user 0.1.4


Open as user is a servicemenu allows you to open a file as a different user. more>>
Open as user is a servicemenu allows you to open a file as a different user.

Installation:

To install, put the file in ~/.kde/share/apps/konqueror/servicemenus and restart Konqueror.

<<less
Download (MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
Old Laptop As Firewall 1.2

Old Laptop As Firewall 1.2


Old Laptop As Firewall is a single floppy Linux with 16-bit PCMCIA support and PPP for using a Pentium I/II laptop as a firewall more>>
Old Laptop As Firewall is a single, 1440kb floppy Linux with 16-bit PCMCIA support and PPP for using a Pentium I/II laptop to firewall a dial-up connection.
The floppy is msdos-formatted and uses Syslinux to boot into a 4MB ramdisk with a Minix version 2 filesystem. The system was compiled with uClibc 0.9.28.
Main features:
- 2.4.34 non-modular kernel, compressed with lzma
- uClibc 0.9.28
- busybox 1.4.1
- pcmcia-cs 3.2.8
- pppd 2.4.4b1
- iptables 1.3.7
- dnsmasq 2.35
- 100 kb free on the floppy to add more programs!
Version restrictions:
- OLAF has not been tested with more than one computer behind
- the firewall (I only have two boxes to work with.)
- The supplied chat script probably wont work for many people.
- There currently isnt any support for local timezones.
- The Windows and Mac support is lacking; I dont have
- either OS to work with.
Enhancements:
- The file permissions in /etc/* were changed from 0600 to 0644 on all plain text files except gshadow, shadow, and ppp/pap-secrets.
- The file permissions on /bin/busybox were changed from 0700 to 0755.
- The original permissions were too strict for dnsmasq, which runs as user nobody and couldnt access /etc/hosts.
<<less
Download (1.4MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
961 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5