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/bash | |
if [[ "${1}" == "apply" ]]; then | |
runme="patch -Np1" | |
elif [[ "${1}" == "unapply" ]]; then | |
runme="patch -RNp1" | |
else | |
echo "valid options are apply or unapply only" | |
exit 1 | |
fi |
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
#!/usr/bin/env bash | |
# STACK=yourstack PRE=module1 POST=module2 DRYRUN=y bash cdktf_rename_state.sh | |
if [[ "${STACK}" == "" ]]; then | |
echo "Which stack do you wish to operate on?" | |
read stack | |
export STACK=${stack} | |
fi | |
if [[ "${PRE}" == "" ]]; then |
This file has been truncated, but you can view the full file.
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
[2020-03-31T00:05:39.094713+00:00] messenger.INFO: Received message App\Message\CreateMatch {"message":{"App\\Message\\CreateMatch":[]},"class":"App\\Message\\CreateMatch"} [] | |
[2020-03-31T00:05:39.094850+00:00] clash_royale.DEBUG: url ["matches"] [] | |
[2020-03-31T00:05:39.094905+00:00] clash_royale.DEBUG: options {"json":{"playerTags":["#2U2RPVPQ9","#29JLGPVJ8"],"gameMode":"regular"}} [] | |
[2020-03-31T00:05:39.095135+00:00] http_client.INFO: Request: POST https://api.clashroyale.com/v1/matches [] [] | |
[2020-03-31T00:05:39.497721+00:00] http_client.INFO: Response: "200 https://api.clashroyale.com/v1/matches" [] [] | |
[2020-03-31T00:05:39.498074+00:00] clash_royale.DEBUG: response {"tag":"#LGUL2P"} [] | |
[2020-03-31T00:05:39.498227+00:00] messenger.INFO: Sending message App\Message\MonitorMatch with Symfony\Component\Messenger\Transport\AmqpExt\AmqpTransport {"message":{"App\\Message\\MonitorMatch":[]},"class":"App\\Message\\MonitorMatch","sender":"Symfony\\Component\\Messenger\\Transport\\AmqpExt\\AmqpTransport"} [] | |
[2020 |
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
https://www.youtube.com/watch?v=3Bo94G1n8ok | |
https://www.youtube.com/watch?v=rpkDl6UN4a8 | |
https://youtu.be/eXyPjaL8SY0 | |
http://www.youtube.com/watch?v=fyCKoJzKnz8 | |
http://www.youtube.com/watch?v=wNE-8TfJlT4 | |
http://www.youtube.com/watch?v=wFNrVFt3DjE | |
https://www.youtube.com/watch?v=cZYkSc5JG7o | |
https://youtu.be/XtsvWk53KJk | |
https://www.youtube.com/watch?v=4aQfdExvHpc | |
https://youtu.be/uRilGdo9fcQ |
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
#!/usr/bin/env python3 | |
from pprint import pprint | |
import json | |
import requests | |
import time | |
mc = "https://connect.monstercat.com/api" | |
licensed = set() | |
unlicensed = set() |
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
CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS | |
a58ce6b8ec59 ingest-63 91.55% 311.1MiB / 566.9GiB 0.05% 39.1MB / 293kB 0B / 0B 79 | |
4bf7fa777878 ingest-62 98.56% 367.8MiB / 566.9GiB 0.06% 23.1MB / 248kB 0B / 0B 79 | |
ca2549a3782e ingest-61 95.67% 374.9MiB / 566.9GiB 0.06% 19.9MB / 267kB 0B / 0B 79 | |
ac0e58c8e14f ingest-60 95.02% 258.8MiB / 566.9GiB 0.04% 43.6MB / 348kB 0B / 0B 79 | |
7362832b764d ingest-59 89.19% 309.9MiB / 566.9GiB 0.05% 43.5MB / 323kB 0B / 0B 79 | |
0b33bce4e7e7 ingest-58 93.73% 399.3MiB / 566.9GiB 0.07% 43.6MB / 310kB 0B / 0B 84 | |
ea81bc1 |
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
tell application "chatterino" | |
activate | |
end tell | |
tell application "System Events" | |
set myList to {"dasmoo1Das ", "dasmoo1Das dasmoo1Das ", "dasmoo1Das dasmoo1Das dasmoo1Das ", "dasmoo1Das dasmoo1Das dasmoo1Das dasmoo1Das ", "dasmoo1Das dasmoo1Das dasmoo1Das ", "dasmoo1Das dasmoo1Das ", "dasmoo1Das "} | |
repeat with theItem in myList | |
tell process "chatterino" | |
set value of text area 1 of window 1 to theItem | |
key code 36 |
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
Process: chatterino [9173] | |
Path: /Applications/chatterino.app/Contents/MacOS/chatterino | |
Identifier: none.chatterino | |
Version: 0 | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: chatterino [9173] | |
User ID: 501 | |
Date/Time: 2018-10-22 11:46:52.043 -0400 |
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
--Def-- | |
local entity_get_prop = entity.get_prop | |
local entity_set_prop = entity.set_prop | |
local entity_get_all = entity.get_all | |
local entity_get_players = entity.get_players | |
local entity_is_enemy = entity.is_enemy | |
local entity_get_local_player = entity.get_local_player | |
local ui_get = ui.get | |
local ui_new_checkbox = ui.new_checkbox | |
local ui_new_combobox = ui.new_combobox |
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
local function is_local_player(entindex) | |
return entindex == entity.get_local_player() | |
end | |
local function is_local_player_userid(userid) | |
return is_local_player(client.userid_to_entindex(userid)) | |
end | |
local autobuy_checkbox = ui.new_checkbox("MISC", "Miscellaneous", "Autobuy") |
NewerOlder