Main > Free Download Search >

Free sw 2.7 software for mac

sw 2.7

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 166
Fix Permissions By SW 2.7

Fix Permissions By SW 2.7


Fix Permissions By SW - Repairs permissions on Mac OS X more>>
Fix Permissions By SW runs the CLI repair disk permissions command.
***THERE IS NO APPLICATION!*** (the installer IS the program!)
Great for using with ARD/NetBoot.
When the "installer" is run, Disk Utility runs its "repair permissions" command in the background. If you want to "repair permissions" again, "install" the package again.
This program runs the command
"sudo diskutil repairPermissions /"
Thats it....its just in a package to make life easier.
Enhancements:
- More logging for system events
- Log files now placed in separate directory (/Library/Logs/SISUWORKS/FixPermissionsBySW.log)
- Reduced dependency on executing commands as root, due to the fact that root authentication is required anyways
- Forced Software to only run on Root volume (currently booted volume) to clear up some confusion.
<<less
Download (21KB)
Added: 2006-06-10 License: Freeware Price:
1233 downloads
Software Update By SW 2.7

Software Update By SW 2.7


Software Update By SW - Updates Apple software in the background more>>
Software Update By SW forces Mac OS X to check for and install all available apple updates through ASU.
***THERE IS NO APPLICATION!*** (the installer IS the program!)
Great for use with NetBoot/ARD!
When the "installer" is run, Software Update runs in the background and installs any available updates through Apple Software Update. If you want to "update software" again, "install" the package again.
Enhancements:
- More logging for system events
- Log files now placed in separate directory (/Library/Logs/SISUWORKS/SoftwareUpdateBySW.log)
- Reduced dependency on executing commands as root, due to the fact that root authentication is required anyways
- Forced Software to only run on Root volume (currently booted volume) to clear up some confusion.
<<less
Download (21KB)
Added: 2006-05-15 License: Freeware Price:
1261 downloads
Rebuild Spotlight Index By SW 2.7

Rebuild Spotlight Index By SW 2.7


Rebuild Spotlight Index By SW - Forces 10.4 to rebuild the Spotlight more>> Rebuild Spotlight Index By SW - Forces 10.4 to rebuild the Spotlight

Rebuild Spotlight Index By SW when run, forces Mac OS X 10.4 to rebuild the spotlight index Great for use on conjunction with ARD/Netboot!
***THERE IS NO APPLICATION!*** (the installer IS the program!)
Great for use with ARD/NetBoot!
When the "installer" is run, Mac OS X 10.4 runs its command in the background to rebuild Spotlights index. If you want to "rebuild spotlights index" again, "install" the package again.
Enhancements
- More logging for system events
- Log files now placed in separate directory (/Library/Logs/SISUWORKS/RebuildSpotlightBySW.log)
- Reduced dependency on executing commands as root, due to the fact that root authentication is required anyways
- Forced Software to only run on Root volume (currently booted volume) to clear up some confusion.

<<less
Download (25KB)
Added: 2006-06-09 License: Freeware Price: FREE
194 downloads
Bwana 2.7

Bwana 2.7


Bwana is an exciting new page viewer for your browser. more>>

Bwana 2.7 is an exciting new page viewer for your browser. It parses man pages in real time to provide the most up to date pages in an easy to read format. The pages have links to other man pages, http and email references--the way man pages should have been from the start.

Major Features:

  1. View man pages directly from your browser.
  2. Better page set up to make reading easier.
  3. Embedded email and http links.
  4. Links to other man pages.
  5. Works in the background, no need to launch an application.

Enhancements: Updated Firefox script to work with the Firefox 3.5 (Jeffrey Berman)

Requirements: OS X 10.3.9+



<<less
Download (133.9KB)
Added: 2009-09-28 License: Freeware Price: Notavailable
downloads
Shrook 2.7

Shrook 2.7


Shrook is designed to be a next-generation news reader including advanced features. more>>

Shrook 2.7 is designed to be a next-generation news reader including advanced features. It supports all versions of RSS and Atom. And it's all really easy to user-interface.

Major Features:

  1. Quick subscription - Shrook supports feed: links, which allow you to add a channel to Shrook jUse external blog editors directly from Shrook
  2. Real-time search - Enter a word into Shrook's search box, and the list of channels or items instantly reduces to those matching the search.
  3. Secure access - Shrook provides access to private channels via HTTPS encryption (including self-signed) and password protection. Passwords are stored securely in your Keychain. It also shares credentials with Safari, so if you log in there you can read private channels in Shrook.
  4. Feed Guide - Shrook comes with an integrated feed guide to help you find new sites. It's loaded from the web, so it's always up to date.

Requirements:

  • Mac OS X v10.4, v10.5 or v10.6
<<less
Download (1.7MB)
Added: 2009-02-16 License: Freeware Price:
downloads
Scala 2.7.5

Scala 2.7.5


General purpose programming language designed to express common programming patterns more>> General purpose programming language designed to express common programming patterns

Scala is a general purpose programming language designed to express common programming patterns in a concise, elegant, and type-safe way. It smoothly integrates features of object-oriented and functional languages.
Scala is also fully interoperable with Java and it is the successor of Funnel, a language based on join calculus.

Main features:
Scala is object-oriented:
- - Scala is a pure object-oriented language in the sense that every value is an object. Types and behavior of objects are described by classes and traits. Class abstractions are extended by subclassing and a flexible mixin-based composition mechanism as a clean replacement for multiple inheritance.
Scala is functional:
- - Scala is also a functional language in the sense that every function is a value. Scala provides a lightweight syntax for defining anonymous functions, it supports higher-order functions, it allows functions to be nested, and supports currying. Scalas case classes and its built-in support for pattern matching model algebraic types used in many functional programming languages.
- - Furthermore, Scalas notion of pattern matching naturally extends to the processing of XML data with the help of right-ignoring sequence patterns. In this context, sequence comprehensions are useful for formulating queries. These features make Scala ideal for developing applications like web services (external link).
Scala is statically typed:
- Scala is equipped with an expressive type system that enforces statically that abstractions are used in a safe and coherent manner. In particular, the type system supports:
- - generic classes,
- - variance annotations,
- - upper and lower type bounds,
- - inner classes and abstract types as object members,
- - compound types,
- - explicitly typed self references,
- - views, and
- - polymorphic methods.
- - A local type inference mechanism takes care that the user is not required to annotate the program with redundant type information. In combination, these features provide a powerful basis for the safe reuse of programming abstractions and for the type-safe extension of software.
Scala is extensible:
- The design of Scala acknowledges the fact that in practice, the development of domain-specific applications often requires domain-specific language extensions. Scala provides a unique combination of language mechanisms that make it easy to smoothly add new language constructs in form of libraries:
- - any method may be used as an infix or postfix operator, and
- - closures are constructed automatically depending on the expected type (target typing).
- - A joint use of both features facilitates the definition of new statements without extending the syntax and without using macro-like meta-programming facilities.
- - Scala is designed to interoperate well with popular programming environments like the Java 2 Runtime Environment (JRE) and the .NET Framework (CLR). In particular, the interaction with mainstream object-oriented languages like Java and C# is as smooth as possible. Scala has the same compilation model (separate compilation, dynamic class loading) like Java and C# and allows access to thousands of high-quality libraries.

System requirements:
-

Enhancements
- This was a maintenance release that fixed a few bugs in the Actors library; no language changes were introduced.

<<less
Download (23.2MB)
Added: 2009-06-05 License: GPL Price: FREE
204 downloads
EVAL 2.7

EVAL 2.7


EVAL - Webserver middleware to support conduct of online competitions, etc more>>
EVAL is a webserver "middleware" to support conduct of online competitions, etc.
EVAL is "middleware" - it requires a number of support applications to do its work.

EVAL was not originally written to be portable or readily re-configurable. You may have to do some snooping around and editing to make it work on your system.

<<less
Download (153KB)
Added: 2006-01-19 License: Freeware Price:
1373 downloads
Yum! 2.7

Yum! 2.7


Yum! is a recipe organizer (was Recipe Librarian) more>> Yum! is a recipe organizer (was Recipe Librarian)

Lets face it, who can afford to have the computer itself in the kitchen and operate it with flour and eggs all over their hands?
Ingredients Scaling - enter the number of serves the recipe makes, and enter the number of serves you want to make, and the ingredients quantities will be scaled automatically.
You might like some of these recipes even if Yum! does not entirely suit your needs.

Main features:>
- - Dynamic searching of all text - found set of recipes updated as you type the search terms.
- - Indexing by category - each recipe can belong to any number of user-defined categories.
- - Several printing options - 1 recipe, all recipes, selected recipes, all recipes in selected category, found recipes. Lets face it, who can afford to have the computer itself in the kitchen and operate it with flour and eggs all over their hands?
- - Recipe text can be fully formatted including fonts, styles, paragraph settings, and even graphics (copy and paste, or drag and drop) so that pictures of your recipes can be included anywhere within the recipe text.
- - Recipes can be imported from MasterCook export files, or from other Yum! files, and can be exported to Yum! files or to text files.
- - Included in the distribution is my own recipe collection, "Sample Collection.yum". This can be used to evaluate the softwares cababilities without having to enter your own collection from scratch.

Enhancements:
- Can now use Apple Remote Control to step forwards/backwards in full-screen step-by-step mode.
- New Email Shopping List command (in Shopping menu).

<<less
Download (1.9MB)
Added: 2008-10-06 License: Freeware Price: FREE
431 downloads
iTweaX 1.2.7

iTweaX 1.2.7


Alter hidden features in Leopard, including Safari 4. more>>

iTweaX 1.2.7 is an advanced and easy to use program which reveals some useful (and some less useful) hidden features for OSX 10.5.x.

Major Features:

  1. User friendly GUI
  2. Uses very low system resources
  3. Maintenance tools
  4. Optimize OSX with no knowledge
  5. Many OSX tweaks for Finder, Dock, Safari, Mail, ...
  6. Included tweaks for the new Safari 4 Beta
  7. Clean handling of preferences! When you disable a hidden tweak it will be 100% removed. (not so with other tweak tools)
  8. Only hidden features - so no cluttered GUI.
  9. Restoring Tweaks
  10. Compatible with OSX 10.5.x
  11. It's free
<<less
Download (7MB)
Added: 2009-06-09 License: Freeware Price:
27 downloads
 
Other version of iTweaX
iTweaX 1.2.7Christophe De Vocht - Reveals hidden OS X features. iTweaX is a free utility to reveal some usefull ... iTweaX. Reveals hidden OS X features. iTweaX is a free utility
Price: FREE
License:Freeware
Download (7MB)
210 downloads
Added: 2009-06-11
offTunes 2.7

offTunes 2.7


offTunes is a powerful and very easy-to-use tool which can help you easily turn on and off iTunes after a certain time you can specify more>>
offTunes 2.7 is a powerful and very easy-to-use tool which can help you easily turn on and off iTunes after a certain time you can specify! Great as a sleep timer for your Mac! Now with dozens of bug fixes for your enjoyment!

Enhancements:

  • More spelling corrections
  • Seconds works correctly again!
  • Save disabled (Sorry again!) because of improperly loading timer file.
  • Cut out some unneeded code for faster app!
Requirements: iTunes 3 or higher.
<<less
Download (1.1MB)
Added: 2006-05-08 License: Freeware Price: FREE
1 downloads
Zipeg 2.7.1

Zipeg 2.7.1


ZIP, RAR archive browser & extractor. more>>

Zipeg 2.7.1 is a flexible and powerful tool which allows you to open and explore content of zip, rar and other archives, preview files and images before you extract/unzip them.

Extract only the files you want. Zip thru photo archives. See image thumbnails. Zipeg allows you to decide what do you want to extract. You can choose what to extract and where to put extracted files or just drag and drop them.

Major Features:

  1. Supports wide variety of archive formats: ZIP, RAR, ARJ, LHA/LZH, 7z, TAR, GZ, TGZ, BZIP2, CPIO, RPM, ISO, CHM, Z, CBR, CBZ, WAR, EAR...
  2. Allows to see what's inside archive BEFORE extracting files;
  3. Opens files in Preview or any other associated application directly from the archive;
  4. Displays image thumbnails (EXIF) in tooltips;
  5. Extracts/unzips items simply by dragging them;
  6. Easy-to-use user interface;
  7. Resource fork, file permissions and Finder attributes support for Mac OSX;
  8. Supports filenames in national alphabets in UTF-8, Unicode and codepage encodings;
  9. Processes archives in background;
  10. Does not have any archive size limitations;
  11. Allows to explore CD and DVD ".iso" image files;
  12. Reports cumulative contents size of subfolders;
  13. Gives fine control over customizable destination of extraction;
  14. Automatically opens nested archives;
  15. Opens archives via file types associations;
  16. Provides `path completion` for destination folders;
  17. Sorts content of folders by name, size or date;
  18. Automatically checks for latest updates;
  19. Universal binaries for Apple Macintosh OS X;
  20. Full Mac OSX and Windows XP/Vista support;
  21. Build on top of powerful 7zip engine;
<<less
Download (2.1MB)
Added: 2009-06-05 License: Freeware Price:
476 downloads
 
Other version of Zipeg
Zipeg 2.7Free utility that expands OS X’s built-in compression features. Zipeg 2.7 - Leo
License:Freeware
Download (2.1MB)
312 downloads
Added: 2009-06-05
Zipeg 2.7.0Zipeg 2.7.0 is a flexible and powerful tool which allows you to open and explore content of zip
License:Freeware
Download (2.1MB)
315 downloads
Added: 2009-06-02
bonSearch 2.7

bonSearch 2.7


bonSearch is a widget for you to have an option between and search in ten search engines and the information database of Wikipedia. more>>
bonSearch 2.7 is a widget for you to have an option between and search in ten search engines and the information database of Wikipedia. You can search in Google, Yahoo!, AltaVista, MSN Search, Ask Jeeves, dmoz, A9, Webcrawler and Amazon.com.

Uses a clean and simple Aqua user interface. Important note! This Widget will automatically notify you whenever a newer version is available by pointing your browser to an update page.

Enhancements:

  • Feature: Amazon.com search added
  • Code: Starts 12% faster than previuos versionsBugfix: Opera 8 launch fixed
  • Code: Removed and updated some of the code
  • Feature: Automatic update feature

Requirements:

  • Mac OS X 10.4.1, Any web browser.
<<less
Download (177K)
Added: 2005-06-29 License: Free Price:
downloads
 
Other version of bonSearch
bonSearch 2.7bonSearch is a beneficial and invaluable tool that lets you choose between and ... bonSearch 2.7 is a beneficial and invaluable tool that lets you choose between and search in ten
License:Freeware
Download (172.8KB)
downloads
Added: 2005-06-28
Safaricon 2.7

Safaricon 2.7


Safaricon - Change Safari user interface more>>
afarIcon allows you to change Safaris user interface by installing icons as well as other application resources such as nib files localization files.
SafarIcon comes bundled with a small set of high quality icon themes and more themes are available at the website. SafarIcon copies all graphical elements of Safaris user interface from its own themes into the Resources folder of Safari.app and replaces the originals. The application previews the new icons in a simulated browser window. SafarIcon also gives you the option to install Aqua Pinstripe or Brush Metal appearances of both the browser and download windows.
Main features:
- Includes 9 high quality icon themes
- Optional install of either Aqua Pinstaripe or Brushed Metal windows
- Previews theme appearance before installing (WYSIWYG)
- Flexible install options (full themes or individual icons)
- Customizable preferences, including custom theme
- Optional auto-update of application and themes from website.
Enhancements:
- Compiled as Universal Binary
- Updated Safari default theme
- Updated nib files for Safari 2.0.3.
<<less
Download (922KB)
Added: 2006-01-17 License: Freeware Price:
1540 downloads
 
Other version of Safaricon
SafarIcon 2.7Reinhold Penner - SafarIcon offers a lot of advanced features which helps you to change Safaris
License:Freeware
Download (900.4KB)
downloads
Added: 2006-01-15
BixServer 2.7

BixServer 2.7


The BixServer is the central component designed to collect data from servers more>>
The BixServer is the central component designed to collect data from servers and serves as the Operational Data Store for any data gathered through monitoring or import from other data sources.

Easy To Install

BixServer is a complete solution that is easy to deploy and installs in less than 10 minutes. BixServer also features auto configuration for all its features, and includes network tools such as network scan and network topology to import the details of servers and networking devices.

Agent-less Monitoring

BixServer can monitor servers and services that do not have agents installed, such as HTTP, applications and databases.

Data Gathering

BixServer is an advanced data gathering platform. Data gathering from agents automatically configures itself for optimum performance and lowest impact on resources and network bandwidth.

BixAgent features local storage which allows monitoring and data collection to continue even if network connectivity is not available. In any environment switches/routers or networks can fail. This is also ideal in environments where ‘always on’ connectivity is not available.

Through included data sources and plug-ins, BixAgent can collect data from any server on any platform and store directly into a number of supported SQL Servers.

BixData uses an open specification for data storage. Open data exchange is very important to integrate with different environments and software systems, especially in IT.

Notifications, Alerts and Actions

Manage devices by monitoring the many aspects of availability, performance and resource usage and then manage by using notifications and alerts.

System administrators can instantly be notified through desktop alerts, email or cell phone; or escalate errors through their organization. BixServer also supports built-in actions such as executing scripts locally or remotely, or taking any number of built-in actions.

SQL Support

BixServer’s Operational Data Store allows the gathering and storage of more than 30GB per day. Through included data sources and plug-ins, BixAgent can collect data from any server on any platform and store directly into a number of supported SQL Servers. All data schemas and data storage in BixData is in XML format that can easily be integrated into 3rd party applications or accessed directly from the underlying SQL database servers.

SQL Support is included for MySQL, PostgreSQL, Microsoft SQL Server and Firebird.

Reporting

The advanced reporting capabilities of BixServer include table reports, graphs and html reports. BixServer has many predefined reports and graphs that provide useful information about servers, applications and even hardware inventory. Reports can provide information on specific servers, services and also averages for groups of servers.

<<less
Download (9.8MB)
Added: 2006-12-19 License: Freeware Price:
1040 downloads
OSXFlex2D 2.7

OSXFlex2D 2.7


2D flexural/elastic modeling. more>>

OSXFlex2D 2.7 provides you a powerful program which is able to implement the "elastic" , "flexural" model. Crustal loads can be entered and plotted, the profile of deformation produced by these loads can be computed and visualized, and the effect of changes in model parameters can be evaluated at real time. Geologists often talk about the "flexural" link between tectonic loads and sedimentary basins, but they rarely do the math. Perhaps, because implementing the "flexural" model is tedious, specially if it is done in spreadsheets. OSXFlex2D makes "flexural modeling" an easy and enjoyable task.

<<less
Download (928KB)
Added: 2009-05-16 License: Freeware Price:
21 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5