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
| 16/05/18 23:19:48 WARN security.UserGroupInformation: PriviledgedActionException as:sys_bio_matching (auth:KERBEROS) cause:javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos tgt)] | |
| 16/05/18 23:19:48 WARN ipc.Client: Exception encountered while connecting to the server : javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos tgt)] | |
| 16/05/18 23:19:48 WARN security.UserGroupInformation: PriviledgedActionException as:sys_bio_matching (auth:KERBEROS) cause:java.io.IOException: javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos tgt)] | |
| 16/05/18 23:19:48 WARN security.UserGroupInformation: PriviledgedActionException as:sys_bio_matching (auth:KERBEROS) cause:javax.security.sasl.SaslException: GSS initiate failed [Ca |
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
| A collection of implementations of the problems that I did during competitive coding. |
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/python3 | |
| import sys | |
| texmap ={ | |
| u'α': r'\alpha ', | |
| u'β': r'\beta ', | |
| u'λ': r'\lambda ', | |
| u'{': r'\{', | |
| u'}': r'\}', | |
| u'×': r'\times', |
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 cards_list = document.getElementsByClassName("memory-game-inner")[0]; | |
| ob = {}; | |
| delay = 0; | |
| for (let item of cards_list.childNodes) { | |
| if (item.tagName == 'DIV') { | |
| console.log(item) | |
| let id = item.firstChild.firstChild.firstChild.getAttribute('src').slice(34); | |
| if (id in ob) { | |
| (function (id, delay, item) { | |
| setTimeout(function () { console.log(id); ob[id].firstChild.firstChild.click(); item.firstChild.firstChild.click(); }, delay); |
I hereby claim:
- I am abinashmeher999 on github.
- I am abinashmeher (https://keybase.io/abinashmeher) on keybase.
- I have a public key ASCRsaqKcSKME2ShDus9_upsBtsRjdIrsGVH7q7mREHo3Qo
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
| import logging | |
| import json | |
| import argparse | |
| import requests | |
| github_base = "https://api.github.com" | |
| github_status_url = github_base + "/repos/{repo_name}/statuses/{sha}?access_token={token}" | |
| token = '' |
OlderNewer