- Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
- Localsend https://web.localsend.org/
- FilePizza https://file.pizza/
ShareDrop sharedrop.io https://github.com/szimek/sharedrop(SOLD, not recommended, use one of the forks)A clone SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop(SOLD, not recommended, use one of the forks)- A fork PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
- ToffeeShare https://toffeeshare.com/
- Instant.io https://instant.io/
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
| https://ascii-generator.site/ | |
| ░░░░░░░░░░░░▄▄░░░░░░░░░ | |
| ░░░░░░░░░░░█░░█░░░░░░░░ | |
| ░░░░░░░░░░░█░░█░░░░░░░░ | |
| ░░░░░░░░░░█░░░█░░░░░░░░ | |
| ░░░░░░░░░█░░░░█░░░░░░░░ | |
| ███████▄▄█░░░░░██████▄░ | |
| ▓▓▓▓▓▓█░░░░░░░░░░░░░░█░ | |
| ▓▓▓▓▓▓█░░░░░░░░░░░░░░█░ |
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 { spec } from "node:test/reporters"; | |
| import { Transform } from 'node:stream'; | |
| class Reporter extends Transform { | |
| // This is a custom test reporter for node:test | |
| // it'll only log console.logs that occur during | |
| // failed tests. For everything else it delegates | |
| // to the default "spec" reporter. | |
| constructor() { | |
| super({ writableObjectMode: 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
| import { and, type DBQueryConfig, eq, type SQLWrapper } from "drizzle-orm"; | |
| import { drizzle } from "drizzle-orm/postgres-js"; | |
| import postgres, { type Sql } from "postgres"; | |
| import { type AnyArgs } from "@/common"; | |
| import { | |
| type DbClient, | |
| type DbTable, | |
| type DeleteArgs, |
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
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
OlderNewer