Skip to content

Instantly share code, notes, and snippets.

@dennisstewart
dennisstewart / treasurydirect_copypasta.user.js
Last active January 27, 2023 22:44
Re-enables the password box on TreasuryDirect.gov so I can paste from my password manager
// ==UserScript==
// @name TreasuryDirect Copypasta
// @version 0.2
// @description Allow creds to be pasted from a password manager into the TreasuryDirect login form.
// @author Dennis Stewart
// @license The Strong Style Public License https://raw.githubusercontent.com/dennisstewart/cvs-checker-py/main/LICENSE
// @match https://*.treasurydirect.gov/RS/PW-Display.do*
// @icon https://www.google.com/s2/favicons?sz=64&domain=treasurydirect.gov
// @grant none
// ==/UserScript==
@simply-coded
simply-coded / CreateExcelFile.vbs
Last active July 24, 2024 20:12
Use VBScript to create, open, and edit excel files. ( Excel needs to be installed on your computer ).
'Microsoft Excel Automation Basics
':: Create and edit an Excel File.
'---------------------------------
'create the excel object
Set objExcel = CreateObject("Excel.Application")
'view the excel program and file, set to false to hide the whole process
objExcel.Visible = True