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 | |
| echo -n "URL: " | |
| read url | |
| echo -n "Username: " | |
| read name | |
| echo -n "Image URL: " | |
| read image |
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 Search -> Discord | |
| // @version 0.2.1 | |
| // @author tbodt, improved by jD91mZM2 | |
| // @match https://www.google.se/* | |
| // @match https://www.google.com/* | |
| // @match https://www.google.ee/* | |
| // @grant GM_xmlhttpRequest | |
| // @require https://code.jquery.com/jquery-3.2.0.min.js | |
| // @require https://gist.github.com/raw/2625891/waitForKeyElements.js |
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 Find replace! | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description tbodt's idea, but executed poorly | |
| // @author You | |
| // @match http://*/* | |
| // @match https://*/* | |
| // @grant none | |
| // ==/UserScript== |
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
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
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 syscall; | |
| use std::{ | |
| io::prelude::*, | |
| mem, | |
| net::TcpStream, | |
| os::unix::io::AsRawFd, | |
| slice | |
| }; |
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 java.util.ArrayList; | |
| public class Main { | |
| public static void main(String[] args) { | |
| System.out.println(answer(new int[] {1, 1, 1})); | |
| System.out.println(answer(new int[] {1, 2, 3, 4, 5, 6})); | |
| int[] array = new int[2000]; | |
| for (int i = 0; i < array.length; i += 1) { | |
| array[i] = i % 6 + 1; | |
| } |
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
| use std::{ | |
| io::prelude::*, | |
| os::unix::net::{UnixListener, UnixStream}, | |
| thread | |
| }; | |
| fn main() { | |
| let server = UnixListener::bind("/tmp/uds-demo").unwrap(); | |
| thread::spawn(move || { | |
| let (mut stream, _addr) = server.accept().unwrap(); |
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
| abjurer +13 = nowhere | |
| Acts -08 = sulk | |
| acts -08 = sulk | |
| Adas +08 = ilia | |
| adder +01 = beefs | |
| adds +01 = beet | |
| Aden +10 = Knox | |
| advt +11 = loge | |
| ahem +07 = Holt | |
| ails +06 = gory |
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
| rust = self.latest.rustChannels.stable; | |
| buildRustPackage = self.rustPlatform.buildRustPackage.override { | |
| cargo = rust.cargo; | |
| rustc = rust.rust; | |
| }; |
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
| monitors="$(xrandr | grep -o '[0-9]*x[0-9]*[+-][0-9]*[+-][0-9]*')" | |
| # Get the location of the mouse | |
| eval "$(xdotool getmouselocation --shell --prefix mouse_)" | |
| while read -r line; do | |
| if [[ "$line" =~ ([0-9]+)x([0-9]+)([+-][0-9]+)([+-][0-9]+) ]]; then | |
| specs="${BASH_REMATCH[0]}" | |
| width="${BASH_REMATCH[1]}" | |
| height="${BASH_REMATCH[2]}" | |
| x="${BASH_REMATCH[3]}" |
OlderNewer