I hereby claim:
- I am varun93 on github.
- I am vhegde (https://keybase.io/vhegde) on keybase.
- I have a public key ASBOm1UqMhQxKoWxWgEZ_AmHSAQc7yNgZZRAPATqhLaPnQo
To claim this, I am signing this object:
import requests | |
from bs4 import BeautifulSoup | |
from datetime import datetime | |
def evaluate(): | |
filename = "{}.csv".format(datetime.today().strftime('%Y-%m-%d')) | |
fileHandle = open(filename, "a+") | |
url = 'https://egov.uscis.gov/casestatus/mycasestatus.do' | |
# initialize with the header | |
result = ["Receipt Number,Status,Date"] |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include "ClangSACheckers.h" | |
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h" | |
#include "clang/StaticAnalyzer/Core/Checker.h" | |
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" | |
#include <clang/StaticAnalyzer/Core/CheckerRegistry.h> | |
#include <clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h> | |
#include "clang/StaticAnalyzer/Core/CheckerManager.h" | |
#include <iostream> | |
using namespace clang; |
from config import log | |
from dice import Dice | |
import constants | |
from cards import Cards | |
import copy | |
# import timeout_decorator | |
from state import State,Phase,Reason | |
# autobahn imports | |
from os import environ |
jQuery(".screens video").each((index,video) => { window.open(video["src"])}); |
const swapWithoutTemp = (a, b) => { | |
a = a ^ b; | |
b = a ^ b; | |
a = a ^ b; | |
}; |
const genericFormHoc = ({handleFieldChange,form}) => { | |
const {fields} = form || {}; | |
const {submit} = form | |
return ( | |
<div> | |
{ | |
Object.keys(fields).map((fieldKey) => { | |
const {field} = fields[fieldKey]; | |
return <Field fieldKey={fieldKey} field={field} handleFieldChange={handleFieldChange} /> | |
}) |
const compareArrays = (arrayA, arrayB) => { | |
let isEqual = true; | |
if (arrayA == null && arrayB === null) { | |
return true; | |
} | |
if (arrayA.length !== arrayB.length) { | |
return false; | |
} |
const clone = (deepCopy = false, source) => { | |
if (Array.isArray(source)) { | |
let array = []; | |
source.forEach((element, index) => { | |
if (typeof element == "object") { | |
array[index] = clone(deepCopy, element); | |
} else { | |
array[index] = element; | |
} | |
}); |