Skip to content

Instantly share code, notes, and snippets.

View abonzer's full-sized avatar

abonzer Team abonzer

  • abonzer
  • jaipur
View GitHub Profile
@abonzer
abonzer / imgPDF.html
Created August 31, 2020 20:12
imgpdf
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://drive.google.com/uc?export=view&id=1WEPh5N0IOrNHDjq3dPkaUD8XDJEt4OfT"/> <!-- cssStyle-V2.css -->
<!--<link rel="stylesheet" href="https://sites.google.com/site/imgpdfdata/cssStyle-V2.css"> -->
<!-- Resource style -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<meta id="metatagScale" name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1'>
@abonzer
abonzer / Quickstart YouTube Data API with Google App Script
Created May 15, 2020 08:22
Quickstart - YouTube Data API with Google App Script
// Apps Script Code Samples :- https://developers.google.com/youtube/v3/code_samples/apps-script
// Google Apps Script Quickstart ( with YT Data API) :- https://developers.google.com/youtube/v3/quickstart/apps-script
// YouTube Analytics API (AppScript) :- https://developers.google.com/apps-script/advanced/youtube-analytics
// YouTube - Data API > Video :- https://developers.google.com/youtube/v3/docs/videos
var ss = SpreadsheetApp.openById('1cNyTGnETUXXXXXXXXXXhq88zHeW4k7EoD7RzlS-8UM');
var YTTracker = ss.getSheetByName('YTTracker');
var Growth = ss.getSheetByName('Growth');
@abonzer
abonzer / Material Dashboard Template
Created May 8, 2020 18:17
Material WebPage Template for webapp Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CheckPad Editor</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<style>
.body-style {
@abonzer
abonzer / Youtube Playlist Duration
Last active February 24, 2021 15:51
Find the total length of a youtube playlist with javascript console.
// remove all comments lines
var countUdTime = 0;
var ytt = "desktop";
// for Desktop / laptop / youtube.com
// ===================================
// on YouTube Videos Page - https://www.youtube.com/channel/UCapQ8VzljfmUW5OM-ynsyCQ/videos
var ytp = document.querySelectorAll("ytd-grid-video-renderer");
@abonzer
abonzer / combinations generation
Created April 16, 2020 08:41
find all possible combinations of a set of options? how many possible combinations of answers are there
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="showdata"></div>
<script>
function binaryfun(no,base){
@abonzer
abonzer / Export instagram followers and following to csv
Created April 11, 2020 16:25
Ddownload/Save a full list of your Instagram Followers / Following. - JS Console, Bookmarklet
javascript: var InstaUser = window.location.href.split('instagram.com')[1].split('/')[1];
var followersCount, followingCount;
getFollowCount(InstaUser);
function getFollowCount(user) {
url = 'https://www.instagram.com/' + user + '/?__a=1';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var getJSON = JSON.parse(this.responseText);
@abonzer
abonzer / anonymous instagram viewer
Created April 8, 2020 20:03
View Instagram Page without an account ? view accounts on Instagram without being logged in ( withot android App).
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Instagram Downloader</title>
<style>
.postURL:focus {
border: 2px solid #6f6f6f!important;
}
.postURL{
@abonzer
abonzer / AdvancedInstagramDownloader.html
Created April 6, 2020 16:42
Save instagram videos, photos, IGTV, and album. You can get almost all the information of instagram page like profile name, profile photos, media, caption, comments and other details.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Instagram Downloader</title>
<style>
.postURL:focus {
border: 2px solid #6f6f6f!important;
}
@abonzer
abonzer / InstagramDownloader.html
Created April 2, 2020 16:13
Download pictures / videos / IGTV from Instagram with just JavaScript.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Instagram Downloader</title>
</head>
<style>
.postURL:focus {
border: 2px solid #6f6f6f!important;