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
config: | |
security.nesting: "true" | |
security.syscalls.intercept.mknod: "true" | |
security.syscalls.intercept.setxattr: "true" | |
user.user-data: | | |
#cloud-config | |
--- | |
apt: | |
sources: | |
# This gives us up-to-date docker-ce. |
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 | |
import abc | |
import argparse | |
import contextlib | |
import io | |
import os | |
import platform | |
import socket | |
import subprocess | |
import sys |
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
#version=DEVEL | |
# Firewall configuration | |
firewall --enabled --service=mdns | |
# X Window System configuration information | |
xconfig --startxonboot | |
repo --name="fedora" --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch | |
repo --name="updates2" --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch | |
# System authorization information | |
auth --useshadow --enablemd5 | |
# System keyboard |
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 : indent | |
version : 2.2.11 | |
release : 1 | |
source : | |
- http://debian.lagis.at/debian/pool/main/i/indent/indent_2.2.11.orig.tar.gz : aaff60ce4d255efb985f0eb78cca4d1ad766c6e051666073050656b6753a0893 | |
homepage : https://www.gnu.org/software/indent/ | |
license : | |
- GPLv2 | |
summary : C language source code formatting program | |
description : | |
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 | |
import argparse | |
import struct | |
def main() -> None: | |
parser = argparse.ArgumentParser() | |
parser.add_argument( | |
'appimage', metavar='APPIMAGE', help="Appimage file to query", | |
type=argparse.FileType(mode="rb")) |
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
.PHONY: all clean | |
CFLAGS += -Wall | |
all: oops | |
clean: | |
rm -f oops |
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/sh | |
if [ "$(id -u)" != 0 ]; then | |
echo "This script requires root access, run it with sudo please" | |
exit 1 | |
fi | |
core_snap=/var/lib/snapd/snaps/ubuntu-core_122.snap | |
case $(md5sum $core_snap | cut -d ' ' -f 1) in | |
8170579dcd67c5eceb151695c21cdab1) | |
echo "Patching ubuntu-core snap to include hostfs mount point" | |
tmp="$(mktemp -d)" |
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/sh | |
# Basic backlight data collection script for Lantern | |
# Written by Zygmunt Krynicki <[email protected]> | |
set -x | |
id=$(cat /proc/sys/kernel/random/uuid) | |
dest=$(mktemp -d --suffix=-lantern) | |
lspci > "$dest/lspci" | |
lsmod > "$dest/lsmod" | |
uname -a > "$dest/uname" | |
if [ -e /etc/os-release ]; then |
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
class JobCollection: | |
@signal | |
def job_added(self, job): | |
""" signal sent whenever a job is added """ | |
class SomethingElse: | |
def __init__(self, collection): | |
col.job_added.connect(on_job_added) | |
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
class NS: | |
PASSTHRU = frozenset(('__name__', '__qualname__', '__doc__', '__module__')) | |
def __init__(self, data=None): | |
if data is None: | |
data = {} | |
self.data = data | |
def __setitem__(self, name, value): |
NewerOlder