Main > Free Download Search >

Free partial software for mac

partial

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 106
nonpareil 0.16

nonpareil 0.16


nonpareil - Micro-assembler & simulator package for HP calculators more>>
nonpareil is a micro-assembler and simulator package for the calculators written originally for Linux by Eric Smith.
Mac OS X version of nonpareil is based on version 0.77 for Linux and currently can simulate classic (35, 45, 55, 80), woodstock-spice (32e, partial 33c) and nut-voyager (11c, 12c, 15c, 16c) calculators only.
nonpareil for Mac OS X is pre-release software (beta version).
nonpareil is made available under the terms of the Free Software Foundations General Public License, Version 2.
Enhancements:
- Recompiled on iMac Core Due.
- This version is universal binary.
<<less
Download (149KB)
Added: 2007-05-05 License: GPL Price:
908 downloads
AbbreviationZ 1.0

AbbreviationZ 1.0


AbbreviationZ - Search one of the most complete abbreviations and acronyms database on the web more>>
A widget that allows you to search for abbreviations and acronyms using AbbreviationZ.com. Search for an exact match, partial match or reverse lookup.

The database holds hundreds of thousands entries organized by categories. Results are sorted by popularity.


<<less
Download (77KB)
Added: 2005-12-08 License: Freeware Price:
1415 downloads
Addressable 2.1.0

Addressable 2.1.0


URI implementation that comes as a replacement for the Ruby standard library more>> URI implementation that comes as a replacement for the Ruby standard library

Addressable is a replacement for the URI implementation that is part of Rubys standard library.
Addressable adds support for URI and IRIs templates and more closely conforms to the relevant RFCs.
NOTE: Addressable is licensed and distributed under the terms of the MIT/X Consortium License.

Enhancements
- refactored URI template support out into its own class
- removed extract method due to being useless and unreliable
- removed Addressable:URI.expand_template
- removed Addressable:URI#extract_mapping
- added partial template expansion
- fixed minor bugs in the parse and heuristic_parse methods
- fixed incompatibility with Ruby 1.9.1
- fixed bottleneck in Addressable:URI#hash and Addressable:URI#to_s
- fixed unicode normalization exception
- updated query_values methods to better handle subscript notation
- worked around issue with freezing URIs
- improved specs

<<less
Download (126KB)
Added: 2009-06-07 License: Freeware Price: FREE
184 downloads
Gazzera 0.2

Gazzera 0.2


A peer-to-peer file sharing application where you only connect to people you trust more>>
Gazzera 0.2 offers you a professional and very useful peer-to-peer file sharing application where you only connect to people you trust. Gazzera is targeted at groups of real life friends that wants to share files securely. Differently from public networks like edonkey and gnutella, strangers cannot spy you any more.

Major Features:

  1. Encrypted
  2. Secure, encrypted protocol based on SSL.
  3. Fiend to Friend
  4. Let only your friend share your files.
  5. Trust based system
  6. Assign a trust level to your friend, and let their friend connect too.
  7. Multi source download
  8. Download the same file from more than one friend.
  9. Partial downloads
  10. Download a file that a friend have only partially downloaded.
  11. Lightweight
  12. Resources are not wasted. This program uses very little CPU and RAM. Try and compare it with other programs!
  13. Cross-platform
  14. It works on Linux and Windows (Mac support should require only minor work, help wanted)
  15. Modularity
  16. The core and the gui are well separated. An unstable version with an http gui is avaiable
  17. ED2K and Magnet URI support
  18. It is planned to support popular URI schemes

Enhancements: Completely rewritten Gazzera.

<<less
Download (1.9MB)
Added: 2009-05-13 License: GPL Price: FREE
13 downloads
Notational Velocity 2.0b

Notational Velocity 2.0b


Notational Velocity is a helpful and simple application that stores and retrieves notes. more>>

Notational Velocity 2.0b is a helpful and simple application that stores and retrieves notes. It is an attempt to loosen the mental blockages to recording information and to scrape away the tartar of convention that handicaps its retrieval. The solution is by nature nonconformist.

Major Features:

  1. Modeless Operation Searching for notes is not a separate action; rather, it is the primary interface.
  2. Incremental Search Searching encompasses all notes' content and occurs instantly with each key pressed.
  3. Transparent Encryption All information is compressed and encrypted (enabled optionally) before it is recorded to disk.
  4. Mouseless Interaction Notational Velocity's window was designed for keyboard input above all else, and thus has no buttons.
  5. Data Instead of Documents There is no manual "saving" in Notational Velocity; all modifications take effect immediately.

Enhancements:

  • Option to maintain/synchronize notes as text files for Spotlight and/or text editor access
  • More robust and space-efficient database with encrypted, compressed write-ahead logging
  • On-demand mounting of disk images and servers when loading the database
  • Optional AES encryption with variable-strength key derivation
  • Styled text editor supports font-independent formatting, an alternative to "rich text"
  • Partial word-by-word or full-phrase searching
Requirements: Mac OS X 10.3.9-10.6
<<less
Download (709.1KB)
Added: 2009-09-12 License: Freeware Price: Notavailable
downloads
polyparse 1.3

polyparse 1.3


This is a collection of parser combinator libraries in Haskell. more>>

polyparse 1.3 is an ideal tool for programmers. It is actually a free and open source project that includes a variety of alternative parser combinator libraries, including the original HuttonMeijer set.

The Poly sets have features like good error reporting, arbitrary token type, running state, lazy parsing, and so on. Finally, Text.Parse is a proposed replacement for the standard Read class, for better deserialisation of Haskell values from Strings.

Please note that polyparse is licensed and distributed under the terms of the LGPL license.

Some Functionality:

  • Text.ParserCombinators.Poly - Currently re-exports Text.ParserCombinators.Poly.Plain. The name Poly comes from the arbitrary token type. Thus, you can write your own lexer if you wish, rather than needing to encode lexical analysis within the parser itself.
  • Text.ParserCombinators.Poly.Plain - This is a fresh set of combinators, improving on the HuttonMeijer variety by keeping only a single success, not a list of them. This is more space-efficient, whilst still permitting backtracking. Error-handling is also much improved: there are essentially two kinds of failure, soft and hard. Soft failure just means that the current parse did not work out, but another parse might be OK. Hard failure means that no parse will succeed, because we have already passed a point of commitment. Thus you can give far more accurate error messages to the user, including multi-layered locations.
  • Text.ParserCombinators.Poly.State - This is just like Poly, except it adds an arbitrary running state parameter.
  • Text.ParserCombinators.Poly.Lazy - This is just like Poly, except it does not return explicit failures. Instead, an exception is raised. Thus, it can return a partial parse result, before a full parse is complete. The word partial indicates that, having committed to return some outer data constructor, we might later discover some parse error further inside, so the value will be partial, as in incomplete: containing bottom. However, if you are confident that the input is error-free, then you will gain hugely in space-efficiency - essentially you can stream-process your parsed data-structure within very small constant space. This is especially useful for large structures like e.g. XML trees.

Enhancements:

  • Single bugfix: Text.Parse.parseFloat now accepts ordinary floating point notation, in addition to scientific (exponent) notation.

Requirements:

  • GHC
<<less
Download (106KB)
Added: 2009-03-10 License: Freeware Price: FREE
1 downloads
Apple Wall 1.0

Apple Wall 1.0


A beautiful wallpaper set featuring a fresh Apple logo. more>> This software is used to back up data and to synchronize PCs, servers, and notebooks. Users can choose the user interface that suits them best: Wizard Mode or Advanced Mode. The settings are stored in multiple profiles, and the software comes with support for FTP and secure FTP servers, SSH, WebDAV, Amazon S3, http, partial file updating, ZIP compression, data encryption, and a scheduler for automated backups. The scheduler can run as a service without users having to log on. On Windows XP or later, locked files can be copied using the Volume Shadow Service. This program features the ability to freely select files and folders across the whole folder hierarchy in a tree view, and it has support for e-mail notification, profile categories, and various filters.
The software also supports Unicode characters in file names, file paths as long as 32767 characters, and much more. It also includes Real Time Synchronization (folder monitoring).
<<less
Download (2.2MB)
Added: 2009-02-26 License: Freeware Price: FREE
195 downloads
Pod to Mac 3.0

Pod to Mac 3.0


Copy and transfer music & playlists from any iPod or iPhone to iTunes. more>>

Pod to Mac 3.0 is an effective utility which allows you to easily copy, transfer or rip the music, videos and playlists from any iPod or iPhone directly into iTunes on any Mac.

By decoding the iPods binary database, Pod to Mac rapidly reveals the contents of any iPod and then lets you choose what to do with the tracks. Play counts, ratings and the other track details are all recovered for every song transferred. The program's features also include audio and video track previews, sortable columns and more!

Major Features:

  1. Easily copy any music or video files from any iPod onto your computer.
  2. Recover your music in iTunes after your computer crashes by transferring the music on your iPod or iPhone back to your computer.
  3. Preview music and movies on any iPod before transferring it into your iTunes library.
  4. Use the Automatic Transfer button to instantly select, then transfer all songs on an iPod that are not already in your iTunes Music Library.
  5. Easily copy a whole or partial playlist from any iPod into iTunes.
  6. Prevent duplicate transfers: Tracks already in iTunes are indicated with a blue check.
  7. All track info gets transferred including the track play count, rating (out of 5 stars), album and more.
  8. Quickly find the tracks your looking for with the Pod to PC search bar and filter options.
  9. Automatic upgrades notifications, keeps users up to date with the latest iPod and iTunes versions.

Requirements:

  • Windows 2000, XP or Vista
  • iTunes 8.0 or more recent
<<less
Added: 2009-07-11 License: Freeware Price:
454 downloads
MacPorts 1.5.0

MacPorts 1.5.0


MacPorts - provides an infrastructure for building, installing, and packaging open source software more>>
MacPorts is a powerful tool that provides an infrastructure for building, installing, and packaging open source software. It is designed to match the functionality of the FreeBSD Ports system and to be extensible for future enhancements.


Basic Usage:

The main user interface to MacPorts is the port command and the various facilities it provides for installing ports.

The first thing you should do after you install MacPorts is to make sure it is fully up to date by pulling the latest revisions to the Portfiles and any updated MacPorts base code from our rsync server, all accomplished simply by running the port selfupdate command as the Unix superuser:

sudo port selfupdate

Running this command on a regular basis is a good idea, it ensures your MacPorts installation is always up to date. Afterwards, you may search for ports to install:

port search

where is the name of the port you are searching for, or a partial name. To install a port youve chosen, you need to run the port install command as the Unix superuser:

sudo port install

where now maps to an exact port name in the ports tree, such as those returned by the command port search. Please consult the port(1) man page for complete documentation for this command and the software installation process.
<<less
Download (548KB)
Added: 2007-07-16 License: GPL Price:
840 downloads
OpenSteam 0.9.3

OpenSteam 0.9.3


Generic eCommerce Framework for RubyOnRails more>> Generic eCommerce Framework for RubyOnRails

OpenSteam is a web-based shopping and e-commerce framework for RubyOnRails.
OpenSteam features generators, as known from Rails, to easily create webshops and products with one command.
With OpenSteam it is possible to associate products with various properties, to create multiple product-models, and to give specific product-configurations an inventory-entry (price, storage, etc).

Main features:>
- generator to create webshops
- generators to create products and properties
- Shopping Cart
- Checkout-Workflow
- Associate Products to Properties
- Define price and storage-quantity for products or specific product-configurations
- Admin-Backend to overview customers and orders.
- Taxes: define taxes or tax-groups for products and regions
- ActiveMerchant Integration (CreditCard Payment)
- PaymentMethods: use the implemented creditcard payment or simply implement your own payment-method
- ShippingRate: define rates for products, regions and payment-types, or implement your own shipping-rate calculation
- PDF-Export for invoices (using the excellent prawnto plugin)
- Rails 2.1.1 compatibility.

System requirements:
- RubyOnRails

Enhancements:
- added a ContainerModel to hold the basic ShoppingCart Logic (add/update/delete items, increment/decrement), STI
- moved Cart from session to database (into Container)
- moved OrderBase into Container (same logic as ShoppingCart)
- added a Tax-System (TaxZones, TaxGroups, Calculation, etc), MVC
- implemented ActiveMerchant Integration. (CreditCard Payment)
- added PaymentTypes and a Payment Base Class to simplify future integration of payment-methods
- added ShippingRate calculation (ShippingRates, Zones, ShippingRateGroups), MVC
- added shipping-rates, taxes, netto_price calculation, payment_type to OrderBase (Container)
- refactored Checkout-Process and OrderBase-Model in order to work with payment_type, shipping-rate and taxes
- added PDF-Export for Invoices (using the prawn-gem and prawnto-plugin http://www.cracklabs.com/prawnto )
- removed state-logic from InvoiceBase (not needed)
- added payment_process initializers (CreditCardPayment)
- added Configuration Model (Backend), to hold simple key-value pairs
- added units tests for Container::Base (Order, Cart), Payment, ProductBase and Order
- refactored the "set_properties=" method in ProductBase. Now "building" the inventory-objects instead of creating.
- refactored the _attributes partial for products in order to work with the new "set_properties=" method.
- InventoryBase: added a named_scope called :by_properties (replaces the exists_by_properties extension-method fpr the inventories-association in ProductBase): Now: Single SQL-Query instead of fetching every single property.
- fixed bug in StateMachine caused by inheritance: declared observers and inialstate as class_inheritable_accessor
- StateLogic: changed state-name from .downcase to .underscore
- deleted unnecessary partials (TODO: more to delete!)
- renamed cart_controller to carts_controller (ActiveRecord Model, recources!)
- added a "init_opensteam_config" migration file, to create admin-uses and load fixtures (zones, tax_zones, shipping_rates, configuration)
- added verification_value to credit_card_payment partials
- deleted lib/cart_base.rb (not needed anymore, now Opensteam::Cart < Opensteam::Container::Base)

<<less
Download (235KB)
Added: 2008-10-03 License: GPL Price: FREE
386 downloads
Insert Contact Email 1.1

Insert Contact Email 1.1


Insert Contact Email - Insert email address for a contact in Entourage more>>
Insert Contact Email is an Entourage AppleScript that quickly inserts into a message you are composing an E-mail address for a contact in your Address Book. It inserts the address only, enclosed in angle brackets, e.g.,.

It locates the contact when you enter a full name, partial name, company name, or nickname.

<<less
Download (21KB)
Added: 2006-03-18 License: Freeware Price:
1318 downloads
Colour Balls 1.0

Colour Balls 1.0


A great dashboard widget where you must click the ball with the correct color label. more>> This software is used to back up data and to synchronize PCs, servers, and notebooks. Users can choose the user interface that suits them best: Wizard Mode or Advanced Mode. The settings are stored in multiple profiles, and the software comes with support for FTP and secure FTP servers, SSH, WebDAV, Amazon S3, http, partial file updating, ZIP compression, data encryption, and a scheduler for automated backups. On Windows NT/2000/XP/Vista, or 2003 Server, the scheduler can run as a service without users having to log on. On Windows XP or later, locked files can be copied using the Volume Shadow Service. This program features the ability to freely select files and folders across the whole folder hierarchy in a tree view, and it has support for e-mail notification, profile categories, and various filters.
The software also supports Unicode characters in file names, file paths as long as 32767 characters, and much more.
Features
Synchronizes or Backs Up Files
Includes a scheduler
Internet Support
Compression and Encryption Support.
Detects Moved Files
SmartTracking
Unattended Mode
Exact Mirror Mode
Copy Locked Files
Versioning
Database-safe mode
Partial File Updating
Can Use Recycle Bin
File Masks & Filters
Daylight Savings Time / Time Zones
Easy Resuming On Disk Full
Obsolete File Folders
<<less
Download (495KB)
Added: 2009-01-01 License: Freeware Price: FREE
203 downloads
Tri-BACKUP 5.2.1

Tri-BACKUP 5.2.1


Tri-BACKUP is regarded as a flexible and convenient program which supports the automatic backup of data as well as entire disks. more>>

Tri-BACKUP 5.2.1 is regarded as a flexible and convenient program which supports the automatic backup of data as well as entire disks.

Just create the programmed actions you desire, and let Tri-BACKUP do the work.

Major Features:

  1. Multiples modes: copy, backup, synchronize, remove, compress, compare, etc.
  2. Different backup modes: Evolutive (saves successive versions of each document), Mirror (identical copy), Incremental partial backup, Disk Copy, etc.
  3. Programmed Actions executed in background, with automatic scheduling.
  4. Immediate Actions to precisely control what must be copied, deleted,or modified.
  5. Unlimited number of programmed actions can be created.
  6. History and log of executed actions, files copied, errors, etc.
  7. Information messages during the execution of the actions.
  8. Automatic mount of remote volumes.
  9. Assistant to help using Tri-BACKUP and creating actions.

Enhancements: Fixed a problem with icons drawing in Tri-BACKUP windows.

Requirements: For Mac PowerPC or Mac Intel with Mac OS X 10.4 or+. Universal Binary application (native for Mac PowerPC and Intel)


<<less
Download (9.9MB)
Added: 2009-09-20 License: update/patch Price: $69.00
downloads
 
Other version of Tri-BACKUP
Tri-BACKUP 5.1.7successive versions of each document), Mirror (identical copy), Incremental partial backup, Disk Copy, etc. Programmed Actions executed in background, with automatic scheduling. Immediate
Price: $69.00
License:update/patch
Download (9.8MB)
downloads
Added: 2009-08-08
Price: $69.00
License:update/patch
Download (10.1MB)
downloads
Added: 2009-01-29
unArchive 0.1.1b

unArchive 0.1.1b


unArchive - Backing up data that is important to you is a step that ALL computer users should practice as much as possible more>>
If you do not UNDERSTAND what this software does, DO NOT ATTEMPT TO USE IT. Please consult the included manual for instruction on use of the software. Read The Full Manual before attempting use.
Backing up data that is important to you is a step that ALL computer users should practice as much as possible.
In the event of system faillure, the importance of having stuff backed up is tremendous. When attempting to re-install system software, or repair damaged system software on your computer, I recommend backing up anything that is of importance to you.
This may include all of your data, or one file. You should take the initiaitive to backup any important data to anoter piece of media before attempting to use unArchive, or any system disk utility for that matter. As a Macintosh Service Technician, I have seen data loss occur, when it could have been easily prevented had the user taken a few minutes of their time to preserve information.
Main features:
unArchive has two functions:
- Archive (moving a Mac OS X system into a folder, for removal, or partial re-installation)
- unArchive (moving an archived Mac OS X system from a Previous Systems folder, back into the root of that drive).
<<less
Download (57KB)
Added: 2006-08-25 License: Freeware Price:
1157 downloads
PeRColate 0.9 b6

PeRColate 0.9 b6


PeRColate - A collection of synthesis, signal processing, and image processing objects more>>
PeRColate is an open-source distribution of a variety of synthesis and signal processing algorithms for Max/MSP.

PeRColate is a tool centered around a (partial) port of the Synthesis Toolkit (STK) by Perry Cook (Princeton) and Gary Scavone (Stanford CCRMA). Like the STK, it provides a fairly easy to use library of synthesis and signal processing functions (in C) that can be wired together to create conventional and unusual instruments.

Also like the STK, it includes a variety of precompiled synthesis objects, including physical modeling, modal, and PhISM class instruments; the code for these instruments can serve as foundations for creating new instruments (one example, the blotar, is included) and can be used to teach elementary and advanced synthesis techniques.

Given its STK heritage and educational function, PeRColate is largely un-optimized, though all the objects run on a 80MHz 7100, which is pretty good.

PeRColate also includes a number of objects not from the STK; some are from RTcmix and others are our own evil creations, designed to crash your computer, but only after making some kind of interesting sound or image.
<<less
Download (8.5MB)
Added: 2007-05-11 License: GPL Price:
899 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5