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
// ==UserScript== | |
// @name noVNC Paste for Proxmox | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2a | |
// @description Pastes text into a noVNC window (for use with Proxmox specifically) | |
// @author Chester Enright | |
// @match https://* | |
// @include /^.*novnc.*/ | |
// @require http://code.jquery.com/jquery-3.3.1.min.js | |
// @grant none |
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
#!/usr/bin/env python | |
# Jacob Salmela | |
# Make PyPDF2 is installed: sudo easy_install PyPDF2 | |
# https://jacobsalmela.com/2016/08/12/merge-pdfs-natively-with-a-right-click-in-os-x/ | |
import sys | |
import os | |
from PyPDF2 import PdfFileMerger, PdfFileReader | |
merger = PdfFileMerger() |
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
<!--- STEP 1 - ?event=shop-cart.cfm ---> | |
<cfscript> | |
stDetails = structNew(); | |
stDetails.cartTotal = 200.00; | |
stDetails.invoiceno = 3; | |
</cfscript> | |
<cfhttp url="https://api-3t.paypal.com/nvp" method="post"> | |
<!--- auth ---> | |
<cfhttpparam type="formfield" name="USER" value="#application.pp.username#" /> |