syntax coloring
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:
- Separation between interface and implementation: Predicate directives (declarations) can be contained inside protocols (interfaces), which can be implemented by any object.
- 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.
- 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.
- Support for multiple object hierarchies: No need to be constrained to a single, lengthy hierarchy rooted in some generic object.
- 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.
- 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.
- 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.
- Static and dynamic object predicates: Any static object may contain both static and dynamic predicates.
- 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).
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.

ColorfulTabs 3.9.4
ColorfulTabs brings users one of the most beautiful yet the simplest add-on that makes a strong colorful appeal. more>>
ColorfulTabs 3.9.4 brings users one of the most beautiful yet the simplest add-on that makes a strong colorful appeal. Colors every tab in a different color and makes them easy to distinguish while beautifying the overall appearance of the interface
Enhancements:
- New Feature: On Demand Coloring: No coloring by default, user can set the color manually for tabs of their choice.
- Fixed Domain List to allow domain list of any length.
- Fixed critical bug when resetting advanced preferences
- Fixed other minor bugs

REALbasic 2009.4.0.0
REALbasic is designed to be an innovative and efficient utility which can help users create software faster and enjoy increased productivity. more>>
REALbasic 2009.4.0.0 is designed to be an innovative and efficient utility which can help users create software faster and enjoy increased productivity.
REALbasic is a rapid application development (RAD) environment that provides developers a marked increase in productivity over other cross-platform development tools. REALbasic includes drag-and-drop capability to enable you to quickly create a user interface design, then incorporate the code behind it to add power and functionality.
Benefits:
- Migrate Visual Basic applications to Linux and Mac OS X: REALbasic is highly compatible with Visual Basic, so Visual Basic developers are productive very quickly with REALbasic. REALbasic also comes with a utility to help convert Visual Basic projects to REALbasic where they can be compiled for Windows, Mac, even Linux -- with the click of a checkbox.
- Create native cross-platform software: REALbasic runs on and creates software for Windows, Mac OS X and Linux, all from a single set of source code. REALbasic incorporates platform-specific intelligence, like user interface widgets, so software created with REALbasic looks and feels native, regardless of the development platform you created it on.
- Create powerful database applications: Build powerful database applications with REALbasic's built-in REAL SQL Database, based on the SQLite public domain database engine. Connect to external multi-user database engines using REALbasic Professional Edition.
- Create graphics for multimedia applications or games: Use REALbasic's support for standard image formats for vector graphics, (such as those commonly created with Adobe Illustrator).
Major Features:
- Window layout editor
- Drag and drop: Drag controls onto a window to build your user interface.
- Native support controls: REALbasic provides more than 40 native user interface controls for each platform, including buttons, fields, lists, sliders, tab panels, and much more.
- Alignment guides: Assists in lining up controls on a window.
- Code editing
- Auto-complete: Helps you write code faster with fewer errors by offering suggestions on valid syntax.
- Syntax coloring: Use different colors to distinguish between keywords, variables, code and comments.
- Block lines: Quickly see the structure of your code.
- Code assistants: A contextual menu of syntax options that help you write code faster and with fewer errors.
- Graphics
- Bitmaps: Use the REALbasic Canvas class to create and display bitmap images.
- Vector graphics: Includes a 2D vector graphics engine for spline-based images.
- Quicktime: Play and edit QuickTime movies in your applications.
- Language Features
- Modern and object-oriented: Modern, object-oriented version of BASIC. Supports inheritance, interfaces and polymorphism.
- Advanced language: The REALbasic language is strongly typed and supports RTTI (Run Time Type Information), operator overloading and try/catch exception handling.
- Memory management: Works automatically via reference counting.
- Powerful framework
- XML: Industrial-strength XML parser and generator enables you to read and write XML data with a few lines of code.
- Database: Includes a single-user desktop database engine based on SQLite.
- Regular Expressions: Adds powerful text searching capabilities to your application that supports regular expressions.
- Internet-Aware
- Socket control: Enables the development of powerful Internet client applications. Support internet protocols includes HTTP, SMTP, POP3 and UDP.
- SOAP (Simple Object Access Protocol): Incorporate web services in your applications quickly and easily to provide access to live data, stock prices, weather information and more.
- Learn by example
- Example projects: Hundreds of examples are included with the REALbasic product download.
- Hands-on tutorial: The REALbasic Tutorial and Quick Start walk you through creating real-world applications and familiarizing yourself with REALbasic tools and commands. These are available both in print for purchase and in .pdf for download.
- Integrated help
- Language reference: Powerful, fully searchable online reference is included in the REALbasic product and provides instant access to details and examples on every REALbasic keyword and framework class.
- Language support
- Available in 8 languages: REALbasic is available in English, Spanish, French, German, Italian, Japanese, Simplified Chinese and Traditional Chinese.
- Localize your own applications: REALbasic applications can be localized easily to support any language.
- Unicode: With full support for Unicode built-in, REALbasic allows your application to support multiple languages simultaneously.
- Extensible
- Plug-in development: Includes a software development kit (SDK) for creating cross-platform plug-ins for REALbasic.
- Deployment
- Native code: Compile your applications down to machine code. No interpreter or virtual machine is required.
- REALbasic, Best Programming Language Royalty-free: You are free to sell the applications you create with REALbasic or give them away for free without ever paying a fee to REAL Software.
Enhancements:
- Offers 97 improvements and 39 new features, including a new report editor, which will be included in all editions of REALbasic, and build automation, a feature exclusive to REAL Studio.
- The new report editor allows developers to visually create a layout for printing by dragging and dropping labels, fields, images and more.
- Reports can be created to print a single page or multiple pages.
- The layout is divided into sections (header, body, footer as well as grouping sections for report

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:
- 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.
- 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.
- 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.
- 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.
- Mac OS X 10.4 or greater
- Intel processor
- 512 MB RAM (1 GB+ recommended)
- 200 MB hard disk space.

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:
- 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
- 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
- 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.
- Standard Editing Features
- code formatting
- code commenting
- auto-indent
- block selection
- column editing
- Syntax Checking
- Instant feedback for all fully-supported languages.
- Syntax Coloring
- Spot errors easily and improve readability and context, even in multi-language files.
- Abbreviations
- Inserts snippets from your toolbox at the touch of a key.
- 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.
- 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.
- 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.
- 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.
- Search Highlighting
- Matches are highlighted in the current buffer.
- Editor Hyperlinking
- Ctrl'+'hover' will highlight HTTP hyperlinks under the pointer; 'Ctrl'+'click' will open the URL in the configured browser.
- 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.
- 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.
- 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.
ColorXML QuickLook 1.1
ColorXML QuickLook is a useful and easy-to-use QuickLook plugin which enables to display XML files with indentation and XML syntax coloring, now includes more XML-based file types : XML, XSL, XSL, plist, RSS, MXML, GXL, and is compatible with Snow Leopard. more>> <<less
cedlecca - enables to display XML files with indentation and XML syntax coloring. ColorXML QuickLook. ColorXML QuickLook 1.0 is a distinguished and tractable QuickLook
ANTLRWorks 1.3b
ANTLRWorks brings users a novel grammar development environment for ANTLR v3 grammars, which combines an excellent grammar-aware editor with an interpreter for rapid prototyping and a language-agnostic debugger for isolating grammar errors. more>>
ANTLRWorks 1.3b brings users a novel grammar development environment for ANTLR v3 grammars, which combines an excellent grammar-aware editor with an interpreter for rapid prototyping and a language-agnostic debugger for isolating grammar errors. ANTLRWorks allows users to edit, visualize, interpret and debug any ANTLR 3 grammar through an easy-to-use graphical user interface.
ANTLRWorks helps eliminate grammar nondeterminisms, one of the most difficult problems for beginners and experts alike, by highlighting nondeterministic paths in the syntax diagram associated with a grammar. ANTLRWorks' goal is to make grammars more accessible to the average programmer, improve maintainability and readability of grammars by providing excellent grammar navigation and refactoring tools, and address the most common questions and problems encountered by grammar developers
Major Features:
- Editor
- Single window editing
- Syntax highlighting
- Rule navigation tree
- Jump to rule or token definition
- Go To Rule
- Find usages of tokens or rules
- Find and Replace using regular expression
- Sensitive keyword, rule, and token auto-completion
- Rules and actions folding
- Tips and ideas
- Auto-indentation
- Refactoring - remove left recursion, extract or inline rule, etc.
- Show generated lexer or parser code using syntax coloring
- Syntax diagram display for lexer and parser rule
- Show unreachable alternative(s) in syntax diagram
- Display nondeterminism warning as ambiguous paths through the syntax diagram
- Highlight decision DFA
- Rule dependency graph
- Export syntax diagram, NFA and parse tree to bitmap image or EPS file
- Perforce integration
- emacs key bindings (Mac OS X only)
- Contextual menus
- Grammar interpreter
- Dynamically interpreter any input text
- Display parse trees as list or graph
- Grammar debugger
- Local or remote debugger
- Language agnostic
- Dynamic parse tree
- Dynamic AST
- Tree grammar debugging
- Lookahead highlighting
- Breakpoint in grammar
- Breakpoint in input text!
- Breakpoint on any events - LT, consume token, exception, etc.
- Step over rule
- Show corresponding grammar location and parse tree node for each input token
- Detachable panels
- Code generation:
- ANTLRWorks supports code generation in any language that ANTLR knows how to generate via the output=language option.
- For Java, however, ANTLRWorks knows how to build a test harness, compile everything, launch the parser, and connect to it--a great rapid prototyping feature when you can't use the interpreter because actions and/or semantic predicates must execute.
Enhancements:
- New Grammar Wizard
- StringTemplate Editor
- Custom test rig
- Run an input directly on the grammar
SubEthaEdit 3.5
SubEthaEdit offers you a useful word processing tool which is combined the simplicity of TextEdit and the power of Rendezvous. more>>
SubEthaEdit 3.5 offers you a useful word processing tool which is combined the simplicity of TextEdit and the power of Rendezvous. It allows to share documents on a local network (with Rendezvous) or on the internet. Every participating user can type simultaneously and see what others are typing. You can even follow others users to see what they are up to.
SubEthaEdit features true simultaneous editing for multiple users. Text changes are highlighted in a different color for each user, allowing easy identification of your coeditors' changes. The scrollbar indicators give you a quick overview where others are working in the document.
In addition to its rich networking capablities, SubEthaEdit does everything you'd expect from an advanced text editor. Encodings and line endings are handled seamlessly. Programmers benefit from customizable syntax coloring and function pop-up, bracket matching, indenting and regular expression find and replace.

VMD 1.8.7
VMD 1.8.7 offers you a perfect and extremely useful which is designed for modeling, visualization, and analysis of biological systems such as proteins, nucleic acids, lipid bilayer assemblies, etc. more>>
VMD 1.8.7 offers you a perfect and extremely useful which is designed for modeling, visualization, and analysis of biological systems such as proteins, nucleic acids, lipid bilayer assemblies, etc. It may be used to view more general molecules, as VMD can read standard Protein Data Bank (PDB) files and display the contained structure. VMD provides a wide variety of methods for rendering and coloring a molecule: simple points and lines, CPK spheres and cylinders, licorice bonds, backbone tubes and ribbons, cartoon drawings, and others. VMD can be used to animate and analyze the trajectory of a molecular dynamics (MD) simulation. In particular, VMD can act as a graphical front end for an external MD program by displaying and animating a molecule undergoing simulation on a remote computer.
Major Features:
- Support for all major computer platforms
- Support for multicore processors
- Support for GPU accelerated computation
- Many excellent VMD tutorials developed locally, and by the research community at large
- No limits on the number of molecules, atoms, residues or number of trajectory frames, except available memory
- Many molecular rendering and coloring methods
- Stereo display capability
- Extensive atom selection syntax for choosing subsets of atoms for display (includes boolean operators, regular expressions, and more)
- Support for over 60 molecular file formats and data types through an extensive library of built-in file reader/writer plugins and translators
- VMD includes a multiple sequence alignment plugin, a unified bioinformatics analysis environment that allows one to organize, display, and analyze both sequence and structure data for proteins and nucleic acids.
- Ability to export displayed graphics to files which may be processed by a number of popular ray tracing and image rendering packages, including POV-Ray, Rayshade, Raster3D, and Tachyon.
- User-extensible graphical and text-based user interfaces, built-on standard Tcl/Tk and Python scripting languages
- Extensions to the Tcl language which enable researchers to write their own routines for molecular analysis
- Modular, extensible source code using an object-oriented design in C++, with a programmers guide describing the program architecture and source code
- Integration with the program NAMD, a fast, parallel, and scalable molecular dynamics program developed in conjunction with VMD in the Theoretical and Computational Biophysics Group at the University of Illinois.
- VMD works well with projected display systems like the 3-D Projection Facility maintained by the Theoretical and Computational Biophysics Group.
- VMD can be used to concurrently display and interact with a running NAMD simulation.
- Using VMD as a Web/MIME Helper Application
- VMD script library
- Portable and Intuitive GUI
- Interfacing with MD Programs (i.e. SIGMA, NAMD)
- Interactive MD and VR Device Support
- Making Movies with VMD

Spotifinder 1.1
Spotifinder gives a utility supporting you to do correct searches in Spotify. more>>
Spotifinder 1.1 gives a utility supporting you to do correct searches in Spotify. Search specifically for Artist, Album, Genre or Label without formulating a special search syntax, or select the currently playing artist in iTunes to see what tracks Spotify has from that artist.
, Genre or Label without formulating a special search syntax, or select the currently playingLicense:Freeware
PyPE 2.8.8
An editor written in Python with the wxPython GUI toolkit more>>
Major Features:
- Explicit exclude directories option in the search tab.
- Delete line and Delete right operations.
- Rectangular pasting.
- Non-white background colors.
- Automatic spellchecking in the background for text and tex/latex documents.
- Support for chapter delimiters in tex/latex documents.
- The ability to "split" the view so that you can see the contents of up to two other files while editing one file.
- Reorganized options to make it easier to understand PyPEs features, and to make it reasonable to navigate on screens with lower resolutions
- The ability to quickly run Python code snippets
- The ability to run .py and .pyw files with a system Python, capturing the output and allowing interaction via a command shell
- Optional automatic rebuilding of browsable source tree, autocomplete, and tooltips
- Optional "realtime" syntax checking for Python
- Support for displaying comments created with the "Transforms -> Insert Comment" in the Name, Line, and Filter tools
- Support for using some Vim options when first opening a file
- Easy converting between tabs and spaces in documents with a simple transform
- Command line option to allow PyPE to be portable when using the Windows distributions
- The find in files Search tab can be set to ignore leading dot subdirectories (like .svn )
- "Round box" indicator for shell output in wxPython 2.7+releases for shell output
- Will discover all Python interpreters known by the Windows Registry or in the environment path, and allows the user to choose from among them (and others) for the Python Shell
- Supports XML encoding declarations (in addition to previously-existing Python encoding declaration and BOM support)
- Command-line options for setting base font and font sizes
- ***entries above this entry are in reverse-chronological order that they were added
- All menu items can have almost any key binding desired, support for international keyboard mappings and non-latin characters fully supported (Options -> Change Menus and Hotkeys)
- Multiple open documents via tabs
- Syntax highlighting for Python, Pyrex, HTML/XML, C/C++, TeX/LaTeX, and plain text (plain text doesn't really have coloring)
- Drag and drop re-arrangement of documents in the Documents tool
- Display documents with or without path information
- Optional listing of previously open documents
- Display previously open documents with or without path information
- Drag and drop opening of files
- Open stdlib/site-packages Python module when Python search path has been defined
- Open all documents that were open when you last closed down PyPE (--last command-line option, File -> Open Last)
- Save all documents with a single menu command
- Command shell with command history
- External-process Python shell with syntax highlighting; never experience the while 1: pass lockup of your editor again
- Shells have optional display of indicators for lines recieved from the shell
- Revert to previously saved version
- Workspace management for handling projects
- Browsable filesystem tool with bookmarkable paths (pathmarks)
- Fully usable undo/redo
- Per-document Find/Replace bars
- Find bar with find-as-you-type
- Replace bar with "Smart Case" replacements
- Bars can be located on the top or bottom of the editor
- Both support Python string escapes
- Optional per-document history
- Start/end selection without needing to hold down the shift key or select with the mouse
- Indent/dedent region
- Find in files
- Searching through the current file, its includes, the selected text, open files, directories, or tags in directories
- File inclusion/exclusion based on file extension
- Optional case sensitivity, regular expressions, multi-line searches, whole-word, quoted, or commented
- Three different methods to view your results
- Spell checker with custom dictionary and alphabet support, along with spelling suggester
- Easy changing of line endings
- Easy changing of file encoding for unicode platforms, based on BOM
- Support for coding: directive in Python source files
- Wrap selected text to specified number of columns with CRLFCRLF line ending
- Insert a full-line comment (for marking code sections)
- Comment/uncomment region
- Auto-indent/dedent on return
- Trigger expansions based on what you have typed, simple language that includes support for autoindenting return and programmatic cursor placement
- Zooming
- Jump to line or character position
- Calltips
- Per-document preferences, default preferences for each supported language
- Current line highlighting
- Autocomplete
- Bookmarks with previous/next navigation
- Indentation guides
- Code folding
- Tab width/use/non-use
- Long-line wrapping (no CR/LF/CRLF characters inserted)
- Sloppy Cut/Copy
- Smart Paste
- Long-line indicators
- Both tool listings can be shown or hidden by menu or hotkey
- Both tool listings can be relocated top/bottom or left/right
- Optional toolbar that can be placed on the top or left side of the window
- Various cursor tracking options to suit user preference
- Optional display of information about the current document in the title bar
- A hierarchical listing of functions, classes and methods that are browsable by definition order or alphabetically
- Function/method/section filter tool
- Updates as you type
- Color-coded based on what kind of item it is (function, method, class, macro)
- Optional case sensitivity
- Exact, any, and all matching
- Optional context-sensitive display and search
- Optional matching subsequence search us.ti matches UserString.Title
- Macros
- Recorded as you type
- Fully modifiable
- Time-limited to prevent run-away macros
- Hotkey support
- Embedded HTML help, with information about macros, command-line options, etc.
- Language specific features:
- All Languages:
-
- support for todos (except for plain text)
- autoindent (indent preservation in the case of plain text)
- Python and Pyrex
-
- Try/except/finally wrapping of selected text
- Indent/dedent on block start (if, for, etc.)/end (return, pass, etc.)
- Parsers that support the extraction of class, method, and function definitions
- If given syntactically correct Python, will also extract docstrings for calltips
- Class/method/function information is available in the filter tool
- C/C++
-
- A simple parser that can extract function, method, and function-like macro definitions
- Function/method/function-like macro information is available in the filter tool
- Call tips based on function definition
- TeX/LaTeX:
-
- Parser that supports the extraction of section and label information
- Section/label information is included in the filter tool
Enhancements: (fixed) a bug related to realtime parsing of non-ascii Python source.
SafariStand 4.0.167
Add numerous functionality-related enhancements to the Safari browser. SafariStand is a free plugin that will add lots of enhancements to the Safari browser more>> Add numerous functionality-related enhancements to the Safari browser.
SafariStand is a free plugin that will add lots of enhancements to the Safari browser.
Main features:
- Sidebar (thumbnail tab)
- Stand Bar (Bookmark, History, Side Bar compatible, Simple RSS Reader)
- Quick Search
- Stand Serach - supports Spotlight
- Action Menu
- Restore Last Workspace
- Site Alteration
- intelligent Plug-in blocking
- original bookmark property (comment, color label, rate, category)
- syntax coloring in viewed source
- open "_blank" Link in New Tab
System requirements:
-
Enhancements
- Support Safari 4.0
- FIX: flv download
- FIX: Key Action
- FIX: PDF export
wxCode 1.0.2
A collection of reusable components based on the cross-platform wxWidgets GUI toolkit more>> Texplore is a fast text editor with a simple macro system and a set of HTML macros for Web page editing. It also makes reading text documents on your screen easier with its smooth auto-scrolling capabilities.
The intent of Texplore is to save paper and trees, a very important issue these days with the rampant clear-cutting of forests and destruction of natural habitat for the millions of other species on this planet. It works!
Fast multi-window text editor with HTML formating macros, HTML syntax coloring, HTML view, color picker for backgrounds and text, automatic outline window, Find and Replace commands, Text-to-Speech and smooth scroll.
Features:
Undo (for typing, Cut, Paste, Clear, Replace, and Macro commands)
Minimal font menu for fast startup
Option for full font menu
Font Size menu
Find, Find Again and Replace commands
Multiple file editing with an automatically numbered window menu
Easily programmable macros
Includes a set of HTML macros for Web page editing
Syntax coloring to hilite strings and HTML tags
Make Paragraph command to reconnect broken paragraphs from e-mail messages
Send to Browser command to open the top document in Netscape Navigator web browser during web page development.<<less
Bloggchen.app 1.0
Simple weblog editor. more>>
Bloggchen.app 1.0 provides you a very simple weblog editor. Love to sit in front of very old 12" PowerBook with Tiger for surfing the web and of course for blogging. That's why missing beloved weblog editor with source code editing and syntax coloring.
So just written a very small and simple application for blogging - even with Mac OS 10.4.11. Bloggchen.app supports any metaWeblog.API powered weblog engine and is of course not a killer application and missing a lot of features - but for writing (offline) an entry, publishing it with ease, uploading files and to store those entries local it works perfect.
Major Features:
- MetaWeblog API
- Intuitive interface
- Timed publication
- Preview with custom CSS
- HTML editor with gorgeous syntax-coloring and spellcheck, search/replace
- HTML tag templates and keyboard shortcuts
- Smart upload of files and images
- Easily create links
- AutoSave
- A lot more nifty features...
PyObjC 2.2b2
Python <-> Obj-C bridge. more>>
PyObjC 2.2b2 offers you a wonderful application which allows full featured Cocoa applications to be written in pure Python. It can also be used with other Objective-C class libraries, as well as C and C++ source. The installer package includes a number of Project Builder templates and Python syntax coloring files. It supports full introspection of Objective-C classes and direct invocation of Objective-C APIs from the interactive interpreter.
Project Builder Support is provided. The Cocoa developer can use Python as the language of implementation for production quality / full featured Cocoa applications.