[email protected] 540.200.8889 Woodbridge, VA
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
// This script can be run in the browser console | |
// Just navigate to https://www.bjs.com/myCoupons and execute the script | |
// This script will clip all the coupons on the current page | |
// | |
// Created on 10/13/22 | |
// Modified 2024-04-26 | |
document.querySelectorAll("button[name='clipToCard']").forEach(function(item) {item.click()}); | |
// Harris Teeter |
UPDATE 17.10.2019
Only works on old youtube skin.
//added "&disable_polymer=true" after playlist link
Also, saw this now, there is a "remove watched" button.
- Open your watch later playlist on youtube.
- Open the development console for your browser ( Ctrl+Shift+J for chrome, Ctrl+Shift+K for firefox )
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
# Tree replacement | |
find . | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-- \1/" | |
# Test Firewall with basic linux tools | |
#### Command for Destination Server; Create a listener on target port | |
nc -l 8080 | |
#### Command for source server | |
echo > /dev/tcp/127.0.0.123/8085 && echo "Port is open" |
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
" Export current file to docx via pandoc | |
!F:\wilcoxjo\opt\pandoc\pandoc.exe -V links-as-notes=true --resource-path=.:F:\wilcox\Documents\support -f markdown+grid_tables -t docx %:p -o %:p:r.docx | |
" Open document in word | |
!C:\PROGRA~2\MICROS~1\Office16\WINWORD.EXE %:p:r.docx | |
" Export to windows clipboard in JIRA wiki format | |
!F:\wilcoxjo\opt\pandoc\pandoc.exe -V links-as-notes=true -f markdown -t jira %:p |clip | |
" Replace HTML with actual chars |
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
Function New-PSWebServer { | |
<# | |
.Synopsis | |
Creates a web server that will invoke PowerShell code based on routes being asked for by the client. | |
.Description | |
New-PSWebServer creates a web server. The web server is composed of a schema that defines the client's requests to routes where PowerShell code is executed. | |
Under the covers, New-PSWebServer uses the HTTPListener .NET class to execute powershell code as requested, retrieves the results and sends data back through the httplistener web server framework. |
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 | |
formail -R cc X-original-cc \ | |
-R to X-original-to \ | |
-R bcc X-original-bcc \ | |
-f -A"To: [email protected]" \ | |
| /usr/sbin/sendmail -t -i | |
# pipe all to a log instead, comment out formail code | |
#tee -a /tmp/trapmail.log > /dev/null |
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
@Injectable() | |
export class UploadService { | |
/** | |
* @param Observable<number> | |
*/ | |
private progress$: Observable<number>; | |
/** | |
* @type {number} | |
*/ |
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/* | |
*.bak | |
######### | |
# Maven # | |
######### | |
target/ | |
pom.xml.tag | |
pom.xml.releaseBackup | |
pom.xml.versionsBackup |
NewerOlder