- press F12 to open browser developer tools, open Network tab
- generate some 3d object https://aidemos.meta.com/segment-anything/editor/convert-image-to-3d
- view Fetch/XHR requests in the network panel
- find graphql/ request (usually the last one), with data like: data: {xfair_sam3d_3dfy_model_gaussian_splat...
- open the data hierarchy to find "gaussian_splat: ..." and it contains url to .ply file
- copy that url and open in browser to download file
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
| 1 { | |
| 2 "actions": [ | |
| 3 // Pane splits (wie tmux h/v) | |
| 4 { "command": { "action": "splitPane", "split": "horizontal" }, "keys": "ctrl+alt+h" }, | |
| 5 { "command": { "action": "splitPane", "split": "vertical" }, "keys": "ctrl+alt+v" }, | |
| 6 { "command": "closePane", "keys": "ctrl+alt+x" }, | |
| 7 | |
| 8 // Pane navigation (wie tmux C-M-Arrow) | |
| 9 { "command": { "action": "moveFocus", "direction": "left" }, "keys": "ctrl+alt+left" }, | |
| 10 { "command": { "action": "moveFocus", "direction": "right" }, "keys": "ctrl+alt+right" }, |
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 inference a GPT LLM in pure, dependency-free Python. | |
| Differences from GPT-2 are minor: rmsnorm instead of layer norm, no biases, square ReLU instead of GeLU nonlinearity. | |
| The contents of this file is everything algorithmically needed to train a GPT. Everything else is just efficiency. | |
| Art project by @karpathy. | |
| """ | |
| import os # for os.path.exists | |
| import math # for math.log, math.exp | |
| import random # for random.seed, random.choices |
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
| # Create a new worktree and branch from within current git directory. | |
| ga() { | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: ga [branch name]" | |
| exit 1 | |
| fi | |
| local branch="$1" | |
| local base="$(basename "$PWD")" | |
| local path="../${base}--${branch}" |
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
| # THIS LINUX SETUP SCRIPT HAS MORPHED INTO A WHOLE PROJECT: HTTPS://OMAKUB.ORG | |
| # PLEASE CHECKOUT THAT PROJECT INSTEAD OF THIS OUTDATED SETUP SCRIPT. | |
| # | |
| # | |
| # Libraries and infrastructure | |
| sudo apt update -y | |
| sudo apt install -y \ | |
| docker.io docker-buildx \ | |
| build-essential pkg-config autoconf bison rustc cargo clang \ |
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
| ############################################ | |
| # Base Image | |
| ############################################ | |
| # Learn more about the Server Side Up PHP Docker Images at: | |
| # https://serversideup.net/open-source/docker-php/ | |
| FROM serversideup/php:8.3-fpm-nginx-alpine AS base | |
| ## Uncomment if you need to install additional PHP extensions | |
| # USER root |