native
Native Resolution Fix for Widescreen Monitors 1.0
Native Resolution Fix for Widescreen Monitors is a little script that changes your widescreen monitor resolution in one click. more>>
It couldnt get much more simpler than this little script/command. Anyhow, theres a few apps that would screw up my resolution after they exited and rather than look into it at the moment, I just googled to see if there was a quick command to execute that would change the resolution. So I found it, added that command to my KDE menu, then made a shortcut to it (ctrl + r) so I have a push-button resolution fix, which I recommend you do as its quite handy.
Anyhow, place Native Resolution Fix.desktop on your desktop but DO NOT USE it if you have a monitor with a smaller resolution. Instead, you can edit it and change the resolution to what you like and use the "-r" command to set the hertz, which will use one of the rates set in your xorg.conf.
Enhancements:
- NOTE: Please edit if your monitor doesnt support the 1680x1050 resolution in this script or do not use it.
- I am not responsible if your monitor, in a rare case, gets messed up by you using a resolution in which your monitor cant support.
Vexi 0.92
Vexi is a visual, extensible, XML interfaces. more>>
Vexi is written in Java, but compiled into native binaries using GCJ and are combined with launchers that work natively in popular web browsers.
clip2png 2
clip2png is a native java utility that easily saves your current clipboard image. more>>
No setup or configuration required - just run the jar!
Banteng 0.1.1
Banteng is cross-platform, visual JavaScript IDE. more>>
The 0.1.1 release includes the core runtime engine and some basic examples.
wxPerl 0.76
wxPerl is a Perl wrapper for the awesome wxWidgets cross-platform GUI toolkit with native look and feel. more>>
wxPerl allows the creation of applications that can run on Unices, Windows, Mac OS X with native look and feel. Whenever possible the underlying wxWidgets toolkit uses the platforms native control, emulating it when not available.
wxWidgets 2.8.4
wxWidgets is C++ cross-platform GUI library with native look and feel. more>>
wxWidgets uses native widgets on all platforms whenever possible and fills missing gaps on some platforms using generic controls written with wxWidgets itself.
Cpop 0.7
cpop is a network popup message system that uses the jpop protocol and a simple GTK+ interface. more>>
This version is the UNIX/GTK+ native version. The cross-platform, Java version is called jpop.
Glame 2.0.1
Glame is a multi-track wave-editor with synthesis capabilities. more>>
Glame is targeted to be the GIMP for audio processing. Glame supports non destructive multitrack editing, recording and mixing; realtime effects using native or LADSPA plugins; OSS, ALSA or SGI audio and WAV, Mp3 and Ogg file formats.
C# Java Virtual Machine 1.0.1
C# Java Virtual Machine is a tiny implementation of the Java VM, including simple native classes. more>>
Enhancements:
- The DbConnection class, which provides a connection to MS SQL or PostgreSQL using ADO.NET, was added.
- The Syst.MachineName method, which returns the machine name, was added.
- String.startsWith and String.endsWith functions were added.
- Some comments for VM.cs were written.
wx4j 0.2.0
wx4j is a Java binding for wxWindows. more>>
It provides a Java GUI toolkit using native widgets (to utilize the native look and feel).
This is in contrast to Swing/JFC which tries to mimic the native look and feel, but usually doesnt quite feel right. In this respect, it is very similar to the SWT toolkit used in IBMs Eclipse IDE. But rather than inventing yet another toolkit, wx4j utilizes the proven wxWidgets C++ library and uses SWIG to expose the API in Java. This also means the event loop executes in C++ and is very responsive.
JavaNativeCompiler 1.1.1
JavaNativeCompiler (JNC) is a Java to native compiler. more>>
This is especially useful when applications have to be deployed to end-users. All vexatious problems of deploying Java applications can be solved by compiling them to native. They will be:
- Easy to deploy
No JRE dependency. Most end-users dont know what they have installed.
No more problems on how to create an executable file out of a JAR or class file.
- Hard to decompile
Java can easily be decompiled. Native compilation will protect your source code.
- Run fast from the start
No more overhead for loading a JRE.
Enhancements:
- This release fixes a couple of problems with AWT/Swing and XML.
- It also once again contains a version for Linux.
- The compiler binary downloads are smaller.
MfGames.Template 1.1.0
The MfGames.Template library is a C# native library for creating template libaries. more>>
MfGames.Template was inspired by NVelocity, but was designed from the ground up to use the CIL internals, such as System.CodeDom and internal compliation to handle the template language.
Because of this, it supports C# code as the template "language". In addition, compiled templates are actually compiled down into bytecode, using the built-in compiler.
Bakefile 0.2.2
Bakefile is cross-platform, cross-compiler generator of native makefiles. more>>
Bakefiles task is to generate native makefiles, so that people can keep using their favorite tools. There are other cross-platform make solutions, but they either arent native and require the user to use unfamiliar tools (Boost.Build) or they are too limited (qmake).
Beware that Bakefile is currently under heavy development (version 0.1.x) and is very likely to change significantly and to contain bugs. It is being used for wxWidgets new build system and you can expect it to be usable for production once we fully convert wxWidgets to use it.
Enhancements:
- Bakefile was relicensed from the GPL to the MIT license.
- Support for Visual Studio 2005 project files was added.
- Many small fixes and improvements were made.
Baghira 0.8
Baghira is a native style for QT/KDE. more>>
The name refers to the Panther of Kiplings famous Jungle Book (German spelling)
You will probably rather know the Disney version...
Basically its a perky imitation of Apples OSX look.
Installation:
tar -xjf baghira.tar.bz2
cd baghira/baghira
./configure --prefix=`kde-config --prefix` --disable-debug [--enable-final]
(!!!BEGINNERS: the direction of the accents is _important_ (top-left to bottom-right), the rectangular brackets mean [this is optional] - dont type them!!!)
make
and finally as root:
make install
Java Platform Invoke API Demo (Linux) 2.01.04
Java Platform Invoke API (Demo version) for Linux, i386. Enables Java code to call native functions implemented in shared libraries like in Microsoft .NET Framework. Written for JSE 1.5.x and later. more>>
Java Platform Invoke API Demo (Linux) - Java Platform Invoke API (Demo version) for Linux/Unix, i386.
Enables Java code to call native functions implemented in shared link libraries like in Microsoft .NET Framework. Written for JSE 1.5.x and later.
Java platform invoke an API that enables Java code to call native functions implemented in shared libraries, such as those in the Linux API. It locates and invokes an exported function and marshals its arguments (integers, strings, arrays, structures, and so on) across the interoperation boundary as needed. This API supports implicit marshaling that makes Java coding with native functions very simple.
To consume a shared library functions you need
1.Identify functions in shared librarys.
Minimally, you must specify the name of the function and name of the the shared library that contains it.
2.Create a class to hold shared library functions.
You can use an existing class, create an individual class for each native function, or create one class that contains a set of related native functions. This class should extend CNativeLibrary. Use the annotation ImportLibrary to bind your class to the native library.
3.Create prototypes in Java code.
Write prototype of a native function as a method with signature that corresponds to the native function using data type map agreement. To identify the native function use the annotation Function. Mark the method with the native modifier.
4.Call a shared library function.
Call the method on your Java class as you would any other Java method. As parameters can be passed structures and implemented in Java callback functions.
Enhancements:
Version 2.01.04
System Requirements:JSE 1.5.x<<less