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
// ==UserScript== | |
// @name Auction item parser | |
// @author RyuFive | |
// @match https://www.torn.com/amarket.php* | |
// @namespace https://github.com/RyuFive/TornScripts/raw/main/Auction Names.user.js | |
// @require https://gist.githubusercontent.com/BrockA/2625891/raw/9c97aa67ff9c5d56be34a55ad6c18a314e5eb548/waitForKeyElements.js | |
// @version 1.4 | |
// @description try to take over the world! | |
// @grant GM_xmlhttpRequest | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=torn.com |
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
import urllib | |
import time | |
import collections | |
import requests | |
TORN_API_TOKEN = '<YOUR FULL ACCESS TORN API TOKEN>' | |
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
/* | |
THIS IS A GENERATED/BUNDLED FILE BY ROLLUP | |
if you want to view the source visit the plugins github repository | |
*/ | |
'use strict'; | |
var obsidian = require('obsidian'); | |
/*! ***************************************************************************** |
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
/* Obsidian metatble styles */ | |
/* Styles are wrapped inside a shadow DOM. If you want to see them go to https://github.com/arnau/obsidian-metatable/blob/main/src/metatable.css */ | |
/* The styles below are an example that can get you started with the Naked | |
* option | |
*/ | |
.theme-light .obsidian-metatable { |
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 | |
namespace app\models; | |
use app\components\EmailSend; | |
use app\components\Functions; | |
use Endroid\QrCode\QrCode; | |
use Mpdf\Mpdf; | |
use Yii; | |
use yii\data\ActiveDataProvider; |
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
import urllib.request | |
import ssl | |
from tqdm import * | |
from os.path import abspath, isfile | |
from os import listdir, remove | |
from bs4 import BeautifulSoup | |
from sqlalchemy import create_engine, Table, Column, Integer, Float, String, ForeignKey, Boolean, desc, and_ | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import sessionmaker | |
from datetime import datetime, date, timedelta |