Main > Free Download Search >

Free mr tech software for linux

mr tech

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 77
MR Tech About:About 2.4.2

MR Tech About:About 2.4.2


MR Tech About:About is a free Thunderbird extension which adds the following about: options to the Help menu: about:config, about:plugins, about:about, about:, about:buildconfig, about:cache, about:cache (Disk), about:cache (Memory), about:credits, about:license, about:mozilla, about:kitchensink. more>> <<less
Added: 2009-02-17 License: MPL Price: FREE
2 downloads
MR Tech Link Wrapper Lite 2.1

MR Tech Link Wrapper Lite 2.1


MR Tech Link Wrapper Lite is a Firefox extension that wraps long links and lines to spare you from having to scroll left and rig more>>
MR Tech Link Wrapper Lite is a Firefox extension that wraps long links and lines to spare you from having to scroll left and right.

Hidden preferences:

- length to wrap: link_wrapper.wrapLength, default value is "15"
- Sites to ignore: link_wrapper.ignoreList, default regex value is "google.com|mail.yahoo.com|hushmail.com|blog.myspace.com|webmail.aol.com"
- html tags to ignore: link_wrapper.ignoreTags, default regex value includes tons of tags
- Enable page character limit to improve performance on large pages: link_wrapper.charLimitEnabled, default value is false
- If enabled use this character limit: link_wrapper.charLimit, default value is 30000

If Link Wrapper doesnt appear to work for you can:

- some blog site will break with this extension just add the domain to the "Sites to ignore" list in the options
- bump the limit of character to something higher than 30000 in the options dialog
- if you experience slow downs on large pages, enabling the character limit in the options dialog.

Note: Link Wrapper will force Linkification to only highlight part of a text link, version 1.2.2 and newer of Linkification adds a "Thorough Mode" which is disabled by default, enabling it will resolve this, or you can just double-click on the unhighlighted text on the right of the text from a link to have it open properly.

<<less
Download (0.006MB)
Added: 2007-05-09 License: MPL (Mozilla Public License) Price:
899 downloads
MR Tech Disable XPI Install Delay 2.4.1

MR Tech Disable XPI Install Delay 2.4.1


MR Tech Disable XPI Install Delay offers you a wonderful and totally free extension which enables fast extension to install. more>> MR Tech Disable XPI Install Delay 2.4.1 offers you a wonderful and totally free extension which enables fast extension to install. Disables default delay when installing extensions.

Enhancements: Minor version bump

Requirements: Mozilla Thunderbird


<<less
Added: 2009-02-14 License: MPL Price: FREE
26 downloads
Old Tech 0.2

Old Tech 0.2


System Monitor Theme that started out as a High-Tech one, then devolved into this low-tech broken typewriter version. more>>
System Monitor Theme that started out as a High-Tech one, then devolved into this low-tech broken typewriter version.

I love the chaotic nature of it.

This is my 1st theme, please critique!

<<less
Download (0.12MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
Tumiki Fighters 0.2c

Tumiki Fighters 0.2c


Tumiki Fighters is a game where you salvage parts from enemies to enhance your firepower. more>>
Tumiki Fighters is a game where you salvage parts from enemies to enhance your firepower. Tumiki Fighters was created by Kenta Cho and ported to Linux by Evil Mr Henry.

Installation:

Tumiki Fighters is entirely contained within this directory. There is no installation. To uninstall, simply delete this directory.

Running:

Type ./tf from this directory to start the game. The command-line line switches listed in readme_e.txt should all work.

Compiling:

Install the OpenGL development libraries. (This is the hard part.)
Install the D compiler, version 0.106. (http://ftp.digitalmars.com/dmd.106.zip) Note that this is non-opensource, so if you cant run the binary, youre out of luck. If you dont like it, talk to digitalmars. I dont like it either. Also, any later versions of the D compiler will NOT work. 0.106 or earlier is needed. As a final note, the resultant binary will not work on other computers, due to problems in the D compiler.

Install SDL_mixer.

Compile with "make". The bulletML libraries will give a few warnings. Ignore them.

Known Issues:

The compiler is non-opensource.
<<less
Download (4.9MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1441 downloads
Test::Tech 0.26

Test::Tech 0.26


Test::Tech is a Perl module that adds skip_tests and test data structures capabilities to the Test module. more>>
Test::Tech is a Perl module that adds skip_tests and test data structures capabilities to the "Test" module.

SYNOPSIS

#######
# Procedural (subroutine) Interface
#
# (use for &Test::plan, &Test::ok, &Test::skip drop in)
#
use Test::Tech qw(demo finish is_skip ok ok_sub plan skip skip_sub
skip_tests stringify tech_config);

demo($quoted_expression, @expression);

(@stats) = finish( );
$num_passed = finish( );

$skip_on = is_skip( );
($skip_on, $skip_diag) = is_skip( );

$test_ok = ok($actual_results, $expected_results, [@options]);
$test_ok = ok($actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = ok($actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = ok_sub(⊂routine, $actual_results, $expected_results, [@options]);
$test_ok = ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$success = plan(@args);

$test_ok = skip($skip_test, $actual_results, $expected_results, [@options]);
$test_ok = skip($skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = skip($skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, [@options]);
$test_ok = skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$skip_on = skip_tests( $on_off, $skip_diagnostic);
$skip_on = skip_tests( $on_off );
$skip_on = skip_tests( );

$string = stringify($var, @options); # imported from Data::Secs2

$new_value = tech_config( $key, $old_value);

#####
# Object Interface
#
$tech = new Test::Tech;

$tech->demo($quoted_expression, @expression)

(@stats) = $tech->finish( );
$num_passed = $tech->finish( );

$skip_on = $tech->is_skip( );
($skip_on, $skip_diag) = $tech->is_skip( );

$test_ok = $tech->ok($actual_results, $expected_results, [@options]);
$test_ok = $tech->ok($actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->ok($actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = $tech->ok_sub(⊂routine, $actual_results, $expected_results, [@options]);
$test_ok = $tech->ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->ok_sub(⊂routine, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$success = $tech->plan(@args);

$test_ok = $tech->skip($skip_test, $actual_results, $expected_results, [@options]);
$test_ok = $tech->skip($skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->skip($skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$test_ok = $tech->skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, [@options]);
$test_ok = $tech->skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, [@options]);
$test_ok = $tech->skip_sub(⊂routine, $skip_test, $actual_results, $expected_results, $diagnostic, $test_name, [@options]);

$state = $tech->skip_tests( );
$state = $tech->skip_tests( $on_off );

$state = skip_tests( $on_off, $skip_diagnostic );

$string = $tech->stringify($var, @options); # imported from Data::Secs2

$new_value = $tech->tech_config($key, $old_value);

Generally, if a subroutine will process a list of options, @options, that subroutine will also process an array reference, @options, [@options], or hash reference, %options, {@options}. If a subroutine will process an array reference, @options, [@options], that subroutine will also process a hash reference, %options, {@options}. See the description for a subroutine for details and exceptions.

<<less
Download (0.091MB)
Added: 2007-02-15 License: Perl Artistic License Price:
981 downloads
Myah Linux 3.0 Tech Demo 2

Myah Linux 3.0 Tech Demo 2


Myah is a simple and easy to use Operating System for standard Intel or AMD powered computers. more>>
Myah is an Operating System based on the Linux kernel. Myah is a "Live CD", so no installation is required. Myah Linux Operating System runs right off the CD, putting whatever system files it needs into RAM only.
You simply start up your PC with the Myah CD. Once youre done with Myah, simply restart your PC. The CD will eject automatically and all will be exactly as it was before.
Our goal is to bring you the best free Operating System and to inform PC owners they dont have to spend their money on Windows or OS X. There is something better, and its free. Whenever we improve Myah or Linux in general those updates will be free.
There are many Linux-based Live CDs our there. So weve made sure Myah is different by including the programs youre going to use on a daily basis. To Windows users the unfamiliar Linux program names can be confusing. So weve changed the menus to make sense. For instance Kopete, a Linux instant messenger service, is simply called Messenger.
Programs have been added to the task bar for quick and easy access. Also: the user isnt hassled for any information during startup. Myah boots up completely on its own. It starts in the main administrative account called Root.
The user has full rights. And since Myah runs right off the CD you cant break it.This whole website is committed to bringing people the best of Linux and its software, so we advertise many other Linux Operating Systems. As a plus for people who cant leave Windows (tm), we offer the Live CD. And its all free for everyone to use. So please: dont waste your money.
Main features:
- Its just as easy as putting the Myah CD in your computer and rebooting. Everything is automatic, detecting your hardware, even your internet connection. All this is done without making any permenet changes to your computer. At anytime just reboot the computer, and your normal system is back.
- Myah uses the KDE destop, that comes with a great set of utilities. Control Center you have the power to tune the system as you like. K3b is Myahs CD burning programs. K3b is powerful easy to use program.
- Myah lets you breeze though the Internet with Firefox. And if you have ever wanted to try creating you own Websites NVU is included. NVU makes it possible to create professional looking Webpages, without knowing html. Just point and click.
- If office software is a must, Open Office has every thing you need. While working is nice to have something to listed to. Realplayer can handle radio stations form Shoutcast, or even let you check out there latest videos online.
- Myahs messanger Kopete will let you stay connected to with anyone, no matter what service they might use. And for all those photos Gimp is a complete solution. Myah comes Jam packed with many other programs, all in a simple and easy to use menu. Just click the penguin and begin.
Enhancements:
- Myah OS 3 Tech Demo 2 is now available. This is still a development release but it should be fairly stable and have a well rounded selection of applications. It should mirror what the Xfce version of 3.0 will look like. There are still three objectives that need to be met before 3.0 stable: firstly, to get the system well tested to weed out any bugs or setting changes, secondly, to work on Myahs package management system, and finally, there is still no actual installer. Both binary packages and source packages will be made available and since the bulk of the system has been completed, development should come much faster from now on.
<<less
Download (695.6MB)
Added: 2007-06-02 License: GPL (GNU General Public License) Price:
876 downloads
Tech Mon Lte 0.1

Tech Mon Lte 0.1


Tech Mon Lte is a TechMon variation with no frames, Default font used in theme is Bitstream Vera Sans. more>>
Tech Mon Lte is a TechMon variation with no frames, Default font used in theme is Bitstream Vera Sans, make sure you have this font.

This version works best on a darker background, please let me know if you need any variations for lighter wallpaper.

As always, any issues, report back here.

<<less
Download (0.028MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
Bocazas Webchat 1.2

Bocazas Webchat 1.2


Bozocas Webchat is a IRC chat applet. more>>
Bozocas Webchat is a IRC chat applet.
Nowadays, an online chat is sometimes crucial.There are situations when your visitors dont have time to wait for an email answer. It might be because they need urgent tech support or because they need to close a deal quickly.
You might also need to offer special discounts, sales, or show to your customers information that is not provided on the web. Being able to chat to the customer online on his/her brief visit might give you the competitive advantage you need.
You need a customer service tool that allows your personnel to instantaneously communicate with your web site visitors.
With this in mind, we created Bocazas Live Support.
Main features:
- Can connect to any known IRC network (only registered versions).
- DCC Chat (Direct Connections) between users.
- Confortable environment to keep track of simultaneous private and public conversations.
- Support text colors.
- Support copy & paste.
- Support sending files between users.
- Support most of the IRC commands (map, links, mode, oper...)
- Support any language: English, Spanish, Chinese, Deutsch, Italian, Turkish... and you can add any other.
<<less
Download (0.261MB)
Added: 2006-06-16 License: Other/Proprietary License Price:
1227 downloads
Ricochet 0.98

Ricochet 0.98


Ricochet project traces the names and addresses of the systems where the spam originated from... more>>
A lot of unsolicited email goes unreported because tracing the origins of a possibly forged mail and finding the right people to report to, is complicated and time-consuming. Ricochet, a smart net agent, automates this process.

Ricochet project traces the names and addresses of the systems where the spam originated from along with the servers that provide domain name resolution services to these systems (in most cases their ISPs). Then it collects/generates a list of email addresses of tech/billing/admin/abuse contacts of these system and mails them a complaint and a copy of the spam.

<<less
Download (MB)
Added: 2007-06-05 License: Artistic License Price:
5487 downloads
Glub Tech Secure FTP 2.5.13

Glub Tech Secure FTP 2.5.13


Glub Tech Secure FTP is a utility that allows FTP connections to be made using SSL. more>>
Secure FTP is a client application that allows for a 128-bit encrypted secure connection to be made to a server that supports FTP over SSL (or FTPS).
The application can be run via its graphical user interface (GUI) or from the command-line interface (CLI), allowing for headless (scriptable) operation. This makes Secure FTP a great option for both novice and advanced users.
The client is fully RFC 2228 compliant and offers both types of SSL connection options: explicit and implicit, which means more server compatibility.
Secure FTP is free to use for noncommercial use. Those wishing to use the client for commercial purposes are granted a license free of charge for 30 days.
The client is supported on Windows, Mac OS X, and any Unix platform where a Java 2 runtime environment (version 1.4+) is present. It was written in 100% pure Java.
Enhancements:
- The software was translated into French.
- Minor bug fixes and library updates were done.
<<less
Download (MB)
Added: 2007-05-28 License: Free for non-commercial use Price:
1876 downloads
rRootage 0.23a

rRootage 0.23a


rRootage is an abstract shooter game. more>>
rRootage is an abstract shooter game. It was created by Kenta Cho and ported to Linux by Evil Mr Henry.
Debian distro: apt-get install rrootage.
Installation:
Download the data files, and the executable for your platform. Put rr in this directory.
On most systems, simply open a console, switch to root, and run ./install.sh. If that doesnt work, you can install manually. Copy rr_share/* to /usr/share/games/rRootage, rr to /usr/bin and make sure everything works.
Running:
Type rr to start the game. The command-line line switches listed in readme_e.txt should all work.
Compiling:
Install the OpenGL development libraries. (This is the hard part.)
Install libBulletML. (http://user.ecc.u-tokyo.ac.jp/~s31552/wp/libbulletml/index_en.html Compiling should be simple. Copy the resulting .a file to /usr/lib)
Install SDL_mixer.
Compile with "make -f makefile.lin"
The file "rr" goes in your path, and all directories except src go in /usr/share/games/rRootage. src is unneeded after compiling.
Uninstall:
Remove the directory /usr/share/games/rRootage, the file /usr/bin/rr and the file ~/.rr.prf.
Enhancements:
- This only updates the packaging.
- Dont bother upgrading if your copy works.
<<less
Download (0.11MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1252 downloads
Parsec47 0.21c

Parsec47 0.21c


Parsec47 is an abstract shooter. more>>
Parsec47 is an abstract shooter. I was created by Kenta Cho and ported to Linux by Evil Mr Henry.

Installation:

Parsec47 is entirely contained within this directory. There is no installation. To uninstall, simply delete this directory.

Running:

Type ./p47 to start the game. The command-line line switches listed in readme_e.txt should all work.

Compiling:

Install the OpenGL development libraries. (This is the hard part.)
Install the D compiler, version 0.106. (http://ftp.digitalmars.com/dmd.106.zip) Note that this is non-opensource, so if you cant run the binary, youre out of luck. If you dont like it, talk to digitalmars. I dont like it either. Also, any later versions of the D compiler will NOT work. 0.106 or earlier is needed. As a final note, the resultant binary will not work on other computers, due to problems in the D compiler.

Install SDL_mixer.

Compile with "make". The bulletML libraries will give a few warnings. Ignore them.

Known Issues:

The compiler is non-opensource.
<<less
Download (4.4MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1251 downloads
pam-telecenter 0.3pre1

pam-telecenter 0.3pre1


pam-telecenter is a PAM module that provides remote authentication with roaming and pseudo-user accounts to telecenters. more>>
pam-telecenter is a PAM module that provides remote authentication with roaming and pseudo-user accounts to telecenters.
Roaming is only supported through PostgreSQL.
Compiling and installing pam-telecenter:
If youre using Debian GNU/Linux, you can install the libpam-telecenter downloading it from http://softwarelivre.rits.org.br . This package will be added in the distribution soon.
If youre not using Debian GNU/Linux, follow these steps:
Check if youve libpq3 (PostgreSQL C client library), gcc (to compile the
library), PAM library and a system configured to use it.
Run make under its directory. If it fails maybe youll need to change the
Makefile, if you dont know how paste the output in a message and contact us
at: tech@rits.org.br.
The make output, will show you something like:
gcc -Wall -I. -I/usr/include/postgresql -c -o db_pgsql.o db_pgsql.c
gcc -Wall -I. -I/usr/include/postgresql -c -o pam_telecenter.o pam_telecenter.c
gcc -shared -o pam_telecenter.so db_pgsql.o pam_telecenter.o -lpam -ldl -lpq
Check if under /lib/security there are a lot of pam_anything.so, if its empty or the directory doesnt exist, youll need to check where your OS store the PAM modules. Hint: Find for pam_unix.so.
Listing the current directory, now it has pam_telecenter.so. Copy this file to
/lib/security/ or the other directory as explained above.
Enhancements:
- This pre-release contains "logout" register support (in tests yet), uses autotools for building, and is suitable for developers or experienced administrators only.
<<less
Download (0.28MB)
Added: 2006-02-08 License: GPL (GNU General Public License) Price:
1353 downloads
Dragon Hunt 3.56

Dragon Hunt 3.56


Dragon Hunt is an extensible Python RPG. more>>
Dragon Hunt game is an extensible Python RPG.

Graphical Role-playing game. Investigate the rumors of monsters attacking a town.

This program is under the GPL, which gives you the right to the source code as long as you only use it in certain ways.

<<less
Download (0.83MB)
Added: 2007-05-06 License: GPL (GNU General Public License) Price:
905 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5