Skip to content

Instantly share code, notes, and snippets.

@website-tericsoft
website-tericsoft / output.md
Created April 10, 2026 10:16
Checklist for $('If').item.json.output.primary_keyword

Blog Page Content Checklist

🔗 Keyword Sheet: https://docs.google.com/spreadsheets/d/1dHntj_bcACeGX9dVtxf_if1JlZVyJmPY0VhlJbAq1Ek/edit

[Intent: Informational - 80%, Commercial - 20%, Transactional - 0%, Navigational - 0%]


Title::

@dorlakersin-ai
dorlakersin-ai / Kapsaml NAP Uygulama Stratejileri.md
Created April 10, 2026 10:16
Kapsamlı NAP Uygulama Stratejileri

Kapsamlı NAP Uygulama Stratejileri

  1. Temel Kavramlar ve Tanımlar

Yerel SEO, bir işletmenin çevrimiçi görünürlüğünü artırmak için kullanılan stratejilerin bütünüdür. Bu stratejiler, özellikle bir işletmenin fiziksel konumuna dayalı olarak, yerel arama sonuçlarında üst sıralarda yer almayı hedefler.

🔗 Devamını Oku


#include <stdio.h>
#include <limits.h>
#define MAX 100
// adjacency list representation
int adj[MAX][MAX]; // stores neighbors
int weight[MAX][MAX]; // stores weights
int size[MAX]; // number of neighbors for each node
@navidrast
navidrast / schema_clean.sql
Created April 10, 2026 10:15
ReturnPilot schema for Supabase Cloud POC
SET check_function_bodies = false;
--
--
--
-- Name: public; Type: SCHEMA; Schema: -; Owner: -
@dorlakersin-ai
dorlakersin-ai / Modern Push Notifications Gelitirme Meto.md
Created April 10, 2026 10:15
Modern Push Notifications Geliştirme Metodolojisi

Modern Push Notifications Geliştirme Metodolojisi

  1. Temel Kavramlar ve Tanımlar

Push notifications, bir uygulamanın kullanıcıya gerçek zamanlı olarak bilgi göndermesini sağlayan bir iletişim yöntemidir. Bu bildirimler, kullanıcının cihazında görünür ve belirli bir uygulama tarafından tetiklenir.

🔗 Devamını Oku


@dewomser
dewomser / docker-compose.yaml
Created April 10, 2026 10:15
Snowflake als dockerimage. Torprojekt unterstützen. Tor
services:
snowflake-proxy:
network_mode: host
image: containers.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake:latest
container_name: snowflake-proxy
restart: unless-stopped
# For a full list of Snowflake Proxy CLI parameters see
# https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/tree/main/proxy?ref_type=heads#running-a-standalone-snowflake-proxy
# command: [ "-ephemeral-ports-range", "30000:60000" ]
watchtower:
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created April 10, 2026 10:15
Rimworld output log published using HugsLib Standalone Log Publisher
Log uploaded on Friday, April 10, 2026, 1:15:08 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0Harmony(2.4.2), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[v:2.4.2.0][mv:2.4.2.0]: 0Harmony(av:2.4.2,fv:2.4.1), HarmonyMod(2.4.2)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies)
Odyssey(Ludeon.RimWorld.Odyssey): (no assemblies)
@lubospetrovic13
lubospetrovic13 / petriflow_1775816117017.xml
Created April 10, 2026 10:15
Petriflow process — generated by Petriflow AI Generator
<?xml version="1.0" encoding="UTF-8"?>
<document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://petriflow.com/petriflow.schema.xsd">
<id>hr_leave_request</id>
<version>1.0.0</version>
<initials>HLR</initials>
<title>HR Leave Request</title>
<icon>event</icon>
<defaultRole>true</defaultRole>
<anonymousRole>false</anonymousRole>
<transitionRole>false</transitionRole>
@yxe-king
yxe-king / auto-add-ssl-workers.js
Created April 10, 2026 10:14 — forked from eooce/auto-add-ssl-workers.js
auto-add-ssl-workers
export default {
async fetch(request, env, ctx) {
const url = new URL(request.url);
// 处理 API 请求:支持 POST (/api/add-ssl) 和 GET (/?...)
if (
(url.pathname === '/api/add-ssl' && request.method === 'POST') ||
(url.pathname === '/' && request.method === 'GET' && url.searchParams.has('zoneId'))
) {
return handleApiRequest(request, url.searchParams);
@pooja-varshini
pooja-varshini / career-analysis.html
Created April 10, 2026 10:14
Career Intelligence Analysis
<!DOCTYPE html><html lang='en'><head><meta charset='UTF-8'><meta name='viewport' content='width=device-width, initial-scale=1.0'><title>Career Intelligence Analysis</title><style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
background: #f1f5f9; color: #1e293b;
padding: 24px 16px 48px; font-size: 14px; line-height: 1.65;
}
.page { max-width: 720px; margin: 0 auto; }
.section-card {