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 android.content.Context | |
| import android.graphics.Bitmap | |
| import android.graphics.BitmapFactory | |
| import android.graphics.BlurMaskFilter | |
| import android.graphics.Matrix | |
| import android.view.ViewGroup | |
| import androidx.camera.core.CameraSelector | |
| import androidx.camera.core.ImageCapture | |
| import androidx.camera.core.ImageCaptureException | |
| import androidx.camera.core.ImageProxy |
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 UIKit | |
| final class MenuControl: UIControl { | |
| private let label: UILabel = { | |
| let label = UILabel() | |
| label.text = "Public API-Only Menu" | |
| label.font = .boldSystemFont(ofSize: 15) | |
| label.textAlignment = .center | |
| label.textColor = .white |
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 2026 Kyriakos Georgiopoulos | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
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 bash | |
| set -euo pipefail | |
| bold() { printf "\033[1m%s\033[0m\n" "$*"; } | |
| info() { printf "โข %s\n" "$*"; } | |
| warn() { printf "\033[33m! %s\033[0m\n" "$*"; } | |
| err() { printf "\033[31mโ %s\033[0m\n" "$*" >&2; } | |
| ok() { printf "\033[32mโ %s\033[0m\n" "$*"; } | |
| require_macos() { |
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
| โญโโโ Claude Code v2.1.12 โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ | |
| โ โ Tips for getting started โ | |
| โ Welcome back Jonny! โ Run /init to create a CLAUDE.md file with instructions for Claude โ | |
| โ โ โ | |
| โ โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ | |
| โ โโโโโโโ โ Recent activity |
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
| [alias] | |
| co = checkout | |
| cob = checkout -b | |
| cm = commit -m | |
| ca = commit --amend | |
| s = status -sb | |
| st = status | |
| aa = add --all | |
| ap = add -p | |
| br = branch |
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
| package com.example.myapplication | |
| import androidx.compose.foundation.layout.padding | |
| import androidx.compose.material3.Text | |
| import androidx.compose.material3.VerticalDivider | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.layout.IntrinsicMeasurable | |
| import androidx.compose.ui.layout.IntrinsicMeasureScope | |
| import androidx.compose.ui.layout.Layout |
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
| @Composable | |
| fun HeartBeatScreen( | |
| modifier: Modifier = Modifier | |
| ) { | |
| Box( | |
| modifier = modifier | |
| .fillMaxSize(), | |
| contentAlignment = Alignment.Center | |
| ) { | |
| AnimatedLayeredHearts(modifier) |
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
| # Important rules you HAVE TO FOLLOW | |
| - Always add debug logs & comments in the code for easier debug & readability | |
| - Every time you choose to apply a rule(s), explicitly state the rule{s} in the output. You can abbreviate the rule description to a single word or phrase | |
| - Do not make any changes, until you have 95% confidence that you know what to build. Ask me follow up questions until you have that confidence. | |
| # Project structure | |
| - All the files go inside /tip tracker | |
| - The main swift file is tip_trackerApp.swift | |
| # Tech Stack |
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 androidx.compose.animation.core.RepeatMode | |
| import androidx.compose.animation.core.VectorConverter | |
| import androidx.compose.animation.core.animateValue | |
| import androidx.compose.animation.core.infiniteRepeatable | |
| import androidx.compose.animation.core.keyframesWithSpline | |
| import androidx.compose.animation.core.rememberInfiniteTransition | |
| import androidx.compose.foundation.Image | |
| import androidx.compose.foundation.layout.Box | |
| import androidx.compose.foundation.layout.BoxWithConstraints |
NewerOlder