Skip to content

Instantly share code, notes, and snippets.

View bzimor's full-sized avatar
💻
Coding

Boburmirzo Hamraqulov bzimor

💻
Coding
  • Epam Systems
View GitHub Profile
// ==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
@bzimor
bzimor / crime-2.0-log-parser.py
Created July 4, 2023 16:17
Gained items per Crime skill in Crime 2.0
import urllib
import time
import collections
import requests
TORN_API_TOKEN = '<YOUR FULL ACCESS TORN API TOKEN>'
/*
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');
/*! *****************************************************************************
/* 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 {
<?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;
@bzimor
bzimor / Uz domain name crawler.py
Last active March 22, 2017 10:34
This script crawles and gets informations of newly added .uz domain names from cctld.uz and saves data to a single SQLite db file
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