j gerbomb
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10
J Operating System
J Operating System is primarily intended for programmers. more>>
J Operating System is primarily intended for programmers.
Target Users:
- Hobbiests--You used to buy computers to do programming. They didnt do much else. Windows doesnt even come with a compiler, which is ironic since Bill Gates wrote BASIC. The "J" operating system is primarily intended for programmers. Ive attempted to lower the bar, so amateurs can contribute. I hope to recreate the dynamic environment that used to exist when the Commodore 64 was around and everyone was creating odd-ball software.
- Researchers--Im sure many lab researchers still use DOS because they have to interact with hardware, which is difficult with Windows.
Main features:
- No security! You can access all ports, memory and disk blocks to your hearts content. When youre working with your own computer, security just gets in the way and makes things slow--I hate anti-virus and anti-spyware because they just slow things down. When you know you dont have a risk, have no secrets and do regular back-ups, who needs security?
- Uniformity
- There is no virtual memory and everyone is on the same address-map. You can easily communicate between tasks, passing addresses. Addresses start at a base of zero and, essentually, segment registers are not used.
- There is basically one language to learn called "C+" which is a little more than "C", but less than "C++". You dont need to learn a scripting langauge because everything uses this syntax.
- There is an extension of ASCII called "J" rich text which allows colors, links, graphics and various widgets in your documents. This format is used in source code, documents, help, menus, etc.
- Support for compressed, encrypted and contiguous files.
- FAT32, FAT12 and ISO9660 filesystems.
- Blazing-fast compiler which can recompile everything in 5 seconds. It doesnt optimize.
- All source code is included and its still around a Meg.
Hardware:
- PS/2 mouse and keyboard
- VGA graphics
- Some hard drives. Must be on the primary or secondary IDE controller and support LBA28. Drives of 120Gig are the limit.
- Some CD-ROM/DVD drives, including burning.
- Some floppies. Just 1.44Meg and not all types.
- No USB support yet
- No network support yet
- ASCII printers on the parallel port are supported.
<<lessTarget Users:
- Hobbiests--You used to buy computers to do programming. They didnt do much else. Windows doesnt even come with a compiler, which is ironic since Bill Gates wrote BASIC. The "J" operating system is primarily intended for programmers. Ive attempted to lower the bar, so amateurs can contribute. I hope to recreate the dynamic environment that used to exist when the Commodore 64 was around and everyone was creating odd-ball software.
- Researchers--Im sure many lab researchers still use DOS because they have to interact with hardware, which is difficult with Windows.
Main features:
- No security! You can access all ports, memory and disk blocks to your hearts content. When youre working with your own computer, security just gets in the way and makes things slow--I hate anti-virus and anti-spyware because they just slow things down. When you know you dont have a risk, have no secrets and do regular back-ups, who needs security?
- Uniformity
- There is no virtual memory and everyone is on the same address-map. You can easily communicate between tasks, passing addresses. Addresses start at a base of zero and, essentually, segment registers are not used.
- There is basically one language to learn called "C+" which is a little more than "C", but less than "C++". You dont need to learn a scripting langauge because everything uses this syntax.
- There is an extension of ASCII called "J" rich text which allows colors, links, graphics and various widgets in your documents. This format is used in source code, documents, help, menus, etc.
- Support for compressed, encrypted and contiguous files.
- FAT32, FAT12 and ISO9660 filesystems.
- Blazing-fast compiler which can recompile everything in 5 seconds. It doesnt optimize.
- All source code is included and its still around a Meg.
Hardware:
- PS/2 mouse and keyboard
- VGA graphics
- Some hard drives. Must be on the primary or secondary IDE controller and support LBA28. Drives of 120Gig are the limit.
- Some CD-ROM/DVD drives, including burning.
- Some floppies. Just 1.44Meg and not all types.
- No USB support yet
- No network support yet
- ASCII printers on the parallel port are supported.
Download (1.1MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1398 downloads
J/CoMM 0.1.1
J/CoMM is an OS-independent RS232 remote control. more>>
J/CoMM server is a middleware between RS232 controllable hardware devices (like VCRs, data projectors, cameras etc.) and a graphical user interface.
Typically you will install J/CoMM server on a central workstation with multiple RS232 interfaces and with multiple hardware devices connected.
J/CoMM server provides a web interface which allows you to base your GUI on HTML and, more important, to run different instances of that GUI on serveral client computers at the same time. Though internet enabled, J/CoMM is also suitable for running on a single workstation.
J/CoMM supports the development of HTML based GUIs by providing
* a Java applet which establishes the communication between the GUI website(s) and the server and
* a library of Javascripts which contains DHTML classes like buttons, displays, players as well as keyboard and network support.
You will find a couple of device drivers packaged with J/CoMM. But J/CoMM also includes a device driver API which allows you to easily create custom drivers.
<<lessTypically you will install J/CoMM server on a central workstation with multiple RS232 interfaces and with multiple hardware devices connected.
J/CoMM server provides a web interface which allows you to base your GUI on HTML and, more important, to run different instances of that GUI on serveral client computers at the same time. Though internet enabled, J/CoMM is also suitable for running on a single workstation.
J/CoMM supports the development of HTML based GUIs by providing
* a Java applet which establishes the communication between the GUI website(s) and the server and
* a library of Javascripts which contains DHTML classes like buttons, displays, players as well as keyboard and network support.
You will find a couple of device drivers packaged with J/CoMM. But J/CoMM also includes a device driver API which allows you to easily create custom drivers.
Download (0.11MB)
Added: 2005-04-20 License: GPL (GNU General Public License) Price:
1649 downloads
Gecode/J 1.0.0
Gecode/J is a Java interface for the Gecode C++ constraint programming library. more>>
Gecode/J is a Java interface for the Gecode C++ constraint programming library. It allows you to:
model and solve
constraint problems in Java.
explore the search tree
with our tree visualization tool. Either using the built-in depth-first search strategy, or manually and interactively. Solutions and choice nodes can be inspected by clicking on them, and visualized using custom actions.
implement propagators
in Java. Whether for prototyping, for teaching, or just for fun. The propagators are integrated fully, so in your model you can mix them freely with the built-in propagators provided by Gecode.
implement branchings
for custom heuristics. Just like propagators, custom branchings fully integrate into Gecode/J.
implement search engines
using copying and recomputation. As search is fully programmable, you can write your own search engine, e.g. for LDS or A* search. In fact, the graphical Gecode.
<<lessmodel and solve
constraint problems in Java.
explore the search tree
with our tree visualization tool. Either using the built-in depth-first search strategy, or manually and interactively. Solutions and choice nodes can be inspected by clicking on them, and visualized using custom actions.
implement propagators
in Java. Whether for prototyping, for teaching, or just for fun. The propagators are integrated fully, so in your model you can mix them freely with the built-in propagators provided by Gecode.
implement branchings
for custom heuristics. Just like propagators, custom branchings fully integrate into Gecode/J.
implement search engines
using copying and recomputation. As search is fully programmable, you can write your own search engine, e.g. for LDS or A* search. In fact, the graphical Gecode.
Download (MB)
Added: 2006-09-22 License: BSD License Price:
1130 downloads
FUSE-J 2.4-pre1
FUSE-J project contains Java bindings for FUSE (Filesystem in USErspace). more>>
FUSE-J project contains Java bindings for FUSE (Filesystem in USErspace). It is a Java API that uses JNI bindings to FUSE library and enables writing Linux filesystems in Java language.
FUSE (Filesystem in USErspace) is a simple interface for userspace programs to export a virtual filesystem to the linux kernel.
Enhancements:
- This is the first preview release of the new 2.4 FUSE-J API featuring new extended attributes support, access to fuse_context (UID/GID of the process making file request), ANT build system support, migration to Log4J logging, etc. Theres no documentation yet and API can cahge in some minor details before the 1st release of the 2.4 version.
<<lessFUSE (Filesystem in USErspace) is a simple interface for userspace programs to export a virtual filesystem to the linux kernel.
Enhancements:
- This is the first preview release of the new 2.4 FUSE-J API featuring new extended attributes support, access to fuse_context (UID/GID of the process making file request), ANT build system support, migration to Log4J logging, etc. Theres no documentation yet and API can cahge in some minor details before the 1st release of the 2.4 version.
Download (0.10MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
801 downloads
J-EAI 1.0 Beta6
J-EAI is an XMPP-based Enterprise Application Integration (EAI) platform. more>>
J-EAI is the first Open Source EAI built as a free software standards-based solution.
J-EAI is built on:
- XML: XML is the new standard for data exchange between heterogeneous systems. It is normalized by the W3C.
- XMPP: XMPP stands for eXtensible Messaging and Presence Protocol. It is standardized by the IETF and is extremely extensible.
Main features:
Cross organisation integration
- J-EAI has been designed to enable applications integration in process that are not limited to the boundary of a single organisation. Its routing mechanism allows several instances of J-EAI managed by different organisation to be interconnected while keeping all the systems independant.
A J-EAI cluster can serve a single domain
- J-EAI works as a cluster to ensure scalability and high-availability. This is an important feature as organisation deploying EAI data bus become highly dependant of the system: high-availability and scalability is thus a must.
Flexible design and extensible data bus
- The J-EAI bus is entirely based on XML and is design as an extensible architecture. This makes it easy to extend and to integrate with legacy application, whatever the technology they are build-in.
Enhancements:
- This version supports collection nodes in the pub sub module.
- Node collection support increases the flexibility of the publish and subscribe model.
- Several bugs have been also fixed.
<<lessJ-EAI is built on:
- XML: XML is the new standard for data exchange between heterogeneous systems. It is normalized by the W3C.
- XMPP: XMPP stands for eXtensible Messaging and Presence Protocol. It is standardized by the IETF and is extremely extensible.
Main features:
Cross organisation integration
- J-EAI has been designed to enable applications integration in process that are not limited to the boundary of a single organisation. Its routing mechanism allows several instances of J-EAI managed by different organisation to be interconnected while keeping all the systems independant.
A J-EAI cluster can serve a single domain
- J-EAI works as a cluster to ensure scalability and high-availability. This is an important feature as organisation deploying EAI data bus become highly dependant of the system: high-availability and scalability is thus a must.
Flexible design and extensible data bus
- The J-EAI bus is entirely based on XML and is design as an extensible architecture. This makes it easy to extend and to integrate with legacy application, whatever the technology they are build-in.
Enhancements:
- This version supports collection nodes in the pub sub module.
- Node collection support increases the flexibility of the publish and subscribe model.
- Several bugs have been also fixed.
Download (12.9MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1358 downloads
J-Adhoc 0.21
J-Adhoc provides an AODV protocol handler in Java. more>>
J-Adhoc provides an AODV protocol handler in Java.
J-Adhoc is a Java-based implementation of the AODV protocol. It complies with RFC3561, and supports both IPv4 and IPv6. It is implemented using Java libraries for networking, graphical user interfaces, multi-threading, and operating system calls.
It also uses Jpcap, a Java-based class library for network packet capture. It has been tested on Linux, Windows (XP and 2K), and Sharp Zaurus.
For portability purposes, a restricted set of modules was implemented specifically for each supported environment.
<<lessJ-Adhoc is a Java-based implementation of the AODV protocol. It complies with RFC3561, and supports both IPv4 and IPv6. It is implemented using Java libraries for networking, graphical user interfaces, multi-threading, and operating system calls.
It also uses Jpcap, a Java-based class library for network packet capture. It has been tested on Linux, Windows (XP and 2K), and Sharp Zaurus.
For portability purposes, a restricted set of modules was implemented specifically for each supported environment.
Download (2.0MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
564 downloads
eMusic/J 0.20
eMusic/J is an open source download manager for the eMusic.com music service. more>>
eMusic/J is an open source download manager for the eMusic.com music service written in Java and aimed at Linux users, although may be easily ported to other platforms.
It takes the .emp file that you get from the eMusic.com website, and downloads the music specified in it. eMusic/J can easily work with Firefox to make downloading songs and albums simple.
<<lessIt takes the .emp file that you get from the eMusic.com website, and downloads the music specified in it. eMusic/J can easily work with Firefox to make downloading songs and albums simple.
Download (1.7MB)
Added: 2006-09-03 License: GPL (GNU General Public License) Price:
1151 downloads
J-Pilot 0.99.9
J-Pilot is a full-featured desktop organizer application for the Palm Pilot that runs under Linux and UNIX. more>>
J-Pilot is a full-featured desktop organizer application for the Palm Pilot that runs under Linux and UNIX. J-Pilot project includes support for addresses, datebooks, memos, todos, expenses, and has plugin support. It uses the GTK+ libraries.
Main features:
- Phone Dialer
- Syncronization of categories and editing categories on desktop
- Export of iCalendar format from ToDo and Datebook
- Export of vCard format from Address book
- Export of ldif format from Address book
- Supports Datebook, Address, To Do List, and Memo Pad
- Support for Palm OS 4.x passwords and USB
- Import and Export
- Supports some DateBk3 tags
- Support for PEdit palm app
- Postscript printing
- Monthly and Weekly Views of the datebook
- Plugin support - comes with Expense plugin
- Synctime plugin for setting the time on the palm
- KeyRing plugin for GNU KeyRing encryption Palm app
- Small and fast, designed to take up little screen space
- 2 way Syncing, fast and slow syncs
- Support for multiple backups
- Palm Pilot preferences are used so that things appearin the same way as they do on the palm pilot. i.e. Sorting orderof addresses, todos, memos, etc.
- Does a Full Backup, or just a Sync of supported apps
- Restore capability
- Global Search (Find)
- Installation of files to the palm pilot, will install Graffiti Shortcuts
- Limited support for Japanese Kanji characters SJIS-> EUC -> SJIS
- Support for color scheme files
- Quick find in address application
- Datebook support for repeating events and exceptionsto those events
- Datebook support for modification of a single occurrence of a reoccurring event
- Datebook support for "By Day" reoccurring eventseven when its on the last day of the month, and not the 4th. i.e.Try adding a monthly repeating appointment "By Day" on the 4th week ofa month when there is no 5th occurrence of that day in the month
<<lessMain features:
- Phone Dialer
- Syncronization of categories and editing categories on desktop
- Export of iCalendar format from ToDo and Datebook
- Export of vCard format from Address book
- Export of ldif format from Address book
- Supports Datebook, Address, To Do List, and Memo Pad
- Support for Palm OS 4.x passwords and USB
- Import and Export
- Supports some DateBk3 tags
- Support for PEdit palm app
- Postscript printing
- Monthly and Weekly Views of the datebook
- Plugin support - comes with Expense plugin
- Synctime plugin for setting the time on the palm
- KeyRing plugin for GNU KeyRing encryption Palm app
- Small and fast, designed to take up little screen space
- 2 way Syncing, fast and slow syncs
- Support for multiple backups
- Palm Pilot preferences are used so that things appearin the same way as they do on the palm pilot. i.e. Sorting orderof addresses, todos, memos, etc.
- Does a Full Backup, or just a Sync of supported apps
- Restore capability
- Global Search (Find)
- Installation of files to the palm pilot, will install Graffiti Shortcuts
- Limited support for Japanese Kanji characters SJIS-> EUC -> SJIS
- Support for color scheme files
- Quick find in address application
- Datebook support for repeating events and exceptionsto those events
- Datebook support for modification of a single occurrence of a reoccurring event
- Datebook support for "By Day" reoccurring eventseven when its on the last day of the month, and not the 4th. i.e.Try adding a monthly repeating appointment "By Day" on the 4th week ofa month when there is no 5th occurrence of that day in the month
Download (1.5MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1128 downloads
QuickFIX/J 1.0.1
QuickFIX is a full-featured open source FIX engine, currently compatible with the FIX 4.0-4.4 spec. more>>
QuickFIX is a full-featured open source FIX engine, currently compatible with the FIX 4.0-4.4 spec.
QuickFIX/J runs on Windows, Solaris, Linux, FreeBSD and Mac OS X. APIs are available for C++, Java, .NET, and Python.
The Financial Information eXchange (FIX) Protocol is a "language" which defines specific kinds of electronic messages for communicating securities transactions between two parties.
FIX defines only the format of the messages and the session-level interaction between two applications.
Enhancements:
- This announcement covers both the 1.0.0 release and 1.0.1 maintenance release.
- Features include updated compatibility with QuickFIX C++/JNI, an update to MINA 0.9.x for networking, support for variables in configuration files, performance optimizations in the file message storage plugin, and new file-based message logging options.
- It also includes several bugfixes.
<<lessQuickFIX/J runs on Windows, Solaris, Linux, FreeBSD and Mac OS X. APIs are available for C++, Java, .NET, and Python.
The Financial Information eXchange (FIX) Protocol is a "language" which defines specific kinds of electronic messages for communicating securities transactions between two parties.
FIX defines only the format of the messages and the session-level interaction between two applications.
Enhancements:
- This announcement covers both the 1.0.0 release and 1.0.1 maintenance release.
- Features include updated compatibility with QuickFIX C++/JNI, an update to MINA 0.9.x for networking, support for variables in configuration files, performance optimizations in the file message storage plugin, and new file-based message logging options.
- It also includes several bugfixes.
Download (9.5MB)
Added: 2006-06-18 License: The Apache License Price:
1228 downloads
J-Nix
J-Nix provides everything the home user needs, and as little else as possible. more>>
J-Nix provides everything the home user needs, and as little else as possible. This makes J-Nix more secure, faster to run, faster to install.
The things the home user needs are
* browser,
* email,
* chat,
* word processor,
* spreadsheet program,
* presentation program.
Mozilla and Open Office do these well, better than Microsoft does and with incredibly fewer vulnerabilituies to hackers, worms and viruses.,
We took a lot of material only of interest to programmers OUT.
Then we made it as easy as possible to use the first time. Insert the CD and one boots to a pleasant screen ready to browse, email, instant message or look at news. We used through Mozilla (FireFox) for most of the web and Gaim for instant messaging.
We took out compilers, seven different text editors, web servers, email servers, several emulators, and localization except for US English.
We took out almost 200 M bytes from the CD, and a Gig from the hard drive space used.
We left in the system tools for getting packages, apt and kpackage so a web savvy user can add in any package they need.
Easier to start with. Easy to add what you need. What could be better?
<<lessThe things the home user needs are
* browser,
* email,
* chat,
* word processor,
* spreadsheet program,
* presentation program.
Mozilla and Open Office do these well, better than Microsoft does and with incredibly fewer vulnerabilituies to hackers, worms and viruses.,
We took a lot of material only of interest to programmers OUT.
Then we made it as easy as possible to use the first time. Insert the CD and one boots to a pleasant screen ready to browse, email, instant message or look at news. We used through Mozilla (FireFox) for most of the web and Gaim for instant messaging.
We took out compilers, seven different text editors, web servers, email servers, several emulators, and localization except for US English.
We took out almost 200 M bytes from the CD, and a Gig from the hard drive space used.
We left in the system tools for getting packages, apt and kpackage so a web savvy user can add in any package they need.
Easier to start with. Easy to add what you need. What could be better?
Download (495MB)
Added: 2005-08-31 License: GPL (GNU General Public License) Price:
1514 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above j gerbomb search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed