bin to hex
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 829
Convert::BinHex 1.119
Convert::BinHex can extract data from Macintosh BinHex files. more>>
Convert::BinHex can extract data from Macintosh BinHex files.
ALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!
SYNOPSIS
Simple functions:
use Convert::BinHex qw(binhex_crc macbinary_crc);
# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);
# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);
Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up
Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource
Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up
Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;
# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");
# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core
# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);
PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);
BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.
<<lessALPHA WARNING: this code is currently in its Alpha release. Things may change drastically until the interface is hammered out: if you have suggestions or objections, please speak up now!
SYNOPSIS
Simple functions:
use Convert::BinHex qw(binhex_crc macbinary_crc);
# Compute HQX7-style CRC for data, pumping in old CRC if desired:
$crc = binhex_crc($data, $crc);
# Compute the MacBinary-II-style CRC for the data:
$crc = macbinary_crc($data, $crc);
Hex to bin, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Hex2Bin") which keeps internal conversion state:
# Create and use a "translator" object:
my $H2B = Convert::BinHex->hex2bin; # get a converter object
while (< STDIN >) {
print $STDOUT $H2B->next($_); # convert some more input
}
print $STDOUT $H2B->done; # no more input: finish up
Hex to bin, OO interface. The following operations must be done in the order shown!
# Read data in piecemeal:
$HQX = Convert::BinHex->open(FH=>*STDIN) || die "open: $!";
$HQX->read_header; # read header info
@data = $HQX->read_data; # read in all the data
@rsrc = $HQX->read_resource; # read in all the resource
Bin to hex, low-level interface. Conversion is actually done via an object ("Convert::BinHex::Bin2Hex") which keeps internal conversion state:
# Create and use a "translator" object:
my $B2H = Convert::BinHex->bin2hex; # get a converter object
while (< STDIN >) {
print $STDOUT $B2H->next($_); # convert some more input
}
print $STDOUT $B2H->done; # no more input: finish up
Bin to hex, file interface. Yes, you can convert to BinHex as well as from it!
# Create new, empty object:
my $HQX = Convert::BinHex->new;
# Set header attributes:
$HQX->filename("logo.gif");
$HQX->type("GIFA");
$HQX->creator("CNVS");
# Give it the data and resource forks (either can be absent):
$HQX->data(Path => "/path/to/data"); # here, data is on disk
$HQX->resource(Data => $resourcefork); # here, resource is in core
# Output as a BinHex stream, complete with leading comment:
$HQX->encode(*STDOUT);
PLANNED!!!! Bin to hex, "CAP" interface. Thanks to Ken Lunde for suggesting this.
# Create new, empty object from CAP tree:
my $HQX = Convert::BinHex->from_cap("/path/to/root/file");
$HQX->encode(*STDOUT);
BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data streams. Ths module provides a means of converting those data streams back into into binary data.
Download (0.083MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1234 downloads
mp3info 0.1
mp3info software shows details of an mp3-file on the console. more>>
mp3info software shows details of an mp3-file on the console.
Screendump
folkert@belle:~/Personal/src/mp3info$ mp3info -v -f /data4/mp3/7zuma7 - deep inside - 10 - heroin chic.mp3
mpeg3library version 1.5.4
Number of audio streams: 1
Stream 0:
2 channels and consists of 11455240 samples.
sample rate: 44100, duration: 00:04:19
audio format: MPEG
File indicates that it has no video streams.
id3 v1 tag info
title: Heroin Chic
artist: 7Zuma7
album: Deep Inside...
year: 2000
comment:
track: 10
genre: Metal
Integration in Mutt
Add the following lines to ~/.mailcap:
audio/mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/mpeg; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/x-mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
and add the following lines to ~/.muttrc:
auto_view audio/mp3
auto_view audio/mpeg
auto_view audio/x-mp3
<<lessScreendump
folkert@belle:~/Personal/src/mp3info$ mp3info -v -f /data4/mp3/7zuma7 - deep inside - 10 - heroin chic.mp3
mpeg3library version 1.5.4
Number of audio streams: 1
Stream 0:
2 channels and consists of 11455240 samples.
sample rate: 44100, duration: 00:04:19
audio format: MPEG
File indicates that it has no video streams.
id3 v1 tag info
title: Heroin Chic
artist: 7Zuma7
album: Deep Inside...
year: 2000
comment:
track: 10
genre: Metal
Integration in Mutt
Add the following lines to ~/.mailcap:
audio/mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/mpeg; /usr/local/bin/mp3info -v -f %s ; copiousoutput
audio/x-mp3; /usr/local/bin/mp3info -v -f %s ; copiousoutput
and add the following lines to ~/.muttrc:
auto_view audio/mp3
auto_view audio/mpeg
auto_view audio/x-mp3
Download (0.021MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
809 downloads
FindBin 5.8.8
FindBin is a Perl module that can locate directory of original perl script. more>>
FindBin is a Perl module that can locate directory of original perl script.
SYNOPSIS
use FindBin;
use lib "$FindBin::Bin/../lib";
or
use FindBin qw($Bin);
use lib "$Bin/../lib";
Locates the full path to the script bin directory to allow the use of paths relative to the bin directory.
This allows a user to setup a directory tree for some software with directories < root >/bin and < root >/lib, and then the above example will allow the use of modules in the lib directory without knowing where the software tree is installed.
If perl is invoked using the -e option or the perl script is read from STDIN then FindBin sets both $Bin and $RealBin to the current directory.
EXPORTABLE VARIABLES
$Bin - path to bin directory from where script was invoked
$Script - basename of script from which perl was invoked
$RealBin - $Bin with all links resolved
$RealScript - $Script with all links resolved
<<lessSYNOPSIS
use FindBin;
use lib "$FindBin::Bin/../lib";
or
use FindBin qw($Bin);
use lib "$Bin/../lib";
Locates the full path to the script bin directory to allow the use of paths relative to the bin directory.
This allows a user to setup a directory tree for some software with directories < root >/bin and < root >/lib, and then the above example will allow the use of modules in the lib directory without knowing where the software tree is installed.
If perl is invoked using the -e option or the perl script is read from STDIN then FindBin sets both $Bin and $RealBin to the current directory.
EXPORTABLE VARIABLES
$Bin - path to bin directory from where script was invoked
$Script - basename of script from which perl was invoked
$RealBin - $Bin with all links resolved
$RealScript - $Script with all links resolved
Download (12.2MB)
Added: 2007-05-09 License: Perl Artistic License Price:
898 downloads
edanator 1.03
edanator is an intuitive graphical binary and hex calculator. more>>
edanator is an intuitive graphical binary and hex calculator. Each nibble is displayed in hex and binary. Clicking on the button (hex nibble or binary bit) changes the value. Bit and nibble shifting is supported via dedicated buttons. The project supports variable widths per word (up to 64- bits), three words (each on a different row), and mathematical operations between words.
Enhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
<<lessEnhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
Download (0.007MB)
Added: 2007-03-27 License: LGPL (GNU Lesser General Public License) Price:
944 downloads
Nietzsche 1.0
Nietzsche provides an easy to learn language. more>>
Nietzsche provides an easy to learn language.
It is an interpreted language, written with an hexadecimal editor such as plexedit, hexedit and so on.
You just have to supply the filename and the number of empty characters
to be inserted.
The null character for Nietzsche is hex 00.
Using labels in this language is fundamental. SO its a good thing to take confidence with them and to use them at best.
Labels must begin and end with 5 (05) 5 (05).
<<lessIt is an interpreted language, written with an hexadecimal editor such as plexedit, hexedit and so on.
You just have to supply the filename and the number of empty characters
to be inserted.
The null character for Nietzsche is hex 00.
Using labels in this language is fundamental. SO its a good thing to take confidence with them and to use them at best.
Labels must begin and end with 5 (05) 5 (05).
Download (0.093MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
993 downloads
Iso9660 Analyzer Tool 0.1.3
Iso9660 Analyzer Tool is a project that will detect the structure of CD images. more>>
Iso9660 Analyzer Tool is a project that will detect the structure of CD images.
iat (Iso9660 Analyzer Tools) is a tool for detecting the structure of many types of CD-ROM image file formats, such as BIN, MDF, PDI, CDI, B5I, and more.
Compile with:
$ gcc -o iat iat.c
Run with:
$ ./iat IMAGE.bin IMAGE.iso
Version restrictions:
- This is pre alpha version of iat, use this programme only for send me log of your image
Enhancements:
- This release resolves a problem with images and adds support for NRG images.
<<lessiat (Iso9660 Analyzer Tools) is a tool for detecting the structure of many types of CD-ROM image file formats, such as BIN, MDF, PDI, CDI, B5I, and more.
Compile with:
$ gcc -o iat iat.c
Run with:
$ ./iat IMAGE.bin IMAGE.iso
Version restrictions:
- This is pre alpha version of iat, use this programme only for send me log of your image
Enhancements:
- This release resolves a problem with images and adds support for NRG images.
Download (0.007MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
981 downloads
Psunami Bulletin Board 0.5.3
Psunami Bulletin Board is an Open Source alternative to the popular Ultimate Bulletin Board software. more>>
Psunami Bulletin Board is an Open Source alternative to the popular Ultimate Bulletin Board software, and aims for speed, ease of use, and a full feature set.
For installation, do the following:
1)Recursively copy everything from ./cgi-bin/ into your servers cgi-bin/ directory.
2)Recursively chown (chown -R) the psunami/ directory to the user that your web server uses (www-data on Debian, nobody on Slack, httpd on RHat-based systems (Ive been told that it is nobody on someRHat systems), wwwrun on SuSE. Anyone know what it is for others?) If you are unable to chown (eg. you are not the superuser) then make sure it is all readable/writable by the user (777 works, but is probably much too generous). Also do this to the psunami.conf file in cgi-bin.
3)Make psunami.cgi, psunami_admin.cgi, and psunami_moderate.cgi executable by the user that your web server uses. (chmod u+x *.cgi)
4)Change the paths to your perl executable if necessary. The paths are at the top of psunami.cgi, psunami_moderate.pl, and psunami_admin.cgi and default to /usr/bin/perl. Type which perl at a command prompt if you dont know where the executable is.
5)Run psunami_admin.cgi and create a new board. The initial login is psunami and the password is bulletin (no quotes).
6)Make sure that your mail program is configured properly in the preferences. It defaults to /usr/bin/sendmail.
7)Once you have created an account for yourself and given it admin rights, make sure you delete the psunami user.
<<lessFor installation, do the following:
1)Recursively copy everything from ./cgi-bin/ into your servers cgi-bin/ directory.
2)Recursively chown (chown -R) the psunami/ directory to the user that your web server uses (www-data on Debian, nobody on Slack, httpd on RHat-based systems (Ive been told that it is nobody on someRHat systems), wwwrun on SuSE. Anyone know what it is for others?) If you are unable to chown (eg. you are not the superuser) then make sure it is all readable/writable by the user (777 works, but is probably much too generous). Also do this to the psunami.conf file in cgi-bin.
3)Make psunami.cgi, psunami_admin.cgi, and psunami_moderate.cgi executable by the user that your web server uses. (chmod u+x *.cgi)
4)Change the paths to your perl executable if necessary. The paths are at the top of psunami.cgi, psunami_moderate.pl, and psunami_admin.cgi and default to /usr/bin/perl. Type which perl at a command prompt if you dont know where the executable is.
5)Run psunami_admin.cgi and create a new board. The initial login is psunami and the password is bulletin (no quotes).
6)Make sure that your mail program is configured properly in the preferences. It defaults to /usr/bin/sendmail.
7)Once you have created an account for yourself and given it admin rights, make sure you delete the psunami user.
Download (0.063MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1216 downloads
Atol 0.7.3
Atol is a dual panel file manager written using GTK+ toolkit and C++ programming language. more>>
Atol is a classical dual panel file manager portable to both Linux and Windows OS (using C++ and GTK+ toolkit).
Atol is a Norton Commander clone, classical dual panel file manager. Atol features common file operations, archive browsing (.zip, .tar, .gz, .arj, .bz2, .Z) and a lot more.
It is portable to both Linux and Windows OS (using C++ and GTK+ toolkit).
Main features:
- common file operations (copy,move,delete,rename)
- support for achiver plugins (.zip, .tar, .gz, .bz2, .arj, .rar, .lst)
- file search
- browsing bookmarks (directory shortcuts menu)
- file list filtering
- file split and merge support
- file hash calculation (crc32, md5, sha1)
- file encryption/decryption using strong blowfish algorithm
- multilanguage support
- fast file viewer (text, bin and hex mode)
<<lessAtol is a Norton Commander clone, classical dual panel file manager. Atol features common file operations, archive browsing (.zip, .tar, .gz, .arj, .bz2, .Z) and a lot more.
It is portable to both Linux and Windows OS (using C++ and GTK+ toolkit).
Main features:
- common file operations (copy,move,delete,rename)
- support for achiver plugins (.zip, .tar, .gz, .bz2, .arj, .rar, .lst)
- file search
- browsing bookmarks (directory shortcuts menu)
- file list filtering
- file split and merge support
- file hash calculation (crc32, md5, sha1)
- file encryption/decryption using strong blowfish algorithm
- multilanguage support
- fast file viewer (text, bin and hex mode)
Download (0.56MB)
Added: 2006-12-25 License: BSD License Price:
1036 downloads
RealizationEngine Desktop Status Checker 0.04
RealizationEngine Desktop Status Checker is a stand alone desktop client to alert you to new messages in RealizationEngine. more>>
rcheck is a tool that will allow you to check the status of one or more accounts on one or more RealizationEngines. rcheck is written in Perl, requires LWP::Simple and Digest::MD5 and Tk.
rcheck is intended to be a demonstration for creating clients that can check for and report new messages.
The status for an account can be requested by the following URL:
http://www.your_re.com/cgi-bin/re_status.cgi?status=username
this will return the results in the form:
total_messages:todays_messages:new_messages
Example: 100:10:2
The results are XORed against the MD5 digest (hex) of the users password before being sent so that the results are "lightly" encrypted. The results are trimmed to the length of the output only.
After receiving the encrypted result string from the server, take the MD5 digest (hex) of the users password, trim it to the same length as the status string and XOR the two against each other. This will give the plaintext of the status message.
rcheck only reports new messages since last session, and the other two numbers are tossed in the trash.
rcheck stores a file called .rcheck2 in the local directory with account information (passwords encrypted).
<<lessrcheck is intended to be a demonstration for creating clients that can check for and report new messages.
The status for an account can be requested by the following URL:
http://www.your_re.com/cgi-bin/re_status.cgi?status=username
this will return the results in the form:
total_messages:todays_messages:new_messages
Example: 100:10:2
The results are XORed against the MD5 digest (hex) of the users password before being sent so that the results are "lightly" encrypted. The results are trimmed to the length of the output only.
After receiving the encrypted result string from the server, take the MD5 digest (hex) of the users password, trim it to the same length as the status string and XOR the two against each other. This will give the plaintext of the status message.
rcheck only reports new messages since last session, and the other two numbers are tossed in the trash.
rcheck stores a file called .rcheck2 in the local directory with account information (passwords encrypted).
Download (0.010MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
hexdump 1.6
hexdump is a hex dumper that can handle EBCDIC. more>>
hexdump produces a CP/M-like format by default, and can handle EBCDIC. It is internationalized, and has many formatting functions.
This hex dumper was born because
a) od octal format is appallingly ugly
b) od -x aint much better
c) I needed to dump EBCDIC files from SNA sessions
d) I needed to dump single blocks of files offset into the file.
If any of these describes your universe, youll like it too. The format resembles a CP/M or MS/DOS DEBUG dump screen. There is nothing UNIX-specific in the source, it should work OK under any C with a stdio.h library.
Enhancements:
- Source RPMs no longer depend on --define myversion
<<lessThis hex dumper was born because
a) od octal format is appallingly ugly
b) od -x aint much better
c) I needed to dump EBCDIC files from SNA sessions
d) I needed to dump single blocks of files offset into the file.
If any of these describes your universe, youll like it too. The format resembles a CP/M or MS/DOS DEBUG dump screen. There is nothing UNIX-specific in the source, it should work OK under any C with a stdio.h library.
Enhancements:
- Source RPMs no longer depend on --define myversion
Download (0.016MB)
Added: 2005-03-07 License: GPL (GNU General Public License) Price:
1695 downloads
Free Link Page 1.2
Free Link Page is a project that allows visitors to add links to your page in a specified category. more>>
Free Link Page is a project that allows visitors to add links to your page in a specified category.
This script allows visitors to add links to your page in a specified category. It is quite easy to install.
The administration module supports deleting of existing links.
Installation:
1.Open links.pl with a text editor.
Change the url in line one, to the Perl program at your server.
Usually it is: - /usr/bin/perl or /usr/local/bin/perl for Unix.
- C:/Perl/Perl.exe for Windows (use slash "/")
Set the correct paths and required urls.
2.Upload links.pl in ASCII-mode to your cgi-bin directory
and change mode it to 755 (-rwxr-xr-x).
3.Open addlink.html with a text editor.
Change the line
to the correct location of links.pl
Thats all.
<<lessThis script allows visitors to add links to your page in a specified category. It is quite easy to install.
The administration module supports deleting of existing links.
Installation:
1.Open links.pl with a text editor.
Change the url in line one, to the Perl program at your server.
Usually it is: - /usr/bin/perl or /usr/local/bin/perl for Unix.
- C:/Perl/Perl.exe for Windows (use slash "/")
Set the correct paths and required urls.
2.Upload links.pl in ASCII-mode to your cgi-bin directory
and change mode it to 755 (-rwxr-xr-x).
3.Open addlink.html with a text editor.
Change the line
to the correct location of links.pl
Thats all.
Download (0.042MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
Filler in Java 1.02
Filler in Java project is a graphical game where you occupy coloured hexes by changing colours. more>>
Filler in Java project is a graphical game where you occupy coloured hexes by changing colours.
Its strengths are better computer players, internationalisability, and cross-platform deployability.
Installing
In the top directory (same directory as this file), run make. That will build a jar file for you. You then need to be super-user (root), and run make install. If you cant be super-user, just do java -jar filler.jar instead.
The executable program is called filler, and will be installed in /usr/local/bin. Since release 1.01, filler will use your shell variable LANG to set the language that it runs in.
Enhancements:
- Added inc to other directory. This is the code header you include to say that the code is released under GPL.
- Removed resources_de.properties, resources_fr.properties, as I wrote them and they were pretty bad.
- Added sortByRandom() to PlayerWrappers.
- Added build.xml to other. This is for use with ant.
- Cleaned up some access privileges on some fields, cleaned up some bad identifiers.
- Added Kris Verbeecks RemotePlayer.
<<lessIts strengths are better computer players, internationalisability, and cross-platform deployability.
Installing
In the top directory (same directory as this file), run make. That will build a jar file for you. You then need to be super-user (root), and run make install. If you cant be super-user, just do java -jar filler.jar instead.
The executable program is called filler, and will be installed in /usr/local/bin. Since release 1.01, filler will use your shell variable LANG to set the language that it runs in.
Enhancements:
- Added inc to other directory. This is the code header you include to say that the code is released under GPL.
- Removed resources_de.properties, resources_fr.properties, as I wrote them and they were pretty bad.
- Added sortByRandom() to PlayerWrappers.
- Added build.xml to other. This is for use with ant.
- Cleaned up some access privileges on some fields, cleaned up some bad identifiers.
- Added Kris Verbeecks RemotePlayer.
Download (0.37MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1034 downloads
BattleTech THUD 1.4
BattleTech THUD is a Java client designed to connect to Battletech MUXes. more>>
BattleTech THUD is a Java client designed to connect to Battletech MUXes and display combat data in a easy-to-read tactical display. BattleTech THUD client displays a tactical map, contacts list, armor status and more.
Main features:
- ANSI color support
- An impressive tactical map display: see screenshots
- All enemy and friendly contacts with headings
- Unique icons for each movement type
- Current heading and desired heading indicators
- Weapons arc indicators
- An overall armor percentage display
- A heat indicator
- Display of hex numbers if desired
- Varying colors of hexes based on height
- A separate contacts window
- Customizable colors and font sizes
- Much more...
<<lessMain features:
- ANSI color support
- An impressive tactical map display: see screenshots
- All enemy and friendly contacts with headings
- Unique icons for each movement type
- Current heading and desired heading indicators
- Weapons arc indicators
- An overall armor percentage display
- A heat indicator
- Display of hex numbers if desired
- Varying colors of hexes based on height
- A separate contacts window
- Customizable colors and font sizes
- Much more...
Download (0.11MB)
Added: 2007-02-21 License: BSD License Price:
980 downloads
KBBTray 0.07
KBBTray is a KDE task bar tray applicaton that monitors a Big Brother page and shows its status. more>>
KBBTray is a KDE task bar tray applicaton that monitors a Big Brother page and shows its status.
You need Python, PyQt, and PyKDE.
After you have the required libs installed
To install be root and run:
sh install.sh
yes I need a better install method
To run the application as any user do:
/usr/local/bin/kbbtray.py
If /usr/local/bin is in your path then just
kbbtray.py
will work
Enhancements:
- This release uses PNG instead of animated MNG files for certain types of status because of a memory leak somewhere in PyQt, QMovie, and libmng.
<<lessYou need Python, PyQt, and PyKDE.
After you have the required libs installed
To install be root and run:
sh install.sh
yes I need a better install method
To run the application as any user do:
/usr/local/bin/kbbtray.py
If /usr/local/bin is in your path then just
kbbtray.py
will work
Enhancements:
- This release uses PNG instead of animated MNG files for certain types of status because of a memory leak somewhere in PyQt, QMovie, and libmng.
Download (0.17MB)
Added: 2005-11-09 License: GPL (GNU General Public License) Price:
1444 downloads
Texplore 0.2
explore is a type explorer for GObject based libraries. more>>
Texplore is a type explorer for GObject based libraries. You can see what signals, properties, and other things are present in each type, its parents, and its children.
Its similar to System.Reflection.Emit from Mono, only it uses the GObject librarys API and introspection capabilites.
Installation:
./autogen.sh
./configure --prefix=/tmp
make
make install
$/tmp/bin/texplore & #yove done it
<<lessIts similar to System.Reflection.Emit from Mono, only it uses the GObject librarys API and introspection capabilites.
Installation:
./autogen.sh
./configure --prefix=/tmp
make
make install
$/tmp/bin/texplore & #yove done it
Download (0.16MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1570 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above bin to hex 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