This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Password Gen!</title> | |
</head> | |
<body> | |
<h1> Password Gen!</h1> | |
<!-- All of the Node.js APIs are available in this renderer process. --> | |
We are using Node.js <script>document.write(process.versions.node)</script>, |
This file contains 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 | |
# curl -s "https://egov.uscis.gov/casestatus/mycasestatus.do" -X POST --data "changeLocale=&appReceiptNum=WAC2290072020&initCaseSearch=CHECK+STATUS"| grep -A1 'Your Current Status'|tail -1 | |
curl -s "https://egov.uscis.gov/casestatus/mycasestatus.do" -X POST --data "changeLocale=&appReceiptNum=WAC2290072020&initCaseSearch=CHECK+STATUS" | tee >(grep -oh '[On|As].*Number \w.*[0-9]' 1>&2) |grep -C1 'Your Current Status'|tail -1|tr -d "\t" |tr -s " " | |
echo | |
curl -s "https://egov.uscis.gov/casestatus/mycasestatus.do" -X POST --data "changeLocale=&appReceiptNum=IOE8718023615&initCaseSearch=CHECK+STATUS" | tee >(grep -oh '[On|As].*Number \w.*[0-9]' 1>&2) |grep -C1 'Your Current Status'|tail -1|tr -d "\t" |tr -s " " |
This file contains 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
{ | |
// BASH DEBUGGER Config file for VSCode | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "bashdb", | |
"request": "launch", |