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 | |
| device=/dev/video2 | |
| amixer -c stk1160mixer sset Line unmute cap | |
| vlc -vvv --color --input-slave=alsa://pulse --live-caching=300 \ | |
| --v4l2-standard=PAL --deinterlace-mode=yadif \ | |
| --video-filter=deinterlace "v4l://${device}" |
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 | |
| import sys | |
| import csv | |
| import vobject | |
| import re | |
| whitespace = re.compile('\s+') | |
| numberCleaner = re.compile('^.*?(\d+).*$') | |
| customerIdFormat = re.compile('^\S*?\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
| extern crate multimap; | |
| use std::hash::Hash; | |
| use multimap::MultiMap; | |
| fn main() { | |
| let mut mmap = MultiMap::new(); | |
| mmap.insert(1, 'a'); | |
| mmap.insert(1, 'a'); |
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 bash | |
| set -eu | |
| esp_disk="/dev/nvme0n1" | |
| esp_part="2" | |
| declare -A bins | |
| bins["arch/linux-signed.efi"]="Linux" | |
| bins["arch/linux-fallback-signed.efi"]="Linux Fallback" |
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 sys | |
| import os | |
| import re | |
| import html | |
| closure = 'Abschluss' | |
| kinds = { | |
| 'Lastschrift': 'Lastschrift', |
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
| package tel.schich.carla.collection; | |
| import com.squareup.tape2.QueueFile; | |
| import java.io.IOException; | |
| import java.util.*; | |
| import java.util.concurrent.BlockingQueue; | |
| import java.util.concurrent.TimeUnit; | |
| import java.util.concurrent.locks.Condition; | |
| import java.util.concurrent.locks.Lock; |
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 <stdio.h> | |
| #include <sys/socket.h> | |
| #include <linux/can.h> | |
| #include <linux/can/raw.h> | |
| #include <sys/ioctl.h> | |
| #include <libnet.h> | |
| #include <net/if.h> | |
| #include <sys/socket.h> | |
| #include <stdbool.h> |
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
| Operating system: Linux | |
| 0.0.0 Linux 4.18.0-rc7-mainline #1 SMP PREEMPT Mon Jul 30 02:23:30 UTC 2018 x86_64 | |
| CPU: amd64 | |
| family 6 model 158 stepping 10 | |
| 1 CPU | |
| GPU: UNKNOWN | |
| Crash reason: SIGSEGV /0x00000000 | |
| Crash address: 0x0 |
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 scala.annotation.tailrec | |
| object SudokuSolver { | |
| type IndexGroup = Seq[Int] | |
| def main(args: Array[String]): Unit = { | |
| val undefined = 0 | |
| val domain = (1 to 9).toSet |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using System.Threading.Tasks; | |
| using System.Web; | |
| using RestSharp; | |
| using RestSharp.Authenticators; | |
| using TwitchLib.Client; | |
| using TwitchLib.Client.Events; | |
| using TwitchLib.Client.Models; |