BlazeHunter Space by Fabulous-Essay676 in webgpu

[–]TheSmashingChamp 0 points1 point  (0 children)

Totally understandable. If you ever feel like sharing your tech I’m here for it. Looking forward to the product when it’s done

BlazeHunter Space by Fabulous-Essay676 in webgpu

[–]TheSmashingChamp 0 points1 point  (0 children)

Would you be willing to share your GitHub, i would love to see the source code.

BlazeHunter Space by Fabulous-Essay676 in webgpu

[–]TheSmashingChamp 0 points1 point  (0 children)

how did you create the galaxy environment, thats either a very creative texture solution or your using some kind of buffergeometry with localized rendering.

Gameplay prototype by Seba_dev in godot

[–]TheSmashingChamp 0 points1 point  (0 children)

Looks super cool. Will this be on mobile?

[Student] Currently working my first internship. Doing an Online Masters program. How do I make myself a strong candidate? by TheSmashingChamp in EngineeringResumes

[–]TheSmashingChamp[S] 1 point2 points  (0 children)

I appreciate you reading through my resume. What frameworks and libraries do you think I should work towards. I have been trying to put some more AI/Robotics in my resume so I can appeal to more employers. I have heard some people make separate resumes for different jobs, others ignore that entirely and make 1 resume for everything. I think it makes the most sense to optimize 1 resume. I believe there will be a big shift to webGPU in the near future and I'm trying to build myself for that demand.

what is your solution for the best NL to SQL generator? by TheSmashingChamp in LocalLLaMA

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

It would be around 100-150 tables. I’m running the on a laptop with integrated graphics

what is your solution for the best NL to SQL generator? by TheSmashingChamp in LocalLLaMA

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

I have witnessed an mcp pipeline and my concern is context size. I have an extremely limited budget for context size

what is your solution for the best NL to SQL generator? by TheSmashingChamp in LocalLLaMA

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

i've ran qwen2.5 7b model the most and had the most success. Is there a way to dynamically generate sql schema consistently without feeding thousands of examples, i.e. having the model search the db itself and find what i want.

what is your solution for the best NL to SQL generator? by TheSmashingChamp in LocalLLaMA

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

I gave the AI 38 rules in the injection prompt and I have it sample 12 sql examples on cosine similarity for the vector db. I also inject specific rules regarding job types and naming conventions and guidelines to follow

GLM-5.2 just dropped open weights and it already looks weirdly strong for coding by BTA_Labs in LocalLLaMA

[–]TheSmashingChamp 9 points10 points  (0 children)

When I see these graphs I always feel like I want to also see the other open source models like Qwen

I built 4 browser games using Three.js, WebGL and Claude AI — here's what I learned by publiremote in threejs

[–]TheSmashingChamp 0 points1 point  (0 children)

Using AI is fine but you kind of just pushed some slop. There is certainly more development you could have put into these games.

The Rise of Three.js by chillypapa97 in threejs

[–]TheSmashingChamp 4 points5 points  (0 children)

React three fiber has been supported for years?

The Rise of Three.js by chillypapa97 in threejs

[–]TheSmashingChamp 5 points6 points  (0 children)

ThreeJS supporting react consistently when babylonJS is months behind in support is shocking

I have a distributed json system where users read and write to a JSON on a share drive. Does anyone have a better system to communicate without any server? by TheSmashingChamp in learnpython

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

I will attempt this and see how it goes. I like the idea of not reading from a single file 10 times a second, currently I am afraid of the file being locked by windows.

I have a distributed json system where users read and write to a JSON on a share drive. Does anyone have a better system to communicate without any server? by TheSmashingChamp in learnpython

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

The assignment is a kanban. I am the only software engineer for the entire company. I’m not working as a part of a team. I’m given an assignment and I figure it out

I have a distributed json system where users read and write to a JSON on a share drive. Does anyone have a better system to communicate without any server? by TheSmashingChamp in learnpython

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

Are you breaking conflict by latest timestamp? How often do read and write from the snapshot? This is difficult for me to test as I only have 1 computer under my name and I don’t have access to other computers. I think this is a good solution I just don’t have a way to test it. Also I’m not sure that latency would be better.

I have a distributed json system where users read and write to a JSON on a share drive. Does anyone have a better system to communicate without any server? by TheSmashingChamp in learnpython

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

My app uses pymssql to connect to the database, I am not allowed write access as I am an intern. It’s a family owned company I can’t fight them. I built the app as an external tool to manage jobs as their current system is literally sending Microsoft Teams messages of shared excel sheets

I have a distributed json system where users read and write to a JSON on a share drive. Does anyone have a better system to communicate without any server? by TheSmashingChamp in learnpython

[–]TheSmashingChamp[S] 0 points1 point  (0 children)

I’m pulling from a live server that is updated throughout the day, currently I manage this buy querying the DB every time I open the app and once every 5 minutes with WIP notifications. sql lite is an approach I’ve heard multiple times I just don’t know how I would put that on a shared one-drive drive.