This file contains hidden or 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
<!--!!!RENDERHTML--> | |
<!-- notion.so - nextjs renderer page, my custom html block --> | |
<a id="phone-enc" | |
target="_blank" rel="noopener noreferrer" class="notion-link" | |
href=""></a> | |
<script> | |
(async () => { | |
This file contains hidden or 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 panopto video speed | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://boun.cloud.panopto.eu/Panopto/Pages/Viewer.aspx?id=* | |
// @icon https://www.google.com/s2/favicons?domain=panopto.eu | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 video google drive | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://youtube.googleapis.com/embed/* | |
// @icon https://www.google.com/s2/favicons?domain=youtube.googleapis.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 restream guest - close chat popup | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description restream guest - close chat popup | |
// @author emindeniz99.com | |
// @match https://studio.restream.io/guest/* | |
// @icon https://www.google.com/s2/favicons?domain=restream.io | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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
{ | |
"title": "my rules", | |
"rules": [ | |
{ | |
"description": "Maps F6 to Clipboard Screenshot", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "f6" |
This file contains hidden or 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
const https = require('https'); | |
exports.handler = async(event) => { | |
// CHANGE BBK | |
const data = JSON.stringify({ "Key": "BBK", "Value": "Your BBK code (integer)" }); | |
let dataString = ""; | |
const response = await new Promise((resolve, reject) => { | |
const req = https.request({ | |
hostname: 'turk.net', |
This file contains hidden or 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
import * as FormData from "form-data"; | |
base64: string, // it should start with "iVBORw0KGgoA...." instead of "data:image/png;base64," | |
fileName: string // it should include file name and extension, like "saype.jpg" instead of "saype" | |
var formdata = new FormData(); | |
// base64 to buffer, https://stackoverflow.com/questions/37608249/convert-base64-image-to-a-file-in-node-js | |
let bf = Buffer.from(base64, "base64"); |
This file contains hidden or 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
const axios = require("axios") | |
const cheerio = require("cheerio") | |
const sendNotification = async (link) => { | |
let data = "" | |
console.log("testaaa") | |
await axios.get(link).then((res) => { | |
console.log() |