Skip to content

Instantly share code, notes, and snippets.

View emindeniz99's full-sized avatar

Emin Deniz emindeniz99

View GitHub Profile
@emindeniz99
emindeniz99 / phone-block.html
Last active December 31, 2021 06:54
public website with encrypted phone number
<!--!!!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 () => {
@emindeniz99
emindeniz99 / panopto-tampermonkey.user.js
Last active May 6, 2023 06:24
panopto video speed
// ==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==
@emindeniz99
emindeniz99 / google-drive-video-tampermonkey.user.js
Last active May 6, 2023 06:24
video speed for google drive
// ==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==
@emindeniz99
emindeniz99 / restream_guest_remove_chat_popup.user.js
Last active May 6, 2023 06:23
restream guest - close chat popup
// ==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==
{
"title": "my rules",
"rules": [
{
"description": "Maps F6 to Clipboard Screenshot",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "f6"
@emindeniz99
emindeniz99 / script.js
Created June 8, 2021 13:35
turknet vdsl port sorgulama, aws lambda + telegram notification with daily report
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',
@emindeniz99
emindeniz99 / base64ToFormData
Created February 26, 2021 13:03
base64 file to form/data - nodejs
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");
@emindeniz99
emindeniz99 / index.js
Created June 22, 2020 20:51
Boun Quota Scrap
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()