Posts

solana developer tools - a list & links

Solana for Beginners Set up a wallet The most common Solana wallets are: Solflare, Backpack, Phantom https://solflare.com/ https://www.backpack.app/ https://phantom.app/ from Leo (new 2025!) https://learn.blueshift.gg/en 2024 & past:  • Helpful Resources to get started on Solana:  ◦ One-stop shop: https://solana.com/developers  ◦ Getting started: https://solana.com/docs/intro/dev SOLANA: HOW IT WORKS https://solanahowitworks.xyz/ https://github.com/solana-developers/solana-tools https://solana.com/de/developers/guides/getstarted/scaffold-nextjs-anchor Björn DevRel Tip: DEVELOPERS GUILD DevRel @bjoerndotsol playlist of video interviews & tutorials on youtube: https://www.youtube.com/playlist?list=PLeszzWXLYEN2MAhBgPRqsOg8OYGJcREr9 SOLANA BASICS: https://x.com/i/broadcasts/1DXGydnDgyyKM https://x.com/bjoerndotsol/status/1827985088492994927?t=Vpw3hb1rycEMAXAkkDFSbQ&s=19 SOLANA PLAYGROUND: https://beta.solpg.io/ &  https://github.com/solana-playground/so...

Einbürgerung in Deutschland: Der Einbürgerungstest & EINBUERGERUNGapp TEST & NOTES

Einbürgerung in Deutschland der Ausländerbehörde Ihrer Stadt oder Gemeinde Einbürgerung in Deutschland via Das Bundesamt für Migration und Flüchtlinge (BAMF)   I am finding the source of truth for the Einbürgerungstest quite accessible via the BAMF Bundesamt fuer Migranten und Fluchlinge, BUT eather than throw everything into a google doc and hoarde it away, I will post my notes here, firstly the vital info with links:  The final (real) test consists of a total of 33 questions, of which at least 17 must be answered correctly. QUESTION POOL.  Gesamtfragenkatalog aus 300 bundesweiten und 160 bundeslandspezifischen Fragen - the  provides a PDF: Gesamtfragenkatalog zum Test„Leben in Deutschland“und zum „Einbürgerungstest“ Stand: 07.05.2025 https://www.bamf.de/SharedDocs/Anlagen/DE/Integration/Einbuergerung/gesamtfragenkatalog-lebenindeutschland.pdf?__blob=publicationFile&v=22 (and the important steps &  FAQs ) I am also working on an app to quiz you on...

hell0, w0rld!

Image
"fitter, happier, more productive." -radiohead hell0, w0rld! so i don't post regularly... hard to explain WHY exactly except that things keep accelerating and I keep racing to keep up. i fell into web3 during covid and just kept falling. i still do quite a bit of art, but most of it ends up purely digital and... sometimes even as .gifs   
Three.js Sculpture

How to Create a rorating .glb sculpture in a webGL metaverse envoronment using the three.js library.

 Creating a rotating .glb sculpture using Three.js in a webGL metaverse environment involves several steps. First, make sure you have included the Three.js library in your HTML file. You can use the following script as a starting point: ```html <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0">   <title>Three.js Sculpture</title>   <style>     body { margin: 0; }     canvas { display: block; }   </style> </head> <body>   <script type="module">     import * as THREE from 'https://threejsfundamentals.org/threejs/resources/threejs/r125/build/three.module.js';     import { GLTFLoader } from 'https://threejsfundamentals.org/threejs/resources/threejs/r125/examples/jsm/loaders/GLTFLoader.js';     let camera, scene, renderer;     let sculpture; ...

JavaScript PROJECT NOTES

JavaScript Project: how do I "Create a project directory and navigate to it my terminal"? //code converts kelvin to celsius and then to fahrenheit const kelvin = 293 const celsius = kelvin - 273 ; let fahrenheit = celsius * ( 9 / 5 ) + 32 ; fahrenheit = Math . floor ( fahrenheit ) console . log ( `the temperature is ${ fahrenheit } degrees Fahrenheit.` ); re: json, fetch,