Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:We use PGP whitelists, and don't get spam. (Score 1) 204

This is a great cause, and I'm sure it will help a lot, but it won't completely eliminate spam. If your contacts are phished or are running malware then you will start receiving mail from your trusted contacts.

A good example of this happening right now is the spam that happens on facebook. The only people allowed to write on my wall are people that I personally know (just one step away in the ring of trust) and yet I have still received spam.

Comment Re:NAT! (Score 2) 460

Not to mention, unless I'm much mistaken a NAT can support 65536 connections at maximum (number of valid ports for outgoing connections).

I believe that with TCP the limit is 65536 concurrent connections to one host and port. In other words, you can use the same source port for two concurrent, outgoing connections at the same time as long as the destination is different. (This is similar to the principle of how more than one connection to a single port on a server work without problems as long as the client host/ip combination is different.)

Comment Re:Worth every penny ... (Score 1) 377

There are thousands of files that get openned when an app like Firefox for Photoshop starts running, and all of those files get read into memory and checked ... BEFORE they are passed along to the app calling them. Unless you invent time bending or something, this will always end up taking a very noticeable amount of time, making your computer seem slow.

This isn't time bending, but it might be mind bending. Use a kernel hook to check files as they are written and you don't have to do anything when they are read.

From there you can get more sophisticated and queue up files that are written and process that queue as an idle task while the data is still in memory cache. A simple read hook could do immediate scanning of files that are requested before they have been processed by the idle job.

This idea was invented by Shampoo.

Slashdot Top Deals

The key elements in human thinking are not numbers but labels of fuzzy sets. -- L. Zadeh

Working...