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
| // Make sure to add a className to the html tag. Because uniwind needs it to apply the correct theme styles. | |
| <html lang="en" className="light"></html> |
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
| gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-up "['<Super>Page_Up']" | |
| gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down "['<Super>Page_Down']" | |
| gsettings set org.gnome.desktop.wm.keybindings move-to-workspace-up "['<Super><Shift>Page_Up']" | |
| gsettings set org.gnome.desktop.wm.keybindings move-to-workspace-down "['<Super><Shift>Page_Down']" |
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
| // Source: https://github.com/47ng/nuqs/issues/837#issuecomment-3136982512 | |
| import { | |
| router, | |
| type UnknownOutputParams, | |
| useLocalSearchParams, | |
| useSegments, | |
| } from "expo-router"; | |
| import { | |
| type unstable_AdapterInterface, | |
| unstable_createAdapterProvider, |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| "rootDir": ".", | |
| "paths": { | |
| "unative-form": ["./src/index"] | |
| }, | |
| "allowUnreachableCode": false, | |
| "allowUnusedLabels": false, | |
| // "customConditions": ["react-native-strict-api"], // Remove This | |
| "esModuleInterop": true, |
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
| export default { | |
| inherit: 'inherit', | |
| current: 'currentColor', | |
| transparent: 'transparent', | |
| black: '#000', | |
| white: '#fff', | |
| slate: { | |
| '50': 'oklch(0.984 0.003 247.858)', | |
| '100': 'oklch(0.968 0.007 247.896)', | |
| '200': 'oklch(0.929 0.013 255.508)', |
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 { TinyEmitter } from "tiny-emitter"; | |
| const eventEmitter = new TinyEmitter(); | |
| const eventEmitterActions = { | |
| TAB_ONE_PRESSED: "TAB_ONE_PRESSED", | |
| TAB_TWO_PRESSED: "TAB_TWO_PRESSED", | |
| TAB_THREE_PRESSED: "TAB_THREE_PRESSED", | |
| TAB_FOUR_PRESSED: "TAB_FOUR_PRESSED", | |
| }; |
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
| // Source: https://docs.google.com/spreadsheets/d/1Gj1LidTJgA1TgOjhxTaoQKaZTvV2-xZlvo9XEsBnZ5I/edit#gid=0 | |
| // Reserved Usernames | |
| // Reserved urls | |
| export const reservedSlugs = [ | |
| "admin", | |
| "blog", | |
| "dev", | |
| "ftp", | |
| "mail", |
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 { type TRPCClientErrorBase } from "@trpc/client"; | |
| import { type DefaultErrorShape } from "@trpc/server/unstable-core-do-not-import"; | |
| import { type Path, type UseFormReturn } from "react-hook-form"; | |
| import { type typeToFlattenedError } from "zod"; | |
| type ServerZodError = | |
| | typeToFlattenedError<Record<string, unknown>, string> | |
| | undefined | |
| | null; |
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 { ExpoConfig, ConfigContext } from "expo/config"; | |
| import { withPlugins } from "expo/config-plugins"; | |
| import { withExpoPushyConfig } from "./pushy-expo-config"; | |
| export default ({ config }: ConfigContext): ExpoConfig => { | |
| const otherConfigs: ExpoConfig = { | |
| ...config, | |
| }; | |
| return withPlugins(otherConfigs, [withExpoPushyConfig]); |
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
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| using UnityEngine.SceneManagement; | |
| using System.Runtime.InteropServices; | |
| public class LogicScript : MonoBehaviour | |
| { | |
| [DllImport("__Internal")] |
NewerOlder