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/zsh -f | |
| set -e | |
| HOSTNAME=$1 | |
| PASSWORD=toor | |
| VMNAME=$HOSTNAME | |
| FILE="$VMNAME.img" | |
| SIZE=2G | |
| ARCH=amd64 |
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
| {-# LANGUAGE OverloadedStrings #-} | |
| import Prelude hiding (FilePath) | |
| import Control.Monad | |
| import Data.Maybe | |
| import Data.List | |
| import qualified Data.Text as T | |
| import qualified Data.ByteString.Lazy.Char8 as C | |
| import Text.Feed.Types | |
| import Text.Feed.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
| <?php | |
| define('RCUBE_CONFIG_DIR', '/var/lib/roundcube/config/'); | |
| define('RCUBE_PLUGINS_DIR', '/var/lib/roundcube/plugins/'); | |
| require_once '/var/lib/roundcube/program/lib/Roundcube/bootstrap.php'; | |
| $rcube = rcube::get_instance(rcube::INIT_WITH_DB | rcube::INIT_WITH_PLUGINS); | |
| $imap = $rcube->get_storage(); |
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 sys | |
| import re | |
| """ | |
| Loops over a file with configuration in the form of | |
| #key = value | |
| and produces a yaml file suitable for ansibles defaults/main.yml | |
| """ | |
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
| from mediagoblin.meddleware import BaseMeddleware | |
| from mediagoblin.tools.response import redirect | |
| class PrivateMeddleware(BaseMeddleware): | |
| """Private Meddleware | |
| Redirects requests by unauthenticated clients to the login form. | |
| """ | |
| public_views = [ |
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
| /* | |
| This has been generated by the overpass-turbo wizard. | |
| The original search was: | |
| “(railway=station or railway=tram_stop or highway=bus_stop) around Semperdepot” | |
| */ | |
| [out:json][timeout:25]; | |
| // adjust the search radius (in meters) here | |
| {{radius=600}} | |
| // gather results | |
| ( |
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
| open Lwt.Infix | |
| open Websocket_lwt | |
| open Ppx_lwt | |
| open Frame | |
| let ip_port = ("127.0.0.1", 3000);; | |
| let clients = Hashtbl.create 10;; | |
| let section = Lwt_log.Section.make "stream_shape";; | |
| Lwt_log.(add_rule "*" Debug);; |
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
| # connection_plugin for Ansible and FreeBSD jails, connecting | |
| # through ssh on the jailhost. | |
| # inspiration: https://github.com/austinhyde/ansible-sshjail | |
| from ansible.errors import AnsibleError | |
| from ansible.plugins.connection import ConnectionBase | |
| from ansible.plugins.connection import ssh | |
| try: | |
| from __main__ import display | |
| except ImportError: |
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 <IRremote.h> | |
| #include <Keypad.h> | |
| const byte ROWS = 4; | |
| const byte COLS = 4; | |
| // define the symbols of the buttons on the keypads. | |
| const char hexaKeys[ROWS][COLS] = { | |
| {'1','2','3','A'}, | |
| {'4','5','6','B'}, |
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
| #!/usr/bin/env python3 | |
| """ | |
| A litte tool to generate a .mrconfig file for https://myrepos.branchable.com/ | |
| from a https://gitea.io/ account. | |
| sudo apt install python3 python3-requests | |
| Check possible values for your MR_REPO_TEMPLATE with | |
| $ curl --user ${GITEA_USER}:{$GITEA_PASS} https://${GITEA_HOST}/api/v1/user/repos | jq . | |
| """ |
OlderNewer