Skip to content

Instantly share code, notes, and snippets.

View jubishop's full-sized avatar
🎼
Making a podcast app.

Justin Bishop jubishop

🎼
Making a podcast app.
View GitHub Profile
@lifeutilityapps
lifeutilityapps / StandardCopyMenu.swift
Last active April 1, 2025 12:00
A reusable SwiftUI context menu component for programmatically creating a menu of user-copiable values
//
// StandardCopyMenu.swift
// DownPay for iOS
// lifeutilityapps.com/downpay
//
// Created by Life Utility Apps on 12/15/24.
//
import SwiftUI
@ChengLong
ChengLong / run_long_process_in_background.rb
Last active April 19, 2021 20:59
Run Background Process in Sinatra
require 'sinatra'
get '/long_process' do
child_pid = Process.fork do
# hard work is done here...
sleep 10
Process.exit
end