Note, this is different from app-authz-uma-photoz
vagrant up
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "Remotes array", | |
"type": "array", | |
"items": { | |
"title": "Remote", | |
"type": "object", | |
"properties": { | |
"name": { | |
"description": "The name of this remote machine", |
wget --recursive --no-parent --no-host-directories \ | |
--reject 'index.html*' \ | |
--exclude-directories 'centos/2*' \ | |
--exclude-directories 'centos/3*' \ | |
--exclude-directories 'centos/4*' \ | |
--exclude-directories 'centos/5*' \ | |
--exclude-directories 'centos/6*' \ | |
--exclude-directories 'centos/7' \ | |
--reject 'HEADER.html' \ | |
--exclude-directories 'centos/HEADER.images' \ |
(ns snort-parser.core | |
(:require [instaparse.core :as insta])) | |
(def variables-parser | |
(insta/parser | |
"variable-definitions = variable-definition (newline variable-definition)* newline? | |
variable-definition = var | portvar | ipvar | |
var = 'var' whitespace variable-name whitespace var-value | |
var-value = #'\\S+' |
Description='Sample netctl config for Wireless@SGx' | |
Interface=wlp2s0 | |
Connection=wireless | |
Security=wpa-configsection | |
ESSID=Wireless@SGx | |
IP=dhcp | |
WPAConfigSection=( | |
'ssid="Wireless@SGx"' | |
'key_mgmt=WPA-EAP' | |
'eap=PEAP' |
#!/bin/sh | |
# Taken from https://openwrt.org/docs/guide-user/services/dns/dot_dnsmasq_stubby | |
# Provided so it's easy to run from command line | |
# Install packages | |
opkg update | |
opkg install dnsmasq stubby | |
# Enable DNS encryption |
if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then | |
exec startx | |
fi |
/* See LICENSE file for copyright and license details. */ | |
/* | |
* appearance | |
* | |
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html | |
*/ | |
static char *font = "SauceCodePro Nerd Font Mono:style=Regular:pixelsize=13:antialias=true:autohint=true"; | |
static int borderpx = 2; |
! main x stuff | |
Xft.autohint: 0 | |
Xft.lcdfilter: lcddefault | |
Xft.hintstyle: hintslight | |
Xft.hinting: true | |
Xft.antialias: true | |
Xft.rgba: rgb | |
Xft.dpi: 96 |