I hereby claim:
- I am sidharthv96 on github.
- I am sidharthv (https://keybase.io/sidharthv) on keybase.
- I have a public key ASAckvsLh1YE7MvT5tjYxLL1FXC20S0SycsfPye4Gu2-TQo
To claim this, I am signing this object:
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
id=$(date | md5 | head -c 26) | |
echo $id | |
mkdir "D$id" | |
for reg in {1..9} | |
do | |
echo -e "\n\n\n----------------------------------------------------------------------------------------\n$reg" | |
curl "http://202.88.252.21/CuPbhavan/res_newregentry.php?id=4789" -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" -H "Referer: http://202.88.252.21/CuPbhavan/curesultonline.php" -H "X-DevTools-Emulate-Network-Conditions-Client-Id: 77109F89-1E59-4D14-902A-4FEF1DEC0380" -H "Upgrade-Insecure-Requests: 1" -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36" --compressed --data "regno=ETAOECS00$reg&sum=107&id=4789&sessionok=yes" --compressed -o 1.html |
function adbc --description 'ADB Network Connect' | |
command adb connect $argv | |
end | |
function ls --description 'List contents of directory' | |
command ls -lFG $argv | |
end | |
function subl --description 'Launches sublime text in a new window' |
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Richard Hendriks", | |
"label": "Programmer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "(912) 555-4321", | |
"url": "http://richardhendricks.example.com", | |
"summary": "Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!", |
I hereby claim:
To claim this, I am signing this object:
Used to convert jest's Tagged Template literals to object arrays as required by vitest. Example: Jest code
it.each`
str | expected
${'1d'} | ${moment.duration(1, 'd')}
${'2w'} | ${moment.duration(2, 'w')}
`('should parse $str to $expected duration', ({ str, expected }) => {
expect(yourFunction(str)).toEqual(expected);