Skip to content

Instantly share code, notes, and snippets.

View inilim's full-sized avatar

inilim

View GitHub Profile
@inilim
inilim / tampermonkey.js
Created January 12, 2026 15:45
Twitch — hide dark overlay
// ==UserScript==
// @name Twitch — hide dark overlay
// @namespace http://tampermonkey.net/
// @version 1.0
// @description скрывает оверлей блокировщик
// @author You
// @match https://www.twitch.tv/*
// @grant none
// ==/UserScript==
@inilim
inilim / tampermonkey.js
Last active January 10, 2026 18:11
YouTube - скрыть старые видео | hide old videos
// ==UserScript==
// @name YouTube — скрыть старые видео
// @namespace http://tampermonkey.net/
// @version 1.3
// @description Скрывает видео старше 1 года
// @author You
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
@inilim
inilim / index.php
Created November 16, 2025 21:35
4.2# Парсинг LiveLib. Парсинг данных из файлов и занесение в БД. (PHP, Crawler, SqLite)
<?php
error_reporting(E_ALL);
set_time_limit(0);
date_default_timezone_set('Etc/GMT-3');
require_once __DIR__ . '/functions.php';
# Функции для работы с PDO SqLite
require_once __DIR__ . '/_INIL_connectLite.php';
require_once __DIR__ . '/vendor/autoload.php';
ini_set('memory_limit', '5024M');
timeRun();
@inilim
inilim / index.php
Last active November 16, 2025 21:34
4.1# Парсинг LiveLib. Сбор href в базу и сохранение html файлов. (PHP, Crawler, HTTPClient, SQLite)
<?php
error_reporting(E_ALL);
set_time_limit(0);
date_default_timezone_set('Etc/GMT-3');
require_once __DIR__ . '/functions.php';
# Функции для работы с PDO SqLite
require_once __DIR__ . '/_INIL_connectLite.php';
require_once __DIR__ . '/vendor/autoload.php';
ini_set('memory_limit', '5024M');
timeRun();