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 | |
[email protected] | |
PASSWORD=123456 | |
INVITE=0xZXblUU30hYo1vJ | |
CHANNEL=172018499005317120 | |
login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ |
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 | |
[email protected] | |
PASSWORD=123456 | |
INVITE=0xZXblUU30hYo1vJ | |
login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ | |
| jq -rc .token | xargs |
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 | |
login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ | |
| jq -rc .token | xargs | |
} | |
join() { | |
curl --request POST https://discordapp.com/api/v6/invite/$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
#!/usr/bin/env bash | |
function login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ | |
| jq -r .token | |
} | |
function join() { | |
curl --request POST https://discordapp.com/api/v6/invite/$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
#!/usr/bin/env bash | |
function login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ | |
| jq -r .token | |
} | |
function join() { | |
curl --request POST https://discordapp.com/api/v6/invite/$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
#!/usr/bin/env bash | |
function login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ | |
| jq -r .token | |
} | |
TOKEN= login "[email protected]" "123456" |
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 | |
function login() { | |
curl --data "{\"email\":\"$1\", \"password\": \"$2\"}" \ | |
https://discordapp.com/api/v6/auth/login \ | |
--header "Content-Type:application/json" -s \ | |
| jq -r .token | |
} | |
TOKEN= login "[email protected]" "123456" |
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
true && make deps || true | |
make[1]: Entering directory '/etc/nixos/pkgs/next/next' | |
sbcl --non-interactive --no-userinit \ | |
--eval '(require "asdf")' \ | |
--load quicklisp/setup.lisp \ | |
--eval '(ql:quickload :trivial-features)' \ | |
--load next.asd \ | |
--eval '(ql:quickload :next)' | |
This is SBCL 1.4.13.nixos, an implementation of ANSI Common Lisp. | |
More information about SBCL is available at <http://www.sbcl.org/>. |
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
## NOTE: This file is automatically generated by Mail-in-a-Box. | |
## Do not edit this file. It is continually updated by | |
## Mail-in-a-Box and your changes will be lost. | |
## | |
## Mail-in-a-Box machines are not meant to be modified. | |
## If you modify any system configuration you are on | |
## your own --- please do not ask for help from us. | |
upstream php-fpm { | |
server unix:/var/run/php/php7.0-fpm.sock; |
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
<?php | |
require("vendor/autoload.php"); | |
use duzun\hQuery; | |
function load_url($name) { | |
return hQuery::fromUrl(("http://www.primewire.ag/index.php?search_keywords=" . urlencode($name))); | |
} | |
function load_paginated($name, $page) { | |
return hQuery::fromUrl(("http://www.primewire.ag/index.php?search_keywords=" . urlencode($name). "&page=" . $page)); |