Date | District | covid19india.org | covidkashmir.org | Source |
---|---|---|---|---|
2020-05-13 | Budgam | 53,39,14,0 | 52,38,14,0 | https://twitter.com/diprjk/status/1260573425577406466/photo/2 |
2020-05-13 | Srinagar | 136,48,84,4 | 137,49,84,4 | https://twitter.com/diprjk/status/1260573425577406466/photo/2 |
2020-05-14 | Budgam | 53,35,18,0 | 52,34,18,0 | https://twitter.com/diprjk/status/1260927181892382727 |
2020-05-14 | Srinagar | 141,53,84,4 | 142,54,84,4 | https://twitter.com/diprjk/status/1260927181892382727 |
2020-05-15 | Budgam | 53,32,21,0 | 52,31,21,0 | https://twitter.com/diprjk/status/1261283826539606020?s=19 |
2020-05-15 | Srinagar | 152,64,84,4 | 153,65,84,4 | [https://twitter.com/diprjk/status/1261283826539606020?s=19](https://twitter.com/dipr |
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
/* | |
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD | |
* | |
* SPDX-License-Identifier: Unlicense OR CC0-1.0 | |
*/ | |
#include <stdlib.h> | |
#include "esp_log.h" | |
#include "freertos/FreeRTOS.h" | |
#include "freertos/task.h" |
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/sh | |
API_KEY="<API-KEY>" | |
ENCODED_KEY=`echo $API_KEY | base64` | |
HEADER="Authorization: Basic $ENCODED_KEY" | |
TODAY=`date +%Y-%m-%d` | |
YESTERDAY=`date -d "yesterday" +%Y-%m-%d` | |
URL="https://wakatime.com/api/v1/users/current/summaries?start=$YESTERDAY&end=$TODAY" | |
echo $(curl -s -X GET -H "$HEADER" "$URL" | jq -r '.cummulative_total.digital') |
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
[ | |
{ | |
"providerData":true, | |
"creationTime":"Fri, 24 Dec 2021 15:55:28 GMT", | |
"lastSignInTime":"Fri, 24 Dec 2021 15:55:28 GMT" | |
}, | |
{ | |
"providerData":false, | |
"creationTime":"Mon, 06 Dec 2021 18:03:33 GMT", | |
"lastSignInTime":"Mon, 06 Dec 2021 18:03:33 GMT" |
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
{ | |
"userAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36", | |
"environment": { | |
"networkUserAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4143.7 Mobile Safari/537.36 Chrome-Lighthouse", | |
"hostUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36", | |
"benchmarkIndex": 1282 | |
}, | |
"lighthouseVersion": "6.2.0", | |
"fetchTime": "2020-08-10T11:12:08.649Z", | |
"requestedUrl": "https://haideralipunjabi.com/", |
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 requests | |
from bs4 import BeautifulSoup as soup | |
import os | |
from progress.bar import Bar | |
import wget | |
from urllib.parse import unquote | |
base = "http://www.meeshdesigns.com/Western%20Fonts/" | |
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'} |
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
{ | |
"Total": 482002, | |
"Active": 15, | |
"Recovered": 477195, | |
"Deceased": 4792, | |
"TotalYesterday": 482002, | |
"ActiveYesterday": 15, | |
"RecoveredYesterday": 477195, | |
"DeceasedYesterday": 4792, | |
"Updated": "11/06/2023 08:42 PM" |
URL Pattern | Page Path Level |
---|---|
https://example.com/blog-post-example | Page Path Level 1 |
https://example.com/posts/blog-post-example | Page Path Level 2 |
https://example.com/posts/2020/blog-post-example | Page Path Level 3 |
https://example.com/posts/2020/02/blog-post-example | Page Path Level 4 |
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
class Walker { | |
int x; | |
int y; | |
Walker() { | |
// Constructor function to initailize data | |
// width & height have the width & height of the output. | |
x = width/2; | |
y = height/2; | |
} | |
} |
NewerOlder