- Student : Aashutosh Rathi
- Github : aashutoshrathi
- Organisation : FOSSASIA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am aashutoshrathi on github. | |
* I am aashutoshrathi (https://keybase.io/aashutoshrathi) on keybase. | |
* I have a public key ASDGWvq1tKFb8sfxSc9LoPVvPkFLAspKRvF_CnPMUgMWeAo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[33m[WARNING][0m[20:20:46] Implicit 'Default' section inheritance is deprecated. It will be removed soon. To silence this warning remove settings in the 'Default' section from your coafile. You can use dots to specify inheritance: the section 'all.python' will inherit all settings from 'all'.[0m | |
Executing section Python Spacing... | |
Executing section Golint... | |
[31m[ERROR][0m[20:20:59] The bear GoLintBear does not fulfill all requirements. 'golint' is not installed.[0m | |
Executing section Gofmt... | |
Executing section pep8... | |
Executing section haskell... | |
[33m[WARNING][0m[20:21:14] No files matching 'C:\Users\Aashutosh Rathi\Documents\Github\algos\**\*.hs' were found.[0m | |
[31m[ERROR][0m[20:21:14] The bear HaskellLintBear does not fulfill all requirements. 'hlint' is not installed.[0m | |
Executing section hlint... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ coala --ci | |
[WARNING][11:20:25] Implicit 'Default' section inheritance is deprecated. It will be removed soon. To silence this warning remove settings in the 'Default' section from your coafile. You can use dots to specify inheritance: the section 'all.python' will inherit all settings from 'all'. | |
Executing section Python Spacing... | |
Executing section Golint... | |
Executing section Gofmt... | |
Executing section pep8... | |
Executing section haskell... | |
[WARNING][11:20:28] No files matching '/home/travis/build/iiitv/algos/**/*.hs' were found. | |
Executing section hlint... | |
[WARNING][11:20:29] No files matching '/home/travis/build/iiitv/algos/**/*.hs' were found. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// one way searching through italics tag | |
x = document.getElementsByTagName('i'); | |
x[0].innerText // ==> it will give you correct output | |
// searching through class | |
x = document.getElementsByClassName('spell'); | |
x[1].children[0].textContent // ==> it will give same result too. | |
// This works for links like https://www.google.co.in/search?q=summr | |
// Gives an output summer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var today = new Date(); | |
var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate(); | |
x = document.getElementsByTagName('rect'); | |
for(let i = 0; i<x.length; i++) { | |
if(x[i].getAttribute('data-date') === date) { | |
console.log(x[i].getAttribute('data-count')); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function wait(ms) { | |
var d = new Date(); | |
var d2 = null; | |
do { d2 = new Date(); } | |
while(d2-d < ms); | |
} | |
function hackIt() { | |
speed = 100; // in wpm | |
inp = document.getElementsByTagName('input'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sublime Text 3.x (after Build 3155) | |
—– BEGIN LICENSE —– | |
eldon | |
Single User License | |
EA7E-1122628 | |
C0360740 20724B8A 30420C09 6D7E046F | |
3F5D5FBB 17EF95DA 2BA7BB27 CCB14947 | |
27A316BE 8BCF4BC0 252FB8FF FD97DF71 | |
B11A1DA9 F7119CA0 31984BB9 7D71700C | |
2C728BF8 B952E5F5 B941FF64 6D7979DA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download it. | |
# Name it as 'theme' | |
# Place it in /usr/bin/ | |
# shell_prompt$ theme | |
echo ' | |
3024 Day ( 1) 3024 Night ( 2) AdventureTime ( 3) | |
Afterglow ( 4) AlienBlood ( 5) Argonaut ( 6) | |
Arthur ( 7) Atom ( 8) Belafonte Day ( 9) | |
Belafonte Night ( 10) BirdsOfParadise ( 11) Blazer ( 12) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [UPDATE] New link https://masteranime.es/masterani.me protects with two layers. | |
// 1. Go to the video page and then paste the following script on console | |
document.querySelector('iframe').src | |
// click on the output link | |
// 2. The new window will open, open dev tools here and paste this in devtools | |
document.querySelector("video").src | |
// 3. Now go to link and press Ctrl + S |
OlderNewer