Things to check:
-
AppDelegate - Package Config - Dependencies
Things to check:
AppDelegate| 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"); |
| 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 |
2024-06-19 - OSS Library Status + Report.md Metadata
2024-06-05 - Weird Ideas for Tamagui + Native 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.
Metadata
2024-06-02 - Learning Tamagui Fundamentals| See Comments for Gif |
| 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; |
| // | |
| // AppDelegate.swift | |
| // Created by Dominic Go on 6/24/20. | |
| // | |
| import Foundation | |
| import UIKit | |
| @UIApplicationMain | |
| class AppDelegate: UIResponder, UIApplicationDelegate { |