Skip to content

Instantly share code, notes, and snippets.

View applehat's full-sized avatar
✝️
Sola Fide

Cameron Chunn applehat

✝️
Sola Fide
View GitHub Profile
jQuery(document).on("click", "#discountPopupButton" , function(e) {
e.preventDefault();
alert("hello world");
jQuery('#testMessage' ).text('test');//elementor-heading-title
jQuery('.elementor-heading-title' ).text('testing');
jQuery( '.elementor-price-table__integer-part' ).text("nother test");
})
/*
$(document).on("click", "#discountPopupButton" , function() {
//jQuery( '#testButton' ).click(function() { // Binds this function to run when HTML element with id=discount is clicked
@applehat
applehat / nvidia_uncap.sh
Created April 8, 2022 16:08
Unraid User Script for uncapping nvidia GPUs for use in transcoding
#!/bin/bash
echo ""
echo "==== NVENC Session Limit Removal ===="
echo ""
if [ -f "/patch.sh" ]; then
echo "Patch Already found."
else
echo "Patch does not exist -- Downloading"
wget https://raw.githubusercontent.com/keylase/nvidia-patch/master/patch.sh
chmod +x patch.sh
This file has been truncated, but you can view the full file.