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
| { | |
| "reload_style_on_change": true, | |
| "layer": "top", | |
| "position": "top", | |
| "spacing": 0, | |
| "height": 26, | |
| "modules-left": ["custom/omarchy", "hyprland/workspaces"], | |
| "modules-center": ["clock", "custom/update", "custom/voxtype", "custom/screenrecording-indicator"], | |
| "modules-right": [ | |
| "group/tray-expander", |
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
| // Zed keymap | |
| // | |
| // For information on binding keys, see the Zed | |
| // documentation: https://zed.dev/docs/key-bindings | |
| // | |
| // To see the default key bindings run `zed: open default keymap` | |
| // from the command palette. | |
| [ | |
| { | |
| "context": "Workspace", |
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
| { | |
| "agent": { | |
| "default_profile": "write", | |
| "inline_assistant_model": { | |
| "provider": "zed.dev", | |
| "model": "claude-sonnet-4-5" | |
| }, | |
| "default_model": { | |
| "provider": "zed.dev", | |
| "model": "claude-opus-4-6" |
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
| const express = require('express'); | |
| const cors = require('cors'); | |
| const mongoose = require('mongoose'); | |
| const { MongoClient, ServerApiVersion, ObjectId } = require('mongodb'); | |
| const jwt = require('jsonwebtoken'); | |
| require('dotenv').config(); | |
| const bcrypt = require('bcrypt'); | |
| const app = express(); | |
| const port = process.env.PORT || 4000; |
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
| "use client"; | |
| import { useRouter } from "next/navigation"; | |
| import React from "react"; | |
| export function ClientComp() { | |
| const router = useRouter(); | |
| React.useEffect(() => { | |
| const intervalId = setInterval(() => { | |
| router.refresh(); |
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
| [ | |
| { | |
| "name": "Afghanistan", | |
| "dial_code": "+93", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "Aland Islands", | |
| "dial_code": "+358", | |
| "code": "AX" |