Main > Free Download Search >

Free dynamic languages software for mac

dynamic languages

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1581
No-IP Dynamic DNS Update Client 3.1.3b4

No-IP Dynamic DNS Update Client 3.1.3b4


No-IP Dynamic DNS Update Client is one of the most marvelous tools which sits in the back ground and monitors your dynamic IP address. more>>

No-IP Dynamic DNS Update Client 3.1.3b4 is one of the most marvelous tools which sits in the back ground and monitors your dynamic IP address.

Whenever it changes it sends up update to the system to update your No-IP.com account DNS host names. The client supports multiple hosts, group updates and also runs as a daemon running in the background when you are not logged into the system insuring that your IP address is always current.

<<less
Download (7.4MB)
Added: 2009-11-01 License: Freeware Price: Notavailable
downloads
 
Other version of No-IP Dynamic DNS Update Client
No-IP Dynamic DNS Update Client 3.1.3b3No-IP Dynamic DNS Update Client is designed as a useful ...No-IP Dynamic DNS Update Client 3.1.3b3 is designed as a useful
Price: Notavailable
License:Freeware
Download (7.4MB)
downloads
Added: 2009-10-28
No-IP Dynamic DNS Update Client 3.1.3b2Vitalwerks Internet Solutions, LLC - No-IP Dynamic ... monitors your dynamic IP address. Whenever it changes it sends up update to our system to update
Price: Notavailable
License:Freeware
Download (7.4MB)
downloads
Added: 2009-10-01
No-IP Dynamic DNS Update Client 3.1.3bground which effectively monitors your dynamic IP address. No-IP Dynamic DNS Update Client 3.1 ...No-IP Dynamic DNS Update Client 3.1.3b is a powerful software
Price: Notavailable
License:Freeware
Download (7.3MB)
downloads
Added: 2009-09-28
Logtalk 2.37.5

Logtalk 2.37.5


Logtalk brings you canvenience of using such an object-oriented logic programming language that can use most Prolog implementations as a back-end compiler. more>>

Logtalk 2.37.5 brings you canvenience of using such an object-oriented logic programming language that can use most Prolog implementations as a back-end compiler.

As a multi-paradigm language, Logtalk includes support for both prototypes and classes, protocols (interfaces), component-based programming through category-based composition, event-driven programming, and high-level multi-threading programming.

Major Features:

  1. Separation between interface and implementation: Predicate directives (declarations) can be contained inside protocols (interfaces), which can be implemented by any object.
  2. Parametric objects: Object identifiers can be compound terms containing free variables that can be used to parametrize object predicates. This allows us to interpret predicate clauses as providing instantiations of a parametric object identifier. I.e. through parametric object we can associate any number of methods with a compound term.
  3. Support for both class-based and prototype-based systems: You may have, in the same application, class-based hierarchies (with instantiation and specialization relations) and prototype-based hierarchies (with extension relations). Moreover, fundamental language features such as protocols (interfaces) and categories (components) can be used simultaneously by classes, instances, and prototypes.
  4. Support for multiple object hierarchies: No need to be constrained to a single, lengthy hierarchy rooted in some generic object.
  5. Private, protected, and public inheritance: Logtalk supports private, protected, and public inheritance in a way similar to C++. Moreover, any entity relation can be qualified using a scope keyword. E.g. an object can privately implement a protocol, thus making all protocol declared predicates private.
  6. Private, protected, and public object predicates: Set the scope of your object predicates to match your protocol design and let the runtime system enforce your choices.
  7. Static and dynamic objects: Objects can be either static or dynamic. Static objects are defined in source files which are compiled and loaded in the same way as Prolog files. Dynamic object can be either defined in source files or created at runtime.
  8. Static and dynamic object predicates: Any static object may contain both static and dynamic predicates.
  9. Logtalk syntax extends standard Prolog syntax: Logtalk uses standard Prolog syntax with the addition of a few operators and directives for a smooth learning curve. Prolog code can be easily encapsulated inside objects with little or no changes. Moreover, Logtalk can transparently interpret most Prolog modules as Logtalk objects for easy reusing of existing code (e.g. libraries).
  10. Event-driven programming: Predicates can be implicitly called when a spied event occurs, allowing programming solutions which minimize object coupling. In addition, events provide support for behavioral reflection and can be used to implement the concepts of pointcut and advice found on Aspect-Oriented Programming.
  11. Component-based programming: Predicates can be encapsulated inside categories, which can be virtually imported by any object, without any code duplication and irrespective of object hierarchies. Thus, objects may be defined through composition of categories, which act as fine-grained units of code reuse. Categories may also extend existing objects. Categories can be used to implement aspects and mixin-like behavior without resorting to inheritance.
  12. Multi-threading programming: High level multi-threading programming is available when running Logtalk with selected back-end Prolog compilers, allowing objects to support both synchronous and asynchronous messages. Independent and-parallelism and competitive or-parallelism are also supported. Easily take advantage of modern multi-processor and multi-core computers without bothering with the details of creating and destroying threads, implement thread communication, or synchronizing threads.
  13. Multi-inheritance support: Logtalk supports multi-inheritance of both protocol and implementation. An object may implement several protocols and extend, specialize, or instantiate several objects. Multi-inheritance conflicts are solved implicitly by the Logtalk lookup algorithms or explicitly by using predicate directives.
  14. Good performance: Logtalk code is compiled using the same technics that you use to write efficient Prolog code. In addition, Logtalk supports both static binding and dynamic binding (with method lookup caching), greatly improving performance. Benchmark results for some Prolog compilers are available here.
  15. Close integration with the ISO Prolog Standard: Logtalk is designed for smooth integration with any Prolog compiler that conforms or closely follows the ISO Prolog Standard.
  16. Compatible with most Prolog compilers: Logtalk interfaces with a specific back-end Prolog compiler via a minimal configuration file making it compatible with almost any modern compiler.
  17. Automatic generation of XML documentation files: Logtalk automatically generates a documentation file in XML format for every compiled object, protocol, or category. The system includes all the necessary XSL(T) files and scripts to convert documenting files to (X)HTML and PDF.
  18. Dynamic language: Logtalk is a dynamic language that allows hierarchies, objects, protocols, categories, and methods (predicates) to be freely created and modified at runtime. Other dynamic language features include support for meta-programming and both structural and behavioral reflection.

Enhancements:

  • Updated the Logtalk multi-threading features, replacing all calls to the call_cleanup/2 built-in predicate with calls to the more reliable setup_call_cleanup/3 built-in predicate. This change requires recent versions of SWI-Prolog, XSB, and YAP when writing multi-threading code.
  • Improved performance of the database built-in methods retractall/1 and retract/1 whenever their use requires updating the internal predicate definition lookup tables.
  • Corrected a bug in the Logtalk runtime when printing a compatibility warning regarding the back-end Prolog compiler version being used.
  • Corrected a bug in the implementation of the :/1 control construct when some but not all imported categories are compiled for static binding.
  • Corrected a event handling bug in the processing of meta-calls whose meta-arguments have the format Object:Closure.
  • Corrected a bug in the runtime error handler for top-level message sending calls where the reported exception term context argument would be unbound.
  • Corrected a bug in the compilation of multifile directives and multifile predicate clauses within objects and categories for the pseudo-object
  • "user". Corrected a bug in the compilation of multifile predicate clauses for other objects and categories.
  • Corrected a safety meta-predicate compilation bug when using static binding to optimize a call to a local meta-predicate made by a normal, public predicate.
  • Corrected a safety meta-predicate compilation bug when using a meta-predicate call in the body of a user-defined meta-predicate clause in order to change the number of extra arguments of a closure.
  • Added a monitor/1 predicate to the library event registry objects. Updated the definition of the monitors/1 and monitored/1 predicates in order to avoid using the non-standard predicate sort/2.
  • Added support for adding the Logtalk mime-type to systems supporting the freedesktop.org shared mime-info database.
  • Added support for adding the Logtalk mime-type and the file description for Logtalk source files to the Windows installer.
  • Updated the RPM spec file and build script to no longer require root access. The RPM package built from these files is no longer relocatable.
  • Updated the POSIX (un)install shell scripts to print the version number of the Logtalk release being (un)installed.
  • Updated the "lgt2pdf.sh" and "lgt2txt.sh" POSIX shell scripts in order to prevent accidental deletion of the "logtal.dtd" and "logtalk.xsd" files in the Logtalk installation directory. Thanks to Michael Igler for the bug report.
  • Added information about using the Sublime Text Windows text editor for editing Logtalk source files.
  • Added a set of Logtalk source code snippets and a set of compilation and documenting tools for the Gnome's Gedit text editor (see the file "wenv/gedit/NOTES.txt" for details).
  • Replaced GeSHi support with a new language file written from scratch. Added syntax coloring support for the module directive reexport/1 to all supported text editors and syntax highlighters.
  • Updated documentation in order to remove references to deprecated syntax for sequences of predicate indicators in predicate directives. Updated documentation on built-in meta-predicates to correctly described their semantics when used within categories.
  • Added a simple example, "multifile", illustrating how to use multifile predicates within Logtalk objects and categories.
  • Updated the "securemp" example in order to illustrate using a call to a meta-predicate to change the number of extra arguments of a closure.

Requirements:

  • Compatible Prolog compiler.
<<less
Download (704.4KB)
Added: 2009-10-28 License: Freeware Price: Notavailable
downloads
 
Other version of Logtalk
Logtalk 2.37.4dynamic language that allows hierarchies, objects, protocols, categories, and methods ... Other dynamic language features include support for meta-programming and both structural
Price: Notavailable
License:Freeware
Download (695.1KB)
downloads
Added: 2009-09-16
Language Switcher 1.1.2

Language Switcher 1.1.2


Language Switcher is a helpful and convenient products which helps you get the opportunity to use several language without changing your system language. more>>

Language Switcher 1.1.2 is a helpful and convenient products which helps you get the opportunity to use several language without changing your system language. It enables you to open applications in other languages - instantly.

It shows you what language options are available for every single application on your Mac, and lets you choose the one you want to use, without changing anything else. So whether you're learning a language, or fluent in several, you can now immerse yourself in the language on your screen. Open your favourite apps in French, for example, just like the French in Paris. Or keep most apps in English, and immerse yourself in Spanish when instant messaging.

It works with every application, from Apple and from third party developers. And it's very flexible. You can switch the language on just one app, or as many apps as you like. You can even use several languages at the same time, for different applications. And it doesn't change anything permanently. When you quit your app, it opens next time in your default language. Language Switcher unlocks the languages that are already on your Mac. It's that simple.

Major Features:

  1. Browse through the contents of your Applications folder
  2. Add any applications that you've put elsewhere
  3. Search for specific apps with handy search-as-you-type
  4. See what languages are available for each of your apps
  5. Launch apps in new languages instantly

Enhancements:

  • Added: Italian localisation (thanks to Vincenzo Boiano)
  • Updated French localisation (thanks to Ronald Leroux)

Requirements: OS X 10.5+

<<less
Download (1MB)
Added: 2009-10-02 License: Freeware Price: Notavailable
downloads
 
Other version of Language Switcher
Language Switcher 1.1.1Language Switcher gives you the abilities to open applications in other languages - instantly ... , it opens next time in your default language. Language Switcher unlocks the languages that are
Price: Notavailable
License:Freeware
Download (1MB)
downloads
Added: 2009-09-19
Language Switcher 1.1you to open applications in other languages - instantly. It shows you what language options are ... , it opens next time in your default language. Language Switcher unlocks the languages that are
Price: Notavailable
License:Freeware
Download (987.7KB)
downloads
Added: 2009-08-18
Language Switcher 1.0.2is an effective software which enables you to open applications in other languages - instantly ... , it opens next time in your default language. Language Switcher unlocks the languages that are
Price: $0.00
License:Freeware
Download (799.5KB)
downloads
Added: 2009-07-27
Photomatix Pro 3.2.5

Photomatix Pro 3.2.5


Photomatix Pro is a beneficial and vital program which recovers highlights and shadows details of a high-contrast scene. Using advanced algorithms, Photomatix Pro combines differently exposed shots into one image with increased dynamic range. more>> <<less
Download (4.3MB)
Added: 2009-09-27 License: update/patch Price: $99.00
downloads
Komodo Edit 5.2.0

Komodo Edit 5.2.0


Komodo Edit will make you satisfied because it delivers powerful editing capabilities for dynamic languages including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML. more>>

Komodo Edit 5.2.0 will make you satisfied because it delivers powerful editing capabilities for dynamic languages including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML.

Background syntax checking and syntax coloring catch errors immediately, while AutoComplete and CallTips guide developers as they code. It is available now on Linux, Mac OS X, and Windows.

Other features include a project manager, for flexible organization of all project elements, and the Toolbox, for storing configurable "Run" commands, macros, code snippets, URLs, Live and Virtual Folders, templates, menus, toolbars and remote files. Toolbox items can be distributed to other Komodo users.

Komodo Edit also allows users to easily extend its architecture, with support for adding advanced capabilities through Firefox-style .xpi extensions.

Major Features:

  1. Multi-language editor
    • Multi-language support: Advanced support for:
      • Browser-side languages: CSS, HTML, JavaScript and XML
      • Server-side languages: Perl, PHP, Python, Ruby and Tcl
      • Web template languages: RHTML, Template-Toolkit, HTML-Smarty and Django
    • Autocomplete and Call Tips
      • Autocomplete and calltips
      • Write code faster and shorten the learning curve with code completion that guides you as you work
      • CSS, HTML, JavaScript, Perl, PHP, Python, Ruby, Tcl, XML and XSLT.
      • Schema-based XML/HTML completion
      • Multiple-language file support, such as CSS and JavaScript completion in HTML
      • Support for adding third-party libraries
      • Interpreter version differentiation of built-in and standard library information
    • Multi-language file support
      • Correct syntax coloring of multi-language files and templated files, common in many web programming frameworks. Add custom language support (User-Defined Languages or UDL, used to provide support for RHTML, Template-Toolkit, HTML-Mason, Smarty and Django).
    • Standard editing features
      • Code commenting, auto-indent and outdent, block selection, incremental search, reflow paragraph, join lines, enter next character as raw literal, repeat next keystroke and clean line endings on "save".
    • Syntax checking
      • Instant feedback for all fully-supported languages.
    • Syntax coloring
      • Spot errors easily and improve readability and context, even in multi-language files (unique to Komodo!).
    • Vi emulation
      • Modal Vi keybindings emulate navigation, text insertion and command behavior. Custom commands can be implemented by adding Komodo macros to a Vi Commands Toolbox folder.
    • Emacs keybindings
      • Emacs-like keybinding scheme supports new editor features modeled on Emacs, such as transient marks (similar to the Emacs "mark ring"), repeat next command and reflow paragraph.
    • HTML preview
      • Check HTML, XML and CSS files side-by-side or in a browser, using arbitrary files or URLs.
    • Multilingual Input Method Editor (IME) support
      • Use your standard keyboard to enter multi-byte characters, such as Simplified Chinese, Japanese and Korean.
    • Code snippets
      • Store any piece of code for reuse.
    • Code folding
      • Work quickly and efficiently with large sections of code.
    • Multi-document editing
      • Easily work on multiple documents simultaneously using multiple tab groups, split view, and cross-document search.
    • Tutorials
      • Easily master editing features.
  2. Project manager: Convenient, flexible organization of all project elements.
    • Live Folders
      • Project view displays the current contents of corresponding file system directory.
    • Virtual Folders
      • Explicitly maintained multi-purpose containers for any project or Toolbox component, containing pointers to selected components from different file system locations.
  3. Toolbox
    • Store it
      • Store virtually anything, including configurable "Run" commands, macros, code snippets, URLs, Live and Virtual Folders, templates, menus, toolbars and remote files.
    • Share it
      • Share a Toolbox with networked team members or distribute valuable Toolbox items to other Komodo users with the import/export function.
  4. Extensibility
    • XPI Extensions
      • Create your own plug-ins. XPI extension support provides the same capability as Firefox, with all standard Mozilla APIs based on XUL, XBL, and XPCOM, plus the own for Python and JavaScript. Other new features, such as the DOM Viewer, are also extensions. With full documentation and an active community providing support, Komodo IDE's power is as boundless as your imagination.

Enhancements:

  • Better performance and stability
  • Customizable list of primary languages
  • Easily view source of HTML pages
  • Sub-language background colors
  • PHP 5.3 support
  • Ruby 1.9.1 debugging support (IDE)
  • SCC history search-ability (IDE)
  • Dropped the Komodo Mac OS X powerpc builds.
Requirements:
  • Mac OS X 10.4 or greater
  • Intel processor
  • 512 MB RAM (1 GB+ recommended)
  • 200 MB hard disk space.
<<less
Download (14.6MB)
Added: 2009-09-14 License: Freeware Price: Notavailable
downloads
 
Other version of Komodo Edit
Komodo Edit 5.1.4Award-winning editing for dynamic languages including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML. Background syntax checking
License:Free
Download (38.3MB)
downloads
Added: 2009-06-23
License:Freeware
Download (35.5MB)
1089 downloads
Added: 2007-08-03
Komodo IDE 5.2.0

Komodo IDE 5.2.0


Komodo IDE 5.2.0 is a powerful program for end-to-end development of dynamic web applications. more>>

Komodo IDE 5.2.0 comes as the first unified workspace for end-to-end development of dynamic web applications. A rich feature set for client-side Ajax languages such as CSS, HTML, JavaScript and XML, coupled with advanced support for dynamic languages such as Perl, PHP, Python, Ruby and Tcl, enables developers to quickly and easily create robust web apps.

Award-winning features include comprehensive editing and debugging, plus intelligent tools for regular expressions, team development, customization and unparalleled extensibility. The result is a powerful coding environment for framework stacks like Ruby on Rails and CakePHP and client libraries such as the Yahoo! UI Library and Dojo. A single license covers you across Linux, Mac OS X and Windows.

Major Features:

  1. Multi-language Support
    • Browser-side technologies: CSS, HTML, JavaScript, and XML
    • Server-side languages: Perl, PHP, Python, Ruby, and Tcl
    • Web template languages: RHTML, Template-Toolkit, HTML-Smarty, and Django
  2. Autocomplete and Call Tips
    • Write code faster and shorten the learning curve with code completion that guides you as you work
    • CSS, HTML, JavaScript, Perl, PHP, Python, Ruby, Tcl, XML, and XSLT
    • Schema-based XML/HTML completion
  3. Multiple-language file support, such as CSS and JavaScript completion in HTML
    • Framework support for Rails and Zend
    • Support for adding third-party libraries
    • Interpreter version differentiation of built-in and standard library information
    • Multi-language File Support
    • Correct syntax coloring of multi-language files and templated files, common in many web programming frameworks. Add custom language support with UDL.
  4. Standard Editing Features
    • code formatting
    • code commenting
    • auto-indent
    • block selection
    • column editing
  5. Syntax Checking
    • Instant feedback for all fully-supported languages.
  6. Syntax Coloring
    • Spot errors easily and improve readability and context, even in multi-language files.
  7. Abbreviations
    • Inserts snippets from your toolbox at the touch of a key.
  8. Vi Emulation
    • Modal Vi keybindings emulate navigation, text insertion and command behavior. Custom commands can be implemented by adding Komodo macros to a Vi Commands Toolbox folder.
  9. Emacs Keybindings
    • Emacs-like keybinding scheme supports new editor features modeled on Emacs, such as transient marks (similar to the Emacs "mark ring"), repeat next command and reflow paragraph.
  10. HTML Preview
    • Check HTML, XML and CSS files side-by-side or in a browser, using arbitrary files or URLs.
  11. View HTML Source
    • Drag and drop a URL onto Komodo (http://, https://), Komodo now offers to view the source contents of this web page. This is convenient for checking the underlying HTML source code of web pages.
  12. Multilingual Input Method Editor (IME) support
    • Use your standard keyboard to enter multi-byte characters, such as Simplified Chinese, Japanese and Korean.
  13. Code Snippets
    • Store any piece of code for reuse.
  14. Code Folding
    • Work quickly and efficiently with large sections of code.
  15. Multi-document Editing
    • Easily work on multiple documents simultaneously using multiple tab groups, split view, and cross-document search.
  16. History
    • Navigation (forward and back) buttons and a drop list in the toolbar that let you browse though the files and buffer locations you've been editing recently.
  17. Search Highlighting
    • Matches are highlighted in the current buffer.
  18. Editor Hyperlinking
    • Ctrl'+'hover' will highlight HTTP hyperlinks under the pointer; 'Ctrl'+'click' will open the URL in the configured browser.
  19. CSS Color Popup
    • Ctrl' + 'hover' over a color value in CSS will display a popup of that color; 'Ctrl'+'click' will open the color picker.
  20. Primary Language Preferences
    • It is now possible to configure which languages you'd like to see as primary languages in Komodo. The primary languages are the first group of languages seen in the language drop-down menus, whilst secondary languages are grouped under the Other sub-menu.
  21. Sub-language Background Colors

Enhancements:

  • Ruby Debugging Support: Debugging support for Ruby 1.9.1 and up.
  • PHP: New PHP 5.3 support:
  • Code browser and sectionlist support for namespaces
  • Code completions for /Namespaces
  • Syntax coloring of latest keywords ("namespace", "use", "as", etc...)
  • Updated xdebug builds to support PHP 5.3
  • Improved debugger wizard for the first time setup
  • Support for a wider range of PHP builds on Windows
  • Sub-language background colors: You can now give sub-languages a different background color in multi-language buffers.
  • View HTML Source: Drag and drop an http:// or https:// URL onto Komodo to see the contents of the page.

<<less
Download (47MB)
Added: 2009-09-14 License: update/patch Price: Notavailable
downloads
X-Plane 9.40b8

X-Plane 9.40b8


X-Plane is an interesting game that attracts a large number of gamers with its hardware-accelerated texture-mapped graphics, dynamic speech synthesis, full-planet terrain-mapped scenery, helicopters, and the widest range of airplanes available in flight simulation. more>> <<less
Added: 2009-09-04 License: update/patch Price: $59.00
downloads
Aptana Studio 1.5.1

Aptana Studio 1.5.1


Aptana Studio is an advanced program which features code Assist on JavaScript, HTML, PHP, and CSS languages, HTML and CSS preview, FTP/SFTP support and a JavaScript debugger to troubleshoot your code. more>> <<less
Download (124.3MB)
Added: 2009-09-02 License: Freeware Price: Notavailable
downloads
ActivePerl (Mac) 5.10.0.1005

ActivePerl (Mac) 5.10.0.1005


ActivePerl is the industry-standard Perl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActivePerls completeness and ease-of-use. more>>

ActivePerl (Mac) 5.10.0.1005 is a powerful software which is available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActivePerls completeness and ease-of-use, while corporate users protect their infrastructure and stay competitive with quality-assured ActivePerl business solutions.

Major Features:

  1. Complete and ready-to-install, the free ActivePerl distribution includes core Perl, popularmodules, the Perl Package Manager (PPM), and complete documentation. The Windows version provides additional features that have made ActivePerl the worldwide standard for Perl on Windows.
  2. ActiveState also provides business solutions for dynamic languages, including enterprise distributions and OEM licensing, that offer guaranteed stability, expert support, unparalleled quality and cost-efficiency to organizations.

Enhancements:

  • New switch statement and smart-match operator.
  • Defined-or operator,
  • Plus many improvements to regular expressions.
  • Engine is no longer recursive: no more stack overflows.
  • OpenSSL security fixes
  • -p filetest implemented on Windows
  • Potential memory corruption in Perl for ISAPI fixed
  • Bundled modules updated to latest version

Requirements:

  • PowerPC G4 or G5
  • x86
  • Mac OS X 10.4 "Tiger" or later


<<less
Download (38.08MB)
Added: 2009-06-06 License: Freeware Price: $0.00
17 downloads
OpenGLPlotFunc

OpenGLPlotFunc


FutureBASIC OpenGL example program for your Mac more>>

Komodo IDE 4 is a powerful, multi-platform, multi-language IDE for end-to-end development of dynamic web applications. Komodo IDE makes creating robust web apps fast and easy, with a rich feature set for client-side Ajax technologies such as CSS, HTML, JavaScript and XML, coupled with advanced support for dynamic languages such as Perl, PHP, Python, Ruby and Tcl.
Award-winning features include comprehensive editing and debugging, plus intelligent tools for regular expressions, team development, customization and unparalleled extensibility. The result is a powerful coding environment for framework stacks like Ruby on Rails and CakePHP and client libraries such as the Yahoo! UI Library and Dojo. A single license covers you across Windows, Mac OS X and Linux.

Requirements: Mac Intel processor or PowerPC G4, 256 MB RAM, 90 MB hard disk space

Whats new in this version: Unit Test integration, Find/Replace system improvements, Replace in Files, Find in Project, Multi-line Find/Replace, Asynchronous SCC operations, Abbreviations, Improved PHP autocomplete, Perl 5.10 support, Tcl 8.5 support

<<less
Download (132KB)
Added: 2009-06-04 License: Freeware Price: FREE
179 downloads
csImageResizer

csImageResizer


Free utility for resizing jpg files more>>

ActiveTcl is the industry-standard Tcl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX and HP-UX. Developers worldwide rely on ActiveTcls completeness and ease-of-use, while corporate users protect their infrastructure and stay competitive with quality-assured ActiveTcl business solutions. ActiveTcl is 100% compatible with the reference distribution of Tcl. Code tested with ActiveTcl will run on any Tcl installation that has the appropriate extensions installed.
ActiveState is committed to making Tcl easy to install and use on all major platforms. This release of ActiveTcl brings you the most stable release of Tcl in binary form. It also includes several of the most popular extensions pre-compiled and ready to use. Beginning with this release, we distribute and install the demos and examples of the various packages.
ActiveState also provides business solutions of dynamic languages, including enterprise distributions and OEM licensing, that offer guaranteed stability, expert support, unparalleled quality and cost-efficiency to organizations.

Requirements: Mac PowerPC or Intel architectures, Minimum OS X 10.3 (PowerPC), Minimum OS X 10.4 (Intel)

Whats new in this version: ActiveTcl 8.5 now runs 10% faster than the previous version, due to bytecode optimizations, object caching and reduced memory usage. Developers will also benefit from richer time and date tools including year-2038 compliance, and a new and simpler module packaging standard.

<<less
Download (1.7MB)
Added: 2009-06-04 License: Freeware Price: FREE
209 downloads
JBurg 1.0

JBurg 1.0


A Java-based BURG for your Mac more>> A Java-based BURG for your Mac

JBurg is a Java-based BURG (code emitter generator) which can also be used as a general purpose dynamic programming engine.
The distribution includes a compiler for a Java-like language, that accepts input from a String or a Reader and returns a Class object.

System requirements:
-

Enhancements
- Updated build number, build.xml and INSTALL.

<<less
Download (177KB)
Added: 2009-05-17 License: Freeware Price: FREE
183 downloads
Restoration 1.0 RC1

Restoration 1.0 RC1


A platform for creating scalable web applications and network services using dynamic scripting languages and proven REST principles more>> A platform for creating scalable web applications and network services using dynamic scripting languages and proven REST principles

Your application can support thin clients (HTML) and rich clients (AJAX), with anything in between. You can also create pure REST services with no user interaction.
Languages supported are Python, Ruby, JavaScript, PHP, Groovy and Velocity, and anything else supported by the Scripturian project.
A complete, ready-to-rumble platform is ready for you to download, for which the only requirement is Java 5. It includes plenty of example code, a scalable HTTP server, and robust logging facilities.
For Java developers, Restoration is also available as a standalone library, which you can embed in your application.

Main features:
- In addition to making it very easy to create REST resources (see demos), Restoration allows embedding scriptlets within HTML pages, similarly to PHP, JSP and ASP (see demos), with support for high-performance streaming and caching of results.
- You can see your changes happen on-the-fly without any compilation: Restoration picks up your edits and makes sure to update its cached code base. Development is quick, powerful and fun!

System requirements:
- Java 5 or later

<<less
Download (83KB)
Added: 2009-05-10 License: GPL Price: FREE
11194 downloads
ActiveTcl 8.6b1

ActiveTcl 8.6b1


ActiveTcl is a superior and tractable industry-standard Tcl distribution, available for Mac OS X, Linux, Windows, Solaris, AIX and HP-UX. more>> ActiveTcl 8.6b1 is a superior and tractable industry-standard Tcl distribution, available for Mac OS X, Linux, Windows, Solaris, AIX and HP-UX. Developers worldwide rely on ActiveTcls completeness and ease-of-use, while corporate users protect their infrastructure and stay competitive with quality-assured ActiveTcl business solutions.

ActiveTcl is 100% compatible with the reference distribution of Tcl. Code tested with ActiveTcl will run on any Tcl installation that has the appropriate extensions installed.

ActiveState is committed to making Tcl easy to install and use on all major platforms. This release of ActiveTcl brings you the most stable release of Tcl in binary form. It also includes several of the most popular extensions pre-compiled and ready to use.

ActiveState also provides business solutions of dynamic languages, including enterprise distributions and OEM licensing, that offer guaranteed stability, expert support, unparalleled quality and cost-efficiency to organizations.

Requirements:
  • PowerPC: Mac OS X 10.3.9 or later.
  • Intel: Mac OS X 10.4 or later.
<<less
Download (21.6MB)
Added: 2009-05-03 License: Free Price:
downloads
Ubiquity 0.1.8

Ubiquity 0.1.8


Ubiquity is a small yet useful add-on that allows the use of dynamic commands in Firefox more>> Ubiquity 0.1.8 is a small yet useful add-on that allows the use of dynamic commands in Firefox. It is an experiment into connecting the Web with language in an attempt to find new user interfaces that make it possible for everyone to do common Web tasks more quickly and easily.

Major Features:

  1. Ubiquity is a Firefox that, with only a couple keystrokes, lets you use language to instruct your browser.
  2. With only a couple keystrokes, it lets you use language to instruct your browser.
  3. You can translate to and from most languages, add maps to your email, edit any page, twitter, check your calendar, search, email your friends, and much more. All without leaving the page you're on.

Enhancements: Mostly a maintenance release with bugfixes to many of the most-often-used commands.

<<less
Download (635KB)
Added: 2009-04-08 License: Freeware Price: FREE
1 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5