Skip to content

Instantly share code, notes, and snippets.

theme = "light:Builtin Light,dark:Builtin Dark"
font-family = "JetBrainsMono NFM Regular"
font-size = 16
window-padding-x = 10
window-padding-y = 10
window-decoration = true
cursor-style=block
adjust-cell-height = 12%
mouse-scroll-multiplier = 2
window-colorspace = "display-p3"

Testing the App via TestFlight + Expo Tunnel

For Testers (Team Members)

Step 1 — Install TestFlight

Download TestFlight from the App Store on your iPhone or iPad.

Step 2 — Join the Beta

@raelsei
raelsei / downloader.js
Created January 27, 2026 22:25
cryptologos.cc downloader
/**
* CRYPTO LOGOS SVG İNDİRİCİ - ULTRA KAPSAMLI (HATA DÜZELTİLMİŞ)
*
* KULLANIM:
* 1. https://cryptologos.cc/ sitesini açın
* 2. F12 ile console açın
* 3. Bu scripti yapıştırın
*
* ÖZELLİKLER:
* - Sitedeki TÜM coinleri bulur (binlerce)
{
"brand": "IFIEX",
"title": "IFIEX - Kripto Borsası",
"logo": {
"square": "https://poseidon.sfo3.cdn.digitaloceanspaces.com/webcore/square.svg",
"wide": "https://poseidon.sfo3.cdn.digitaloceanspaces.com/webcore/wide.svg"
},
"meta": {
"title": "IFIEX - Güvenli Kripto Borsası",
"description": "Türkiye'nin en güvenli kripto para borsası.",
@raelsei
raelsei / compose.yml
Created December 24, 2025 22:11
Directus Simple Docker Compose File
services:
directus:
image: 'directus/directus:11'
volumes:
- directus-uploads:/directus/uploads
- directus-extensions:/directus/extensions
- directus-templates:/directus/templates
environment:
- ADMIN_EMAIL
- ADMIN_PASSWORD
@raelsei
raelsei / docker-compose.yml
Created July 8, 2025 10:54
Postal Mail Compose File
version: '3.8'
services:
postal-mariadb:
image: mariadb:latest
container_name: postal-mariadb
restart: unless-stopped
environment:
MARIADB_ROOT_PASSWORD: postal-root-password
MARIADB_DATABASE: postal
Feature Zustand Redux Toolkit
Size ~2KB minified ~10-15KB (with dependencies)
Learning Curve Super easy, hook-based Moderate, Redux concepts required
Boilerplate Barely any Manageable, but more than Zustand
State Model Flexible, object-based Normalized, reducer-based
DevTools Lightweight, built-in Robust, with time-travel debugging
Async Handling Manual or via middleware Streamlined with createAsyncThunk
TypeScript Support Awesome, minimal setup Awesome, with strong type inference
Best For Small to medium apps, quick wins Large apps, complex state
@raelsei
raelsei / button.style.ts
Last active March 3, 2023 10:44
Tailwind Button with theme example
export const inputVariant = {
primary: 'input-primary',
secondary: 'input-secondary',
accent: 'input-accent',
ghost: 'input-ghost',
}
export const inputSize = {
xs: 'input-xs',
sm: 'input-sm',
@raelsei
raelsei / axios-wrapper.ts
Last active August 13, 2024 23:02
Axios Hook
import { AxiosRequestConfig, default as _axios } from 'axios'
const instance = _axios.create({})
export const axios = async ({
method,
url,
data,
...rest
}: AxiosRequestConfig) => {

🚀 Purpose

This MR addresses the issue of [insert issue or goal here] by [insert what the changes do].

🎯 Related Issues/Merge Requests

🔍 Changes

  • [Insert specific changes here, using bullet points]