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
#!/bin/bash | |
# {MicroHOWTO|Script} to setup a NetworkManager controlled openvpn connection | |
# OVPN Config file is the parameter to the script (no checks, blind faith) | |
OVPN_CONF="$1" | |
# Install the requirements if not available | |
# SUDO REQUIRED | |
sudo apt install -y openvpn network-manager-openvpn # Debian 10/*buntu 20.04 and later | |
# yum -y install openvpn NetworkManager-openvpn # RHEL 7/Rocky 7/Fedora ?? and later |
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
# Laravel systemd queue worker unit template | |
# ---------------------------------- | |
# | |
# /etc/systemd/system/[email protected] | |
# Config at /etc/laravel-queue-${INSTANCE}.conf | |
# | |
# To enable an instance of this service: | |
# - Create a conf file /etc/-laravel-queue-SOME_NAME.conf which contains: | |
# - LARAVEL_USER= (required) | |
# - LARAVEL_GROUP= (required) |
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
====== Raspbian and Armbian based manual instructions ====== | |
The prebuilt images are ArchLinux based, but for various reasons, it can be helpful to step to Armbian or Raspbian. These distributions do support other or sometimes better the different onechip computers. For CHIP, check out the [[other:chip|ChiPirate-BOX: the chipest and cheapest Pirate-BOX ever]] manual. It contains some additional hints. | |
After everything is correctly setup, the following parameters are valid: | |
* IP Address via wifi: 192.168.77.1 (use ssh) | |
* SSID: PirateBox - Share Freely | |
* IP Range: 192.168.77.10 - 192.168.77.250 | |
* Hostname: piratebox.lan |
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
[ | |
[ | |
{ | |
"a": 7 | |
}, | |
"Tab", | |
"Q", | |
"W", | |
"F", | |
"P", |
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
{ | |
"title": "control grave accent (backtick) posts escape", | |
"rules": [ | |
{ | |
"description": "Post Escape if Left Ctrol + grave_accent_and_tilde (backtick) is pressed.", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "grave_accent_and_tilde", |
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
[ | |
{ | |
"backcolor": "#ffffff", | |
"name": "Hybridized Palm 3245ww in White with just a dot", | |
"author": "Samveen" | |
}, | |
[ | |
{ | |
"x": 1, | |
"a": 7, |
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
[ | |
{ | |
"name": "Hybridized Palm 3245ww in White with dot", | |
"author": "Samveen" | |
}, | |
[ | |
{ | |
"x": 1, | |
"a": 7, | |
"f": 6, |
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
[ | |
{ | |
"backcolor": "#414141", | |
"name": "Hybridized Palm 3245ww", | |
"author": "Samveen", | |
"plate": true | |
}, | |
[ | |
{ | |
"x": 1, |
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
# -*- coding: utf-8 -*- | |
""" | |
A perl Data.Dumper clone for Python | |
Author: [email protected] | |
2011-07-08 | |
""" | |
#!/bin/env python | |
import sys | |
from types import * |
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
[ | |
{ "cputype": "Intel(R) Xeon(R) CPU E5-2430 v2 @ 2.50GHz", "currstate": "shell", "groups": "uatprovision,ilo,AllRackA1", "ip": "10.18.16.28", "memory": "32010MB", "node": "spare01-a1", "rack": "", "serial": "XNSH", "status": "booting", "statustime": "08-07-2015 19:53:38", "unit": "01" }, | |
{ "cputype": "Intel(R) Xeon(R) CPU E5-2430 v2 @ 2.50GHz", "currstate": "shell", "groups": "uatprovision,ilo,AllRackA1", "ip": "10.18.16.27", "memory": "32010MB", "node": "spare03-a1", "rack": "", "serial": "XNTH", "status": "booting", "statustime": "08-07-2015 19:55:40", "unit": "03" }, | |
{ "cputype": "Intel(R) Xeon(R) CPU E5-2430 v2 @ 2.50GHz", "currstate": "shell", "groups": "uatprovision,ilo,AllRackA1", "ip": "10.18.16.26", "memory": "32010MB", "node": "spare05-a1", "rack": "", "serial": "XRES", "status": "booting", "statustime": "08-07-2015 19:57:42", "unit": "05" }, | |
{ "cputype": "Intel(R) Xeon(R) CPU E5-2430 v2 @ 2.50GHz", "currstate": "shell", "groups": "uatprovision,ilo,AllRackA1", "ip": "10.18.16.25", "memory": "32010M |