Skip to content

Instantly share code, notes, and snippets.

[nv_rc] -- [auto]
[hevc_mode] -- [0]
[dwmflush] -- [enabled]
[gamepad] -- [x360]
[nv_coder] -- [auto]
[min_log_level] -- [2]
[amd_quality] -- [default]
[origin_web_ui_allowed] -- [lan]
[vt_software] -- [auto]
[amd_coder] -- [auto]
@elias-rod
elias-rod / waitForKeyElements.js
Created April 23, 2020 02:30 — forked from BrockA/waitForKeyElements.js
A utility function, for Greasemonkey scripts, that detects and handles AJAXed content.
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);
@elias-rod
elias-rod / myFirstAzureFunction.cs
Last active August 8, 2019 22:35
Azure function that translates text in any language to English
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using System.Net.Http;