Skip to content

Instantly share code, notes, and snippets.

View fffelix-jan's full-sized avatar
🪟
NT AUTHORITY\SYSTEM

Félix An fffelix-jan

🪟
NT AUTHORITY\SYSTEM
View GitHub Profile
@fffelix-jan
fffelix-jan / downloadpdf.js
Created June 20, 2022 05:52
Download PDF from PDF.js viewer when download button is hidden (copy and paste into the console)
document.getElementById('download').click();
@fffelix-jan
fffelix-jan / VBAProgramOpener.txt
Last active June 5, 2021 00:28
An MS Word VBA subroutine to open a file opening dialog to select an arbitrary program to execute.
Sub RunProgram()
On Error GoTo OpenFileError
Dim filePath As String
With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = False
.Title = "Run Program"
.Show
filePath = .SelectedItems.Item(1)