This file contains 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": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch", | |
"type": "debugpy", | |
"request": "launch", | |
"program": "${file}", | |
"console": "integratedTerminal" | |
} |
This file contains 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
// ==UserScript== | |
// @name Hide Porkbun Handshake TLDs | |
// @description Hide Handshake TLDs from Pornbun's all-extensions page. | |
// @namespace http://seenet.ca/ | |
// @version 1.0 | |
// @match https://porkbun.com/products/domains | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=porkbun.com | |
// @grant none | |
// ==/UserScript== |
This file contains 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 config | |
import ( | |
"net/http" | |
"regexp" | |
"strings" | |
) | |
// idPatterns describes patterns of IDs in URLs. These patterns are matched | |
// against an entire URL. These patterns are used as given without any |
This file contains 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 java.io.IOException; | |
import java.io.InputStream; | |
import gnu.io.CommPortIdentifier; | |
import gnu.io.SerialPort; | |
public class DisconnectTest | |
{ | |
private static final int SLEEP_AFTER_DISCONNECT = 2_000; | |
public static void main(String[] args) throws Exception |
This file contains 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 | |
/** | |
* Plugin Name: Comment Suppressor | |
* Description: Hide comments for anonymous and “Subscriber” users. | |
* Version: 1.0.1 | |
* Author: Samuel Coleman <[email protected]> | |
* License: WTFPLv2 | |
*/ |
This file contains 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 | |
# Configure an Ubuntu system for running Space Engineers. Flagrantly untested. | |
# Seriously, I haven't even run this once. | |
# TODO: Report progress to the web UI. | |
# TODO: Error checking/early failure. | |
# User data should contain: | |
# |
This file contains 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
modifyValidatorValue: function (fieldName, validatorKey, key, value) { | |
if (helper.isNullOrUndefined(fieldName) | |
|| helper.isNullOrUndefined(validatorKey) | |
|| helper.isNullOrUndefined(key) | |
|| helper.isNullOrUndefined(value)) { | |
return; | |
} | |
// Iterate over fields | |
var field; |
This file contains 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
# In retaliation to https://blog.theodo.fr/2018/03/regex-warrior/. | |
# | |
# Usage: | |
# | |
# awk -v FS=';' -v OFS=';' -f mock.awk <mock.csv | |
# “NR” is the number of the record we're operating on; effectively a sequential | |
# counter. We don't want to filter on the first row, which is the header. | |
NR > 1 && $7 == "false" { | |
next; |
This file contains 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: whatpulse | |
Section: misc | |
Priority: optional | |
Homepage: https://whatpulse.org/ | |
Standards-Version: 3.9.2 | |
Depends: libqtcore4, libqtwebkit4, libqt4-sql, libqt4-sql-sqlite, libqt4-script, | |
libssl1.0-dev, libpcap0.8, gksu | |
Description: Dummy package for WhatPulse dependencies. |
This file contains 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
/****************************************************************************** | |
* Copyright 2005 | |
* NetBurner, Inc. | |
* 5405 Morehouse Drive, Ste 200 | |
* San Diego, CA 92121 | |
* | |
* information available at: http://www.netburner.com | |
* | |
* In addition to the rights retained by the authors, you may also use | |
* this code under the terms of the GNU public license. |
NewerOlder