Skip to content

Instantly share code, notes, and snippets.

View arunkumartdr's full-sized avatar
:octocat:
Coding

Arun Kumar arunkumartdr

:octocat:
Coding
  • Web Developer
  • TAMILNADU
View GitHub Profile
@arunkumartdr
arunkumartdr / obfuscators.txt
Created March 16, 2022 19:21
Best HTML , CSS , JS Obfuscators Online
JS : https://javascriptobfuscator.com/Javascript-Obfuscator.aspx
HTML : http://snapbuilder.com/code_snippet_generator/obfuscate_html_source_code/
CSS : https://www.phpkobo.com/css-obfuscator
All above objuscators convert code to js
@arunkumartdr
arunkumartdr / php_uniqid.php
Created December 22, 2021 09:31
unique id in js and php
<?php
echo uniqid();
?>
@arunkumartdr
arunkumartdr / api.html
Last active November 22, 2021 12:28
Google Charts Api HTML , CSS , JS [Array to data]
<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.charts.load('current', {'packages':['corechart']});
@arunkumartdr
arunkumartdr / hlscreation.bat
Last active April 30, 2021 10:29
FFmpeg hls creation
ffmpeg -i kmn.mp4 -codec: copy -sn -start_number 0 -hls_time 10 -hls_list_size 0 -f hls "test/kmn.m3u8"
ffmpeg -i tt.mkv -profile:v baseline -strict -2 -level 3.0 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls "test/tt.m3u8"
// -sn removes subtitles in input video
@arunkumartdr
arunkumartdr / 2.js
Last active February 27, 2022 22:05
Pause Debugger
var tryCount = 0;
var minimalUserResponseInMiliseconds = 200;
function check() {
before = new Date().getTime();
after = new Date().getTime();
if (after - before > minimalUserResponseInMiliseconds) {
debugger;
//window.location.replace("http://www.google.co.in");
self.location.replace(window.location.protocol + window.location.href.substring(window.location.protocol.length));