Download TestFlight from the App Store on your iPhone or iPad.
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
| 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" |
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
| /** | |
| * 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) |
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
| { | |
| "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ı.", |
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
| services: | |
| directus: | |
| image: 'directus/directus:11' | |
| volumes: | |
| - directus-uploads:/directus/uploads | |
| - directus-extensions:/directus/extensions | |
| - directus-templates:/directus/templates | |
| environment: | |
| - ADMIN_EMAIL | |
| - ADMIN_PASSWORD |
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
| 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 |
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
| 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 |
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 { AxiosRequestConfig, default as _axios } from 'axios' | |
| const instance = _axios.create({}) | |
| export const axios = async ({ | |
| method, | |
| url, | |
| data, | |
| ...rest | |
| }: AxiosRequestConfig) => { |
This MR addresses the issue of [insert issue or goal here] by [insert what the changes do].
- [Insert specific changes here, using bullet points]
NewerOlder