Skip to content

Instantly share code, notes, and snippets.

View yani's full-sized avatar
👽
­

Yani yani

👽
­
View GitHub Profile
@yani
yani / youtube-anti-adblock.user.js
Last active October 19, 2023 01:35
Youtube AdBlock ban bypass
// ==UserScript==
// @name Youtube AdBlock ban bypass
// @namespace http://tampermonkey.net/
// @version 0.32b
// @description Bypass youtubes new ad block restrictions
// @author Obelous
// @author Yani
// @match https://www.youtube.com/*
// @match https://www.youtube-nocookie.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
@yani
yani / index.html
Last active April 13, 2019 12:50
jquery page loader with datatables support
<body>
<div class="wrapper">
<div class="loading" id="_app_loader"></div>
</div>
</body>
<?php
/*
A Simple Dynamic PHP & JS obfuscation script
- Made by Yani
https://github.com/Yanikore - https://gist.github.com/Yanikore
*/
function randomString($length = 8) { //Just a randomstring function
$randomString = '';
$characters = implode("", array_merge(range('a', 'z'), range('A', 'Z')));