I hereby claim:
- I am i80and on github.
- I am i80and (https://keybase.io/i80and) on keybase.
- I have a public key whose fingerprint is 6845 D667 E1D5 6652 D750 8B0F 3450 34CF B36A 363F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| (module | |
| (func $vec_getx (param $a i64) (result f32) | |
| (i64.and (get_local $a) (i64.const 0xffffffff)) | |
| i32.wrap/i64 | |
| f32.reinterpret/i32 | |
| ) | |
| (func $vec_gety (param $a i64) (result f32) | |
| (i64.shr_u (get_local $a) (i64.const 32)) | |
| i32.wrap/i64 |
| #!/bin/sh | |
| set -e | |
| DOCS_REPO=$1 | |
| DRIVER_REPO=$2 | |
| BRANCH=$3 | |
| DRIVER_BRANCH=$4 | |
| usage() { | |
| echo "do.sh <docs-url> <driver-url> <branch>" |
| import boto3 | |
| import sys | |
| from pathlib import Path | |
| import json | |
| BUCKET_NAME = "docs-mongodb-org-dotcomprd" | |
| versions = sys.argv[1:] | |
| def remove_prefix(s: str, version: str) -> str: | |
| return s.split(f"docs/{version}/", 1)[-1] |
| import sys | |
| from pathlib import Path | |
| from pydantic import BaseModel | |
| import ollama | |
| MODEL = 'qwen3:30b-a3b-thinking-2507-q4_K_M' | |
| SYSTEM_PROMPT = 'You are a translation engine which will translate subtitles accurately while maintaining context and natural flow.' | |
| # Define the schema for the response | |
| class TranslationResult(BaseModel): |