type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| <html> | |
| <head> | |
| <script src="script.js"></script> | |
| <link rel="stylesheet" href="style.css"></link> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="viewport"> | |
| <div class="box" id="pane1"></div> | |
| <div class="box" id="pane2"></div> |
| # 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) |
| // ==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== |
| javascript:(function(){document.querySelector('.video-player video').requestPictureInPicture()})(); |
| function e(){if(document.URL.lastIndexOf('petitlyrics.com/lyrics/')==-1)return;$.post('//petitlyrics.com/com/get_lyrics.ajax',{lyrics_id:document.URL.substring(document.URL.lastIndexOf('/')+1)},function(data){let s='';for(let x of data){s+=Base64.decode(x.lyrics)+'\r\n';};prompt($('.title-bar').text(),s);})};e(); |
| #!/usr/bin/env python3 | |
| import subprocess | |
| import json | |
| import os | |
| from pathlib import Path | |
| import requests | |
| from requests.compat import urljoin |
| javascript:void(a=window.frames.NetFunnel,a.RTYPE_CHK_ENTER=a.RTYPE_SET_COMPLETE); |
| 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/* |