submission by : Aryan Kathawale.
It's like the BookMyShow screen: pick a theatre and you see the next 7 days.
Choose a date → see all movies playing that day in that theatre, with showtimes, language, 2D/3D, certification, etc.
submission by : Aryan Kathawale.
It's like the BookMyShow screen: pick a theatre and you see the next 7 days.
Choose a date → see all movies playing that day in that theatre, with showtimes, language, 2D/3D, certification, etc.
| %------------------------- | |
| % Resume in Latex | |
| % Author : Aryan Kathawale | |
| % Based off of: https://github.com/sb2nov/resume | |
| % License : MIT | |
| %------------------------ | |
| \documentclass[letterpaper,11pt]{article} | |
| \usepackage{latexsym} |
| "use client" | |
| import React from "react" | |
| import { useRef, useEffect, useCallback, useState, type HTMLAttributes } from "react" | |
| import { cn } from "@/lib/utils" | |
| // Constants for wave animation behavior | |
| const WAVE_THRESH = 6 | |
| const CHAR_MULT = 2 |
| import { Effect, Schema, Console } from "effect"; | |
| import { | |
| FetchHttpClient, | |
| HttpClient, | |
| HttpClientRequest, | |
| HttpClientResponse, | |
| } from "@effect/platform"; | |
| // ============================================================================ | |
| // Custom Errors (Effect best practice - use tagged errors) |
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run `zed: open default settings` from the | |
| // command palette (cmd-shift-p / ctrl-shift-p) | |
| { | |
| "buffer_font_family": "Monaspace Krypton", |
| #include <iostream> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <set> | |
| using namespace std; | |
| // Function to calculate factorial | |
| long long factorial(int n) { | |
| if (n <= 1) return 1; | |
| long long result = 1; |
https://www.npmjs.com/package/next-themes
| import { Config, Console, Effect, Layer, Schema } from "effect"; | |
| import { Prompt } from "@effect/cli"; | |
| import { AiChat, AiTool, AiToolkit } from "@effect/ai"; | |
| import { AnthropicClient, AnthropicLanguageModel } from "@effect/ai-anthropic"; | |
| import { BunContext, BunRuntime } from "@effect/platform-bun"; | |
| import * as FetchHttpClient from "@effect/platform/FetchHttpClient"; | |
| import {OpenAiClient, OpenAiLanguageModel} from "@effect/ai-openai" |
| import { Effect ,Data} from "effect"; | |
| import { Schema } from "@effect/schema"; | |
| interface Todo{ | |
| id: number; | |
| title: string; | |
| } | |
| const TodosSchema = Schema.Array( | |
| Schema.Struct({ |
| "use client"; | |
| import React, { useRef, useState, useMemo } from "react"; | |
| import { Canvas, useFrame } from "@react-three/fiber"; | |
| import { XR, VRButton, useXR, createXRStore } from "@react-three/xr"; | |
| import { OrbitControls, Text } from "@react-three/drei"; | |
| import { Mesh } from "three"; | |
| // Animated cube component | |
| function AnimatedCube({ position, color = "orange" }: { position: [number, number, number]; color: string }) { | |
| const meshRef = useRef<Mesh>(null); |