Skip to content

Instantly share code, notes, and snippets.

View ashut0shk's full-sized avatar
🎯
!coding || !procrastinating

Ashutosh Kumar ashut0shk

🎯
!coding || !procrastinating
View GitHub Profile
{"archivedTint":-4980577,"authorFlairTextColor":-15355425,"backgroundColor":-15395563,"bottomAppBarBackgroundColor":-16777216,"buttonTextColor":-1,"cardViewBackgroundColor":-16777216,"chipTextColor":-1,"circularProgressBarBackground":-16777216,"colorAccent":-15355425,"colorPrimary":-16777216,"colorPrimaryDark":-16777216,"colorPrimaryLightTheme":-39601,"commentBackgroundColor":-16777216,"commentColor":-1,"commentIconAndInfoColor":-1275068417,"commentVerticalBarColor1":-15374912,"commentVerticalBarColor2":-3997517,"commentVerticalBarColor3":-16729894,"commentVerticalBarColor4":-1193472,"commentVerticalBarColor5":-1179111,"commentVerticalBarColor6":-16729819,"commentVerticalBarColor7":-1161726,"crosspostIconTint":-49023,"dividerColor":-9869716,"downvoted":-6914608,"fabIconColor":-1,"flairBackgroundColor":-16733556,"flairTextColor":-1,"isAmoledTheme":true,"isChangeStatusBarIconColorAfterToolbarCollapsedInImmersiveInterface":false,"isDarkTheme":true,"isLightNavBar":false,"isLightStatusBar":false,"isLightTheme":fal
@ashut0shk
ashut0shk / One.json
Created June 18, 2021 15:57
Infinity theme one
{
"archivedTint": -11812,
"authorFlairTextColor": -11812,
"awardedCommentBackgroundColor": -14671835,
"awardsBackgroundColor": -875153,
"awardsTextColor": -15329507,
"backgroundColor": -15329507,
"bottomAppBarBackgroundColor": -7434574,
"bottomAppBarIconColor": -15329507,
"buttonTextColor": -1,
<!doctype html>
<html>
<head>
<title>SSH Client</title>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<style>
body {
margin: 0;
padding: 0;
# AdBlock for iOS DNS Proxy rules
# https://itunes.apple.com/us/app/adblock/id691121579
# Exported 05 Jul 2019 at 10:43:17 with AdBlock v4.4
Custom Filters/Sites/050003.voodoo.com
Custom Filters/Sites/050005.voodoo.com
Custom Filters/Sites/0914.global.ssl.fastly.net
Custom Filters/Sites/0c3-a.tlnk.io
Custom Filters/Sites/1-100-62-1.b.cdn13.com

I have planned, structured, built, and maintained web application on a substantial scale. I feel confident to provide my assistance on large scale web application development. Listed below are few of the publicly available web application in which I have actively contributed.

SuperCoder

MDOffice

AAPC Coder

@ashut0shk
ashut0shk / txt
Created April 26, 2018 18:00
Adblock list
rhdj050003.voodoo.com
050005.voodoo.com
1681.engine.mobileapptracking.com
2517d.v.fwmrm.net
2975c.v.fwmrm.net
3ad.doubleclick.net
4.afs.googleadservices.com
4625910.fls.doubleclick.net
5371908.fls.doubleclick.net
a.admob.com
#!/bin/bash
# Installs the XCode command line tools if you don't have them
xcode-select --install
# Installs brew if you don't have it
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Makes your account the owner of /usr/local, which is preferred on single user Macs
sudo chown -R `whoami` /usr/local
# Installs all the dependencies for building libtorrent and rtorrent
brew install automake libtool boost curl lzlib libsigc++ openssl pkg-config xmlrpc-c
# Uninstall libtorrent-rasterbar if you already have it
Gaurav
- Main Page http://www.amazon.in/gp/goldbox/ref=nav_cs_gb
- Scrollable 100 elements
- 5 cols 20 rows flexible
Ankit
- URL http://www.amazon.in/gp/goldbox/ref=nav_cs_gb
- Header
- Breadcrumb
@ashut0shk
ashut0shk / mac-apps.md
Created July 17, 2017 07:55 — forked from erikreagan/mac-apps.md
Mac developer must-haves

Mac web developer apps

This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.

— Erik

@ashut0shk
ashut0shk / github-oauth2-client.php
Created December 8, 2016 09:56 — forked from DBasic/github-oauth2-client.php
[php] github oauth2 authorization
<?php
define('OAUTH2_CLIENT_ID', '');
define('OAUTH2_CLIENT_SECRET', '');
$authorizeURL = 'https://github.com/login/oauth/authorize';
$tokenURL = 'https://github.com/login/oauth/access_token';
$apiURLBase = 'https://api.github.com/';
session_start();