Skip to content

Instantly share code, notes, and snippets.

View TikiCat7's full-sized avatar

Wataru Ikeda TikiCat7

  • Singapore / Tokyo
View GitHub Profile
@TikiCat7
TikiCat7 / ralph.sh
Last active January 8, 2026 14:36
Ralph Wiggums Bash Script (time taken + telegram notification)
#!/bin/bash
set -e
start_time=$(date +%s)
if [ -z "$1" ]; then
echo "Usage: $0 <iterations>"
exit 1
fi
@TikiCat7
TikiCat7 / poke-blend.tsx
Created February 18, 2025 07:57
Shiny pokemon cards using mix-blend-mode in RN 0.77
import { StyleSheet, Platform } from "react-native";
import Animated, {
Easing,
ReduceMotion,
SharedValue,
useAnimatedStyle,
useSharedValue,
withSpring,
withTiming,
} from "react-native-reanimated";