|
26
|
DonationCoder.com Software / Mircryption / blowssi - mircryption compat for irssi - v0.2.0 - Jan 03, 2011
|
on: March 29, 2011, 01:57:29 PM
|
blowssi is a an irssi cryptography script. Download from official web page: http://linkerror.com/blowssi.cgiKey features: - Compatible with mircryption and FiSH.
- Supports both cbc and ecb encryption modes. (to use cbc encryption just prefix the key with cbc: )
- Blowssi is Free (both as in freedom and as in beer) software (licensed under the GNU GPL v3)
- Blowssi will work on any platform perl and irssi work on.
- dh1080 key exchange (since 0.2.0)
Requirements: - perl (...duh)
- Crypt::ircBlowfish (see bundeled zip file, but also available from donationcoder.com)
- Crypt::ircDH1080 (see bundled tar.gz file)
- Crypt::CBC (on gentoo you can just: emerge dev-perl/crypt-cbc)
- MIME:Base64 (on gentoo you can just: emerge perl-MIME-Base64 (which is a virtual package) or emerge perl-core/MIME-Base64 though you probably already have it.)
- irssi (... duh!)
Installation: - First make sure all requirements are installed (see above).
- To install, just put the script in ~/.irssi/scripts and put this in your ~/.irssi/startup :
- /load ~/.irssi/scripts/blowssi.pl
More detailed installation instructions: http://mewbies.com/how_to...si_for_irssi_tutorial.htm
|
|
|
|
|
37
|
Main Area and Open Discussion / Living Room / Re: which is more important, system ram or video ram?
|
on: February 07, 2011, 12:50:14 PM
|
|
It all depends on what you want to do.
If you're not a gamer or 3d artist, then you don't have to think twice about it. System ram for sure, it's general purpose, and benefits almost any application. It allows you to do more heavy multitasking, etc,...
If you plan on playing games, or work in anything else 3d (3dsmax/maya/blender/etc) the story changes a bit. The amount of video ram will be a key factor on how much (3d) stuff you can show on the screen at the same time. (Amount of vertices, texture memory, etc,...) this is important for games, but also for anything else 3d. (Say you are doing detailed architectural design or something in a 3d application, you will start feeling it when your card is showing more geometry on the screen than it can handle) - Unfortunately, it gets more complicated in this arena. You also want to look at the gpu and memory clock rates on your video card. - If you plan to get a video card you should be looking at gpu and memory clock rate, and amount of memory.
Almost any modern video card, integrated or not, will be able to handle the native resolutions for most monitors today, so if you're not doing anything 3d i wouldn't even worry about it.
|
|
|
|
|
39
|
Other Software / Developer's Corner / Re: Need Advice on MySQL Server Tuning
|
on: February 03, 2011, 02:41:03 PM
|
Besides what was already mentioned... * If EXPLAIN shows it's using filesort, you might want to increase your sort buffer sizes. * If you have some queries that repeat alot, enable query cacheing... it will turn those queries into lightning 
|
|
|
|
|