Skip to content

Instantly share code, notes, and snippets.

View 0xMario27's full-sized avatar
🇨🇳
Focusing

0xMario 0xMario27

🇨🇳
Focusing
  • 08:27 (UTC +08:00)
View GitHub Profile
@0xMario27
0xMario27 / change-arc-icon.md
Created February 2, 2025 14:28 — forked from gabe565/change-arc-icon.md
Change Arc Browser Icon

Change Arc Browser Icon

arc

A collection of commands that change the Arc Browser icon on macOS.

Commands

Theme Command
Candy Arc defaults write company.thebrowser.Browser currentAppIconName candy
@0xMario27
0xMario27 / wsgi.md
Last active December 11, 2017 10:26
# coding: utf-8

from wsgiref.simple_server import make_server


def application(env, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    return [b'<h1>Hello World.</h1>']