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
@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