Skip to content

Instantly share code, notes, and snippets.

@ogumonar
ogumonar / CC.md
Created April 30, 2026 21:39 — forked from retlehs/CC.md
Backlinks for any domain via Common Crawl
@ogumonar
ogumonar / alpine_3.19_desktop_setup.md
Created November 5, 2025 12:50 — forked from c0m4r/alpine_3.19_desktop_setup.md
Alpine 3.19 desktop setup

Alpine 3.19 desktop setup

Install Alpine

  1. Get Standard ISO from https://alpinelinux.org/downloads/
  2. Boot the ISO and log in as root (no password required).
  3. Run setup-alpine and install using defaults. For partition layout use sys or lvmsys.

Desktop Setup

@ogumonar
ogumonar / index.php
Created June 30, 2024 01:37 — forked from lotharthesavior/index.php
PHP OpenSwoole Server with query parameters and global scope example.
<?php
use Swoole\Http\Request;
use Swoole\Http\Response;
use Swoole\Http\Server;
$user = 'World';
$server = new Server("0.0.0.0", 8003);