apt-get install strongswan strongswan-pki iptables-persistent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <inttypes.h> | |
#include <stdarg.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
static void outb(char c, char *target, const size_t length, const size_t index) { | |
if (target && index < length) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XMonad | |
import qualified XMonad.StackSet as S | |
import XMonad.Config.Desktop | |
import XMonad.Layout.WindowNavigation | |
import XMonad.Layout.Minimize | |
import XMonad.Layout.Reflect | |
import XMonad.Actions.GroupNavigation | |
import XMonad.Actions.CycleWS |