Matt Hines.
Software Engineering Student.
London.
This blog is mainly to display my different projects, as well as a place for me to share and discuss technology news.
TechWeekEurope UK: Super Stealthy Backdoor Spreads To Hit Hundreds Of Thousands Of Web Users. http://goo.gl/mag/P3VWCKt
According to this writeup, new features include the ability to use SSD drives as caches for other storage devices, the ability for multiple sockets to attach to a single TCP or UDP port with kernel-level loadbalancing, btrfs gains the ability to use RAID-5 and RAID-6, and support for new hardware.
Do you have a lot of data, but not much money? Check out these storage servers designed by Backblaze…..they fit 45 (!) 3.5” SATA drives in a 4RU case. That’s 180TB, if you use 4TB drives, or 135TB, using 3TB drives.
The plans, including the CAD drawings, are available freely, and the servers can be built quite cheaply, especially when compared to commercial solutions.
If you’re not feeling that adventurous, you can buy pre-built machines from Protocase for around $5000, not including the drives. While that’s a lot of money for a desktop, it’s nothing compared to what EMC or NetApp would charge for the same amount of storage.
I’ve been using these “pods” in production, serving streaming video content, for more than a year. They’re really nice, especially using a modern filesystem like btrfs (in Linux) or ZFS (in BSD or Solaris).
Engadget: BeagleBone Black packs 1GHz ARM CPU, 512MB RAM for just $45 (video) http://goo.gl/mag/FOHVxEF
CNET: FBI seeks crowdsourcing help in Boston bombing case: ID these two men! http://goo.gl/mag/EC9m7fQ
TechWeekEurope UK: Malwarebytes Update Kills Thousands Of Computers. http://goo.gl/mag/LbsuS2D
Suppose you have a secret you wish to transmit to $n$ people, but in such a way that all of those $n$ people must collaborate in order for the secret to be revealed. In other words, it must not be possible for even $n-1$ of those people to obtain the secret, even partially, if the $n$th person…
Man, no sleep for me tonight! working from 2-4am on scheduled maintenance at work, then possibly having a 2hr lie down before off to the office!
// Author: Nadiyah Marsela
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class CaesarCipher
{
public static void main(String[] args) throws Exception
{
BufferedReader scan = new BufferedReader(new InputStreamReader(System