I hereby claim:
- I am mayeu on github.
- I am mayeu (https://keybase.io/mayeu) on keybase.
- I have a public key ASB-IMXKlhlvfVlRpHLQDLgHWRegd2zvUwOuJpkTk4duLgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
As a good crypto nerd, I usually use an entirely encrypted linux FS: / but also
/boot using grub LUKS support. It's a good setup but it's not perfect, the BIOS and
the bootloader are not protected.
I recently got a USBArmory and I wanted to apply the same (or a better) setup.
I found some useful links but no clear howto. So this is my setup.
| - hosts: localhost | |
| gather_facts: false | |
| tasks: | |
| - cs_instance: | |
| name: ansible-test-yourte | |
| state: deployed | |
| template: Linux Ubuntu 16.04 LTS 64-bit 50G Disk (2016-10-20-85bb6c) | |
| zone: CH-DK-2 | |
| service_offering: Micro | |
| ssh_key: "Mayeu - Shub-Niggurath" |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
| -- Send currently selected Mail.app message to OmniFocus 2 quick entry box, then archive it | |
| -- Archive behaviour found at: http://vemedio.com/blog/posts/my-archive-email-apple-script | |
| tell application "Mail" | |
| set theSelectedMessages to selection | |
| set the selected_message to item 1 ¬ | |
| of the theSelectedMessages | |
| set message_id to the message id of the selected_message | |
| set my_subject to the subject of the selected_message | |
| set message_url to "message://%3c" & message_id & "%3e" |
| with import <nixpkgs> {}; | |
| stdenv.mkDerivation { | |
| name = "minimal"; | |
| src = "./" ; | |
| installPhase = '' | |
| mkdir -p ${out}/test # <-- that's the bug, ${} is nix variable, out is not a nix variable | |
| ''; | |
| } |
| --- | |
| - host: localhost | |
| sudo: yes | |
| tasks: | |
| - name: install plein de paquets | |
| apt: package={{ item }} state=present update_cache=yes | |
| with_items: | |
| - paquet1 | |
| - paquet2 | |
| - ... |
| # /etc/network/interfaces | |
| # | |
| auto lo | |
| iface lo inet loopback | |
| # device: eth0 | |
| iface eth0 inet manual | |
| # IPv4 bridge | |
| # (connect ONLY your firewall/router KVM instance here, this is the WAN device!) |
| (function() { | |
| /* Bookmarklet that displays the actual podcast feed | |
| * URL when ran on an iTunes store page for a podcast. | |
| * | |
| * Simply grabs the Artist ID from the URL and does | |
| * an iTunes Store API lookup to get the hidden (original) | |
| * podcast feed URL (whatever format that may be in). | |
| * | |
| * @author: Darian Moody <[email protected]> | |
| * @date: Working as of Sun.22.Apr.2012 |