Laptop I'd love to buy

  • support for 16GB of RAM
  • contact smartcard reader
  • ~2kg weight
  • 11-14" matte, non-glossy screen
  • good keyboard, with separate [home], [end], [insert], [delete] buttons
  • screen resolution of >=1440
  • HDMI
  • at least 2x USB2.0 and 1x USB3.0
  • no optical drive
  • no thunderbolt
  • no firewire
  • TPM
  • HSDPA modem

Is there something similar that you recommend for me to buy/build ?

29c3

CCC 

I bought a book

I bought a book I didn’t read before. On the Internet. Paying person I don’t personally know, basing on his reputation only. Believing he would send me a paper copy of his words from the remote land I’ve never even visited. On the other hand he trusted me to write this review and gave me the discount for the very fact. And yet everything worked out pretty well. I transferred the money, got the book, read it and I’m writing the promised review right now. [Read More]

How to build minimalistic REST server in .Net

Install “Microsoft ASP.NET Web API Self Host” and all of its dependencies via NuGet. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Web.Http; using System.Web.Http.SelfHost; namespace resttest { public class ExampleData { public int Id { get; set; } } public class ExampleController : ApiController { // /api/job public IEnumerable<ExampleData> Get() { return new List<ExampleData>() { new ExampleData(){ Id = 2 }, new ExampleData(){ Id = 4 } }; } // /api/job/3 public ExampleData Get(int id) { return new ExampleData() { Id = 3 }; } } class Program { static void Main(string[] args) { var configuration = new HttpSelfHostConfiguration("http://localhost:1337"); //Setup the routes configuration. [Read More]

Boosting your WiFi signal with cooking utensils

I love cooking and well made utensils. That is a part of the solution. And the problem ? Boosting WiFi signal. Get WiFi USB dongle and put it where the bowl’s focal point is. Or near it, wherever you get strongest signal boost. I get up to 2x stronger reception with the antenna presented.

/images/boosting-your-wifi-signal/IMG_0230.jpg

Enabling wireless on Dell Latitude 2110 under CrunchBang Linux

Update 2023: crunchbang is no longer a thing, replaced by bunsenlabs Please note that I no longer host this kernel as it is very old and also Crunchbang is no more.** Some time ago I got my hands on CrunchBang Linux distro, which is great. The only thing there that could be better is that my Broadcom BCM43224 WiFi card is not working. But I’m used to it, as many Linux distros do not provide it. [Read More]

Bitcoin wallet recovery using Photorec

Ever cried over damaged disk holding your bitcoin wallet ? Ever formatted storage holding a perfectly valid and the only copy of your wallet.dat ? Yes, me too. Well, there’s Photorec, an opensource file recovery software. It just skips the partition and filesystem info and scans for plain file signatures on the disk. Unfortunately it does not recognize Bitcoin’s Wallet as a file format. Bitcoin wiki states that wallet.dat is just a good old BerkeleyDB. [Read More]