Skip to content

Instantly share code, notes, and snippets.

View yani's full-sized avatar
👽
­

Yani yani

👽
­
View GitHub Profile
@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')));