An extremely fast JavaScript bundler written in Go.
- public
- favicon.ico
- locales
- ...
| if(/Android [4-6]/.test(window.navigator.appVersion)) { | |
| window.addEventListener("resize", function() { | |
| console.log('eventListener Added'); | |
| console.log(document.activeElement.tagName); | |
| if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") { | |
| window.setTimeout(function() { | |
| document.activeElement.scrollIntoViewIfNeeded(); | |
| },0); | |
| } | |
| }) |
| import React from "react" | |
| import { CognitoUser } from "@aws-amplify/auth" | |
| import { useAuth } from "./hooks" | |
| import { SignInInput } from "./types" | |
| interface AuthState { | |
| user: CognitoUser | null | |
| signIn(input : SignInInput): Promise<void> | |
| signOut(): Promise<void> |
| <?php | |
| // Used in https://github.com/im4aLL/roolith-event | |
| class Event { | |
| private static $events = []; | |
| public static function listen($name, $callback) { | |
| self::$events[$name][] = $callback; | |
| } |
An extremely fast JavaScript bundler written in Go.
| import { Entity, PrimaryGeneratedColumn, Column, ManyToMany, JoinTable } from 'typeorm'; | |
| import Company from './Company'; | |
| @Entity('clients') | |
| export default class Client { | |
| @PrimaryGeneratedColumn() | |
| id: number; | |
| @Column() |
| =LOWER(CONCATENATE(DEC2HEX(RANDBETWEEN(0;POWER(16;8));8);"-";DEC2HEX(RANDBETWEEN(0;POWER(16;4));4);"-";"4";DEC2HEX(RANDBETWEEN(0;POWER(16;3));3);"-";DEC2HEX(RANDBETWEEN(8;11));DEC2HEX(RANDBETWEEN(0;POWER(16;3));3);"-";DEC2HEX(RANDBETWEEN(0;POWER(16;8));8);DEC2HEX(RANDBETWEEN(0;POWER(16;4));4))) |
| import React, { useEffect, useState } from 'react'; | |
| import { Excalidraw } from "@excalidraw/excalidraw"; | |
| import type { ExcalidrawImperativeAPI } from '@excalidraw/excalidraw/types/types'; | |
| import Example from './Example'; | |
| import { ExcalidrawAPIProvider } from './hooks/useExcalidrawAPI'; | |
| function App() { | |
| const [excalidrawAPI, setExcalidrawAPI] = useState<ExcalidrawImperativeAPI | null>(null); | |
| return ( |
####Rets Rabbit http://www.retsrabbit.com
Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.
| #!/bin/sh | |
| # Scrapes documentation from a URL and converts it to Markdown suitable for aider convention files | |
| # to provide context to the LLM. | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: $(basename "$0") <URL> [URL...]" | |
| echo | |
| echo "Generate aider 'convention' Markdown context from documentation URLs." | |
| echo "suitable for providing LLM context about a project's conventions and style." |