- Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
NOTE: Probably the only browser tool that streams file directly. Should transfer file of any size (hundreds of GBs etc) - Localsend https://web.localsend.org/
- FilePizza https://file.pizza/
- PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
ShareDrop sharedrop.io https://github.com/szimek/sharedrop(SOLD, not recommended, use PairDrop)SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop(SOLD, not recommended, use PairDrop)
- ToffeeShare https://toffeeshare.com/
| {#--------------------------------------------------------------------- | |
| custom_pub_chat_template_gemma4.jinja | |
| ===================================== | |
| A public, harness-friendly fork of Google's Gemma 4 chat template, | |
| tuned for open-source agentic coding harnesses like: | |
| - anomalyco/opencode (https://github.com/anomalyco/opencode) | |
| - earendil-works/pi (https://github.com/earendil-works/pi) | |
| - openclaw, OpenHarness, similar Claude-Code-style harnesses | |
| WHY THIS FORK EXISTS |
| """ | |
| 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 |
| from django.utils.functional import curry | |
| class DetailsInline(admin.TabularInline): | |
| model = Details | |
| # formset = DetailsFormset | |
| extra = 3 | |
| def get_formset(self, request, obj=None, **kwargs): | |
| initial = [] | |
| if request.method == "GET": |
| # Pass the env-vars to MYCOMMAND | |
| eval $(egrep -v '^#' .env | xargs) MYCOMMAND | |
| # … or ... | |
| # Export the vars in .env into your shell: | |
| export $(egrep -v '^#' .env | xargs) |
| package main | |
| import ( | |
| "log" | |
| "syscall" | |
| "unsafe" | |
| ) | |
| var ( | |
| kernel32 = syscall.NewLazyDLL("kernel32.dll") |
Since Twitter doesn't have an edit button, it's a suitable host for JavaScript modules.
Source tweet: https://twitter.com/rauchg/status/712799807073419264
const leftPad = await requireFromTwitter('712799807073419264');As websites become more JavaScript heavy, it's harder to automate things like screenshotting for archival purposes. I've seen examples and suggestions to use PhantomJS for visual testing/archiving of websites, but have run into issues such as the non-rendering of webfonts. I've never tried out Selenium until today...and while I'm not thinking about performance implications yet, Selenium seems far more accurate than PhantomJS...which makes sense since it actually opens a real browser. And it's not too hard to script to do complex interactions: here's an [example of how to log in to Twitter, write a tweet, upload an image, and send a tweet via Selenium and DOM element selection](https://gist.github.com/dannguyen/8a6fa49253c1d6a0eb92
| image: node:latest | |
| cache: | |
| paths: | |
| - node_modules/ | |
| before_script: | |
| - npm install | |
| stages: |
while true; do
./adb shell input swipe 100 400 4000 400 400;
done