Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:k (Score 1) 62

It was a foregone conclusion that lucene would trounce the others, if you ask me. And comparing sqlite vs lucene is slightly absurd, since most people with a clue already uses lucene on top of sqlite (and mysql as well) to get good search results.
Encryption

Submission + - A demonstration of the Patterson cipher

An anonymous reader writes: In a followup to the news last week that the 200 year old cipher constructed by Robert Patterson to President Thomas Jefferson was cracked, here is a detailed explanation of the cipher and an online method to encrypt text in the same manner.

Comment Re:Quit Whining (Score 1) 423

Yes, that's why I said you can use SQL syntax, but it's not a proper SQL database -- far from it. It's the simplest things that give it away, like the fact that you can define a CHAR field with 10 chars, and SQLite will happily store 255 chars in the field anyway ;)

But it is fast. Very fast. I've measured it, and compared it to proper databases. For my main web site http://www.magicode.org/, I use SQLite 3 with prepared statements. It's lightning. (Comments are stored in mysql5 though, as I access it through my admin, which is on another host, and I would have to ftp download and ftp upload the sqlite-base if I wanted to admin it remotely).

It's an alternative, and a pretty good one, I think.

Comment Fantastic (Score 4, Interesting) 275

Having kids (5 and 9), I would have to say this is fantastic. Games like Super Mario Galaxy are too hard for my youngest, and I constantly have to step in and help with the levels. Now, Super Mario Galaxy is quite fun, but any game gets quite dull after having to go through the same stuff over and over. Let's have cheat/demo modes and let the kids have fun. :)

By the way, my youngest have no problems with Super Mario Sunshine - it is a much easier game for kids. Maybe it's the controller?

Slashdot Top Deals

There are two ways to write error-free programs; only the third one works.

Working...