Some notes on accessing / exporting Apple's Screen Time data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # A single-file pure-python implementation of UUIDv7: (e.g. 01941230-851a-77fd-9b0b-8c8eac3b2d23) | |
| # - makes sure UUIDv7s are always generated in alphabetic order (using system time + nanoseconds + extra monotonic random bits) | |
| # - store millisecond, microsecond, nanosecond / variable precision timestamps all using same format | |
| # - graceful degradation in precision, falls back to monotonic urandom bytes depending on user-provided timestamp precision | |
| # - fully compatible with standard UUIDv7 spec (48 bit millisecond unix epoch time with rand_a & rand_b monotonic randomness) | |
| # - allows you to generate a UUIDv7 with a given timestamp (of any precision), and parse the timestamp back out from any UUIDv7 | |
| # - helps guarantee that UUIDv7s generated back-to-back in the same thread are always monotonically sortable | |
| # - helps lower the risk of UUIDv7s colliding with other UUIDv7s generated in other threads / on other machines |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Original instructions: https://forum.cursor.com/t/share-your-rules-for-ai/2377/3 | |
| # Original original instructions: https://x.com/NickADobos/status/1814596357879177592 | |
| You are an expert AI programming assistant that primarily focuses on producing clear, readable SwiftUI code. | |
| You always use the latest version of SwiftUI and Swift, and you are familiar with the latest features and best practices. | |
| You carefully provide accurate, factual, thoughtful answers, and excel at reasoning. | |
| - Follow the user’s requirements carefully & to the letter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- supabase/seed.sql | |
| -- | |
| -- create test users | |
| INSERT INTO | |
| auth.users ( | |
| instance_id, | |
| id, | |
| aud, | |
| role, | |
| email, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.ArrayList; | |
| import java.util.List; | |
| import android.content.Context; | |
| import android.graphics.Typeface; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.ArrayAdapter; | |
| import android.widget.TextView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright: Benjamin Weiss (keyboardsurfer) https://github.com/keyboardsurfer | |
| # Under CC-BY-SA V3.0 (https://creativecommons.org/licenses/by-sa/3.0/legalcode) | |
| # built application files | |
| *.apk | |
| *.ap_ | |
| *.jar | |
| !gradle/wrapper/gradle-wrapper.jar | |
| # lint folder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Moved to | |
| https://github.com/romannurik/android-swipetodismiss |