Skip to content

Instantly share code, notes, and snippets.

View lillem4n's full-sized avatar

Lillem4n lillem4n

View GitHub Profile
@lattera
lattera / Article.md
Last active January 22, 2018 16:18
Laptop Review: Purism 15 2K

I received my Purism Librem 15 2K a little less than a week ago. I've been punishing it the last few days, trying to make the most out of it. Even while writing this article, I'm syncing my BitCoin wallet while building Suricata in a bhyve instance.

I bought the 2K version of the Purism Librem 15. Purism was clearing out old stock. I had enough BitCoin to be able to buy the Librem 15 2K fully in BitCoin.

Previous Laptop

My previous laptop was a Lenovo Y50-70 with 16GB RAM. I bought it two years ago to have a dedicated laptop on which to develop HardenedBSD. Around a month later, I switched employers and ended up using my personal laptop for HardenedBSD development, personal use, and work. That laptop has been through hell and back. The back plate is missing multiple screws and the fan is slowly going out. It was a great laptop, with a quadcore Haswell Intel CPU. Speedy and powerful. I'm about to go back to school, so now that I have the Purism Librem 15, I've put

@adhipg
adhipg / countries.sql
Created January 12, 2012 11:41
Sql dump of all the Countries, Country Codes, Phone codes.
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;