Skip to content

Instantly share code, notes, and snippets.

View comiclandapp's full-sized avatar
💭
Resurrecting and Liquid Glass-ifying ComicLand

Antonio Montes comiclandapp

💭
Resurrecting and Liquid Glass-ifying ComicLand
View GitHub Profile
@comiclandapp
comiclandapp / SFSymbols.swift
Created September 21, 2025 13:50 — forked from adamshack/SFSymbols.swift
SwiftUI Images for Apple System graphics from the SF Symbol Set (version 4.0)
//
// SFSymbols.swift
//
// Created from SF Symbols (Version 4.0 [80])
// Copyright ©2019-2022 Apple Inc.
//
import SwiftUI
public enum SFSymbols {}
@comiclandapp
comiclandapp / String+HTML.swift
Created November 8, 2025 13:52 — forked from valvoline/String+HTML.swift
A swift string extension to deal with HTML
//
// String+HTML.swift
// AttributedString
//
// Created by Costantino Pistagna on 08/11/2017.
// Copyright © 2017 sofapps.it All rights reserved.
//
import UIKit
import Foundation
@comiclandapp
comiclandapp / device_setup.py
Created February 18, 2026 00:31 — forked from ViViDboarder/device_setup.py
WeMo device setup script for pywemo
from getpass import getpass
from pywemo import discovery
from pywemo.ouimeaux_device import Device
def discover() -> Device | None:
for device in discovery.discover_devices():
print(device)
if input("y/N? ").lower() == "y":