Skip to content

Instantly share code, notes, and snippets.

View gurkanozsoy's full-sized avatar
💭
I may be slow to respond.

Gürkan Özsoy gurkanozsoy

💭
I may be slow to respond.
View GitHub Profile
@gurkanozsoy
gurkanozsoy / script.js
Last active October 2, 2025 10:48
SMF forumlarda print screen için kopyala-yapıştır fonksiyonu
//print screen
document.addEventListener('paste', function(e) {
// Panodan veri al
const items = (e.clipboardData || e.originalEvent.clipboardData).items;
for (let item of items) {
if (item.type.indexOf('image') !== -1) {
// Görüntü dosyasını al
const blob = item.getAsFile();
const formData = new FormData();
formData.append('image', blob, 'screenshot.png');
@gurkanozsoy
gurkanozsoy / gist:9a7de3109932225447072e1224e107b6
Last active October 2, 2025 10:34
X.Com için takipten çıkanları listeleme
// ==UserScript==
// @name X.com Takipçi Listesi
// @namespace http://tampermonkey.net/
// @version 1.2
// @description X.com'da sizi geri takip etmeyen kullanıcıların linklerini bir dosyaya kaydeder.
// @author Gürkan Özsoy
// @match https://x.com/otukentimur/following*
// @grant none
// ==/UserScript==