Skip to content

Instantly share code, notes, and snippets.

View codermert's full-sized avatar
🟢
Online

Mert Salık codermert

🟢
Online
View GitHub Profile
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-08
Image input capabilities: Enabled
Personality: v2
Do not reproduce song lyrics or any other copyrighted material, even if asked.
You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor.
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively.
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth.
@omergocmen
omergocmen / business-partner-scraper.json
Created June 23, 2025 19:22
business-partner-scraper
{
"name": "Business partner scraper",
"nodes": [
{
"parameters": {},
"id": "c576f9c1-8e57-4e4b-ab5d-4c4ea7dd304d",
"name": "When clicking \"Execute Workflow\"",
"type": "n8n-nodes-base.manualTrigger",
"position": [
700,
@omergocmen
omergocmen / workflow.json
Created March 4, 2025 20:52
Social Media Content Generator And Publisher | X, Linkedin | n8n
{
"name": "Social Media Content Generator And Publisher",
"nodes": [
{
"parameters": {
"authentication": "basicAuth",
"formTitle": "post",
"formDescription": "post",
"formFields": {
"values": [
@iRi-E
iRi-E / YouTube_Autoskip_Ads.user.js
Last active April 27, 2024 15:28
Userscript that automatically clicks a skip button on YouTube video ads
// ==UserScript==
// @name YouTube Autoskip Ads
// @namespace https://gist.github.com/iRi-E
// @version 0.3.2
// @description Automatically click skip button on YouTube video ads
// @author iRi_E
// @license MIT
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant none
@arpeggio068
arpeggio068 / gist:beaf56502b872870d41ef571ab4f25e8
Last active October 3, 2024 16:15
Booking Reservation CRUD
//code.gs
const spreadsheetId = 'Your Google Sheet ID';
const ss = SpreadsheetApp.openById(spreadsheetId);
function doGet(e){
return HtmlService.createTemplateFromFile("main").evaluate()
.setTitle("Admin Booking")
.addMetaTag('viewport', 'width=device-width, initial-scale=1')
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
}
@krooluang
krooluang / LOGIN LOGOUT
Last active January 6, 2023 19:40
LOGIN LOGOUT
Copy Sheet : https://docs.google.com/spreadsheets/d/1l-wdzwGpTwx7WMiHXdo7WKGdQAD1c0_f2z8-R8YVzck/copy
window.open("https://www.google.com/", "_blank",);
<!--Signin-->
<center>
<span id="spin1" class="spinner-grow spinner-grow-sm text-danger d-none" role="status" aria-hidden="true"></span>
<span id="spin2" class="spinner-grow spinner-grow-sm text-warning d-none" role="status" aria-hidden="true"></span>
//code.gs
const spreadsheetId = '1eFacH7dqvPoT-LzWXQVNmTvpyJJ-B88y-dNlzHiro0U';
const ss = SpreadsheetApp.openById(spreadsheetId);
function doGet(e) {
var tmp = HtmlService.createTemplateFromFile("index");
return tmp.evaluate()
.setTitle("ค้นหาง่ายๆ")
.addMetaTag('viewport', 'width=device-width, initial-scale=1')
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
@barraIhsan
barraIhsan / README.md
Last active August 22, 2025 13:38
Youtube Premium Logo

YouTube Premium Logo

Description

The YouTube Premium Logo userscript replaces the YouTube logo with the YouTube Premium logo.
idk why you need this, but using an adblocker[^1] + this script, will give the appearance that you have YouTube Premium.

Note

This userscript just replaces the youtube logo you see on the navbar and
inside the collapsible menu. This will NOT grant you premium feature.

@neno-tech
neno-tech / code.gs
Created May 20, 2021 02:46
CRUD Web App Full 2021
var sheetID = 'xxx'//แก้จุดที่1
function doGet(e) {
if (!e.parameter.page || e.parameter['page']=='index') {
var htmlOutput = HtmlService.createTemplateFromFile('index')
htmlOutput.message = '';
return htmlOutput.evaluate()
.setTitle("web app")
.addMetaTag('viewport', 'width=device-width , initial-scale=1')
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL)
@arpeggio068
arpeggio068 / code ระบบบันทึกเลขหนังสือออนไลน์ 5_2_2021
Last active January 4, 2024 05:27
code ระบบบันทึกเลขหนังสือออนไลน์ 5/2/2021
//Code.gs
var url = "xxx";
var ss = SpreadsheetApp.openByUrl(url);
function doGet(e) {
var tmp = HtmlService.createTemplateFromFile("uform");
return tmp.evaluate()
.setTitle("เลขหนังสือ")
.addMetaTag('viewport', 'width=device-width, initial-scale=1')
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);