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
# coding: utf-8 | |
import oauth2 as oauth | |
import json | |
CONSUMER_KEY = "yT577ApRtZw51q4NPMPPOQ" | |
CONSUMER_SECRET = "3neq3XqN5fO3obqwZoajavGFCUrC42ZfbrLXy5sCv8" | |
ACCESS_KEY = "" | |
ACCESS_SECRET = "" | |
consumer = oauth.Consumer(key=CONSUMER_KEY, secret=CONSUMER_SECRET) |
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 Coupay Physical Keyboard | |
// @namespace https://koreapyj.dcmys.kr/ | |
// @version 1.0 | |
// @description Your mother | |
// @author koreapyj, sokcuri | |
// @match https://rocketpay.coupang.com/rocketpay/pay/authentication | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=rocketpay.coupang.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
FROM python:3.7 | |
# Set the timezone to KST | |
RUN cat /usr/share/zoneinfo/Asia/Seoul > /etc/localtime | |
RUN set -ex \ | |
&& apt-get clean && apt-get update \ | |
&& apt-get install --no-install-recommends -y groff \ | |
&& rm -rf /var/lib/apt/lists/* |
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
{ | |
test: 1234, | |
build: 5678 | |
} |
Recently more and more chatbots appear, the overall chatbot market grows and the platform for it grows as well. Today we are taking a close look at what benefits creating a microservice chatbot on Discord - (a communication platform mainly targeted at gamers) would provide.
The concepts and ideas explained in this whitepaper are geared towards bots with a bigger userbase where the limits of a usual bot style appear with a greater effect
(If you are already proficient with the Discord API and the way a normal bot works, you may skip ahead to The Concept)
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 | |
import subprocess | |
import json | |
import os | |
from pathlib import Path | |
import requests | |
from requests.compat import urljoin |
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
# remove-missing-script.py | |
# A Python script that removes the disconnected script file "Missing Script" in Unity Prefab files | |
# - Author: github.com/sokcuri | |
# | |
# usage: | |
# > python Tools/remove-missing-script.py [Target Folder] | |
# | |
import re, sys | |
from pathlib import Path |
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
javascript:(function(){document.querySelector('.video-player video').requestPictureInPicture()})(); |
NewerOlder