Skip to content

Instantly share code, notes, and snippets.

View dominicstop's full-sized avatar
😞
sad and tired

Dominic Go dominicstop

😞
sad and tired
View GitHub Profile

2025-03-18 - react-native-ios-utilities - Crash Investigation

Gist URL


Things to check:

  • AppDelegate
  • Package Config - Dependencies
function fizzBuzz(n: number): string[] {
let results: Array<string> = [];
for(let i = 1; i <= n; i++){
if((i % 3 == 0) && (i % 5 == 0)){
results.push("FizzBuzz");
} else if(i % 3 == 0) {
results.push("Fizz");
@dominicstop
dominicstop / README.md
Created January 25, 2025 07:30
2025-01-25-15-05-29 - Luma

Script Output



Iteration 1

URL: https://lu.ma/signin
Title: Sign In · Luma
Summary: Sign in to Luma to host and attend events, subscribe to calendars, and connect with your friends.
blurEffectStyle: systemUltraThinMaterial - vibrancyEffectStyle: secondaryLabel
blurEffectStyle: systemThinMaterial - vibrancyEffectStyle: secondaryLabel
blurEffectStyle: systemUltraThinMaterialLight - vibrancyEffectStyle: secondaryLabel
blurEffectStyle: systemThinMaterialLight - vibrancyEffectStyle: secondaryLabel
filter=vibrantColorMatrix parameters={(inputColorMatrix=[{identity}][{redPrimary={0.936297 -0.321864 -0.061933 0.000000} greenPrimary={-0.163553 0.778651 -0.062598 0.000000} bluePrimary={-0.164217 -0.320868 1.037585 0.000000} alphaPrimary={0.000000 0.000000 0.000000 1.000000} additiveColor={0.048750 0.048750 0.048750 0.000000}}])}
- requestedValues - inputColorMatrix: ColorMatrixRGBA(m11: 0.9362975, m12: -0.3218643, m13: -0.0619332, m14: 0.0, m15: 0.04874998, m21: -0.1635529, m22: 0.7786505, m23: -0.06259762, m24: 0.0, m25: 0.04874998, m31: -0.1642173, m32: -0.3208677, m33: 1.037585, m34: 0.0, m35: 0.04875004, m41: 0.0, m42: 0.0, m43: 0.0, m44: 1.0, m45: 0.0)
blurEffectSt
@dominicstop
dominicstop / 2024-06-19 - OSS Library Status + Report.md
Last active July 27, 2024 08:08
2024-06-19 - OSS Library Status + Report

Weird Ideas for Tamagui + Native

Metadata

  • File Name: 2024-06-05 - Weird Ideas for Tamagui + Native 
  • URL: Gist -

While reading the code + docs for tamagui, i came up w/ some weird ideas to impl, for tamagui. They are possible to implement, but might be impractical or don't have any merit; nevertheless, i wanted to write them down anyways.

@dominicstop
dominicstop / Crash Report
Created March 26, 2024 17:02
Laptop Crashing Randomly...
See Comments for Gif
@dominicstop
dominicstop / kill_adobe.command
Last active November 1, 2025 02:27
Force Kill/Terminate All Adobe-Related Process and Apps in MacOS
declare -a adobeProcessList=('AdobeCRDaemon' 'AdobeIPCBroker' 'com.adobe.acc.installer.v2' 'CCXProcess.app' 'CCLibrary.app' 'Adobe CEF Helper' 'Core Sync' 'Creative Cloud Helper' 'Adobe Desktop Service' 'Creative Cloud');
for processName in "${adobeProcessList[@]}"; do
pgrep -f "$(echo $processName)" > /dev/null;
if [ $? -ne 0 ]; then
echo "process not running, skipping: ${processName}";
continue;
fi;
@dominicstop
dominicstop / AppDelegate.swift
Last active August 3, 2020 11:16
Example Code: Migrating/Converting a React Native project's entry point/main from Obj-C to Swift (Alt: Make React Native use Swift instead of the Obj-C main method 😂)
//
// AppDelegate.swift
// Created by Dominic Go on 6/24/20.
//
import Foundation
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {