| Tracker | Technical Basis | Performance | Accuracy | Special Features | Application |
|---|
- ji.podhead.com (under construction)
- in/leonardo-j-09b358275
- https://medium.com/@ji-podhead
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 bpy | |
| import json | |
| import numpy as np # Wird nicht direkt benötigt, da json.load verwendet wird | |
| from mathutils import Vector | |
| from time import time | |
| def visualize_particles_as_instances(json_filepath, particle_scale=1, instance_radius=0.05, collection_name="VoxelParticleInstances"): | |
| """ | |
| Visualisiert Partikelpositionen aus einer JSON-Datei in Blender, | |
| indem es Low-Poly Icosphären auf den Vertices eines Punktwolken-Meshes instanziiert. |
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 * as THREE from 'three'; | |
| import { MeshSurfaceSampler } from 'three/examples/jsm/math/MeshSurfaceSampler.js'; | |
| /** | |
| * Extrahiert Textureddaten in ein format, das einfach zu sampeln ist. | |
| * @param {THREE.Texture} texture - Die zu verarbeitende Texture. | |
| * @returns {ImageData} Die Bilddaten der Texture. | |
| */ | |
| function getTextureImageData(texture) { | |
| const image = texture.image; |
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 bpy | |
| import bmesh | |
| import numpy as np | |
| import json | |
| from mathutils import Vector | |
| from collections import defaultdict | |
| def texture_surface_voxelizer(obj, particle_count, output_filepath="voxel_data.json"): | |
| """ | |
| Voxelizes the surface of a Blender object, extracts texture colors, |
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
| version: "3.9" | |
| services: | |
| gmail: | |
| image: python:3.11 | |
| ports: | |
| - "8000:3000" | |
| command: bash -c "apt-get update && apt install --assume-yes npm && npm i -g npx && curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash && \. $HOME/.nvm/nvm.sh && nvm install 24" | |
| privileged: true | |
| # restart: always | |
| tty: 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
| from fastapi import FastAPI, Depends, HTTPException, status | |
| from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials | |
| app = FastAPI() | |
| security = HTTPBearer() | |
| def validate_token(credentials: HTTPAuthorizationCredentials = Depends(security)): | |
| if credentials.credentials != "secret-token": # Replace with actual token validation logic | |
| raise HTTPException( | |
| status_code=status.HTTP_401_UNAUTHORIZED, |
source: https://superuser.com/questions/1331768/why-is-usb-tethering-much-slower-than-wi-fi-tethering
ping -c 5 google.com | grep ttlsudo iptables -t mangle -A POSTROUTING -j TTL --ttl-set 65Your operators might limit your speed based on detecting the number of middle hops in your TCP connection. Using the following command, you will be able to check your TTL (Time to leave) value while using USB tethering vs WIFI tethering.
you can find the full project here pamji - onpremcontrol those are the minimum requirements to deploy a basis infra via IaC. This is the controller for the pamji onprem infra. It servers as a low spec router, failover vpn access point and secrets manager.
- predeployed openwrt router
- a tailscale- and a vault docker container
⚠️ 2019-2020: See more examples and updates on my article here!
NewerOlder
