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
import pandas as pd | |
df = pd.read_excel( | |
"input.xlsx", | |
engine="openpyxl", | |
sheet_name="Sheet1", | |
skiprows=3, | |
) | |
list = [ |
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 JIRA Helper | |
// @namespace http://google.com/ | |
// @version 0.2 | |
// @description Ease management | |
// @author duongoku | |
// @match https://insight.fsoft.com.vn/jira3/secure/Dashboard.jspa* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=fsoft.com.vn | |
// @grant GM_setValue | |
// @grant GM_getValue |
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 UET-Graduate-Course-List | |
// @namespace https://github.com/duongoku/ | |
// @version 1.7 | |
// @description Script for calculating courses related stuff | |
// @author duongoku | |
// @license GPL-3.0-or-later | |
// @match https://daotao.uet.vnu.edu.vn/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=uet.vnu.edu.vn | |
// ==/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
// ==UserScript== | |
// @name UET-Graduate-Course-List | |
// @namespace https://github.com/duongoku/ | |
// @version 1.5.2 | |
// @description Script for calculating courses related stuff | |
// @author duongoku | |
// @license GPL-3.0-or-later | |
// @match https://daotao.uet.vnu.edu.vn/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=uet.vnu.edu.vn | |
// ==/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
// ==UserScript== | |
// @name Clorthax Script | |
// @namespace https://greasyfork.org/en/scripts/446975-clorthax-script | |
// @version 2.0.0 | |
// @description Script for Clorthax's Summer Sale Quest 2022 | |
// @author duongoku | |
// @source https://gist.github.com/duongoku/f8257fb783250e85e34f1ae9d1b30aec | |
// @license GNU GPLv3 | |
// @match https://store.steampowered.com/* | |
// ==/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 bs4 import BeautifulSoup | |
import json | |
import re | |
import requests | |
ROOT = "https://cplusplus.com" | |
def get_containers(): | |
url = "https://cplusplus.com/reference/stl/" |
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 IPM_AUTO | |
// @version 0.4 | |
// @description Script for ipm.vn | |
// @run-at document-start | |
// @author duongoku | |
// @namespace http://duongoku.github.io/ | |
// @include /https://ipm.vn/ | |
// @license GNU GPLv3 | |
// ==/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
// This script is for completing all available missions on https://riotxarcane.riotgames.com | |
// Don't use this script if you want the full experience | |
// Author: duongoku | |
// Contact: [email protected] | |
// How to use: | |
// 1. Go to https://riotxarcane.riotgames.com, log in and load the game | |
// 2. Once the game is loaded, open the developer's console (pressing Ctrl+Shift+K on Firefox or Ctrl+Shift+J on Chrome) | |
// 3. Focus the "Console" tab (if not focused), paste this code and press Enter |
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 FAHASA | |
// @version 1.3.2 | |
// @description For FAHASA coupons | |
// @author duongoku | |
// @match https://www.fahasa.com/ma-giam-gia* | |
// ==/UserScript== | |
function apply_coupon(coupon) { | |
let url = "https://www.fahasa.com/onestepcheckout/index/couponCode"; |