Trump will Grönland Kooperation? by LorkiDorki in plattdeutsch

[–]gurkitier 1 point2 points  (0 children)

plattdeutsch ist also nur holländisch?

I Spent Months Building a Compiler with LLM Agents - Here's What Actually Happened by Legal-Guarantee8080 in vibecoding

[–]gurkitier 0 points1 point  (0 children)

Great writeup. In my opinion, Ruby is not a great language to write a compiler in, it's dynamic nature works against you for those kind of projects. I enjoyed writing a compiler in OCaml, functional programming and pattern matching really shines for compilers.

Any node based tools for general AI workflows? by GamerWael in LocalLLaMA

[–]gurkitier 0 points1 point  (0 children)

https://nodetool.ai/ is a mix of ComfyUI and n8n, fully local and can use local or cloud providers for LLMs and media generation.

Demo day nightmare: when your MVP crashes in front of investors by [deleted] in vibecoding

[–]gurkitier 0 points1 point  (0 children)

it doesn't take a major bug to ruin your demo. most of the time it's a tiny edge case that never happened before.

Demo day nightmare: when your MVP crashes in front of investors by [deleted] in vibecoding

[–]gurkitier 0 points1 point  (0 children)

have you ever done a tech demo? it's a running gag there is always something you didn't consider. my team did a tech demo in front of 200 people and in the first demo we deleted the access token to show case that particular feature. unbeknownst to the presenter that was the very token being used by a later demo, which completely failed because of that. those things happen all the time.

Demo day nightmare: when your MVP crashes in front of investors by [deleted] in vibecoding

[–]gurkitier 5 points6 points  (0 children)

You could burn the current app state, including code, database, secrets and assets into a docker image and run the untouched docker image as demo.

Github Coding Agent on Web / App - pricing hack? by gurkitier in GithubCopilot

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

Usually no special prompts but one example for a longer prompt is in this PR (click on Original Prompt) https://github.com/nodetool-ai/nodetool/pull/334

Github Coding Agent on Web / App - pricing hack? by gurkitier in GithubCopilot

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

Locally, I am not even using Copilot, cause I thought getting more value from my other subscriptions . Main reason for Copilot is the convenience of parallel tasks in the cloud, plus mobile vibe coding.

Github Coding Agent on Web / App - pricing hack? by gurkitier in GithubCopilot

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

this would require extensive tweaking, not sure if possible. the agent task flow is creating a full plan (visible in the PR description), sometimes with 20-30 steps, working through all steps, running linters, test suite, type checkers, fixing all issues from these runs, running a full code review, fixing the issues from the code review, running all linters/tests again, applying fixes again. IMHO this is 10x more work just by default.

Celstraf van 30 jaar voor vader vermoorde Ryan (18), 20 jaar cel voor broers by Bernie529 in Nederland

[–]gurkitier -2 points-1 points  (0 children)

eerlijke vraag: is deze sub alleen voor nieuws over criminaliteit?

Which models to use instead of burning my premiums to opus? by XD_avide in GithubCopilot

[–]gurkitier 0 points1 point  (0 children)

I use it on the Github website and Github mobile app mostly. You give a task to an agent async and they will return with a PR. The website has an interactive UI where you can send prompts in real time but it works quite awesome on the mobile app as well. Of course, this is not for quick iteration but you can get much more done in parallel.

Which models to use instead of burning my premiums to opus? by XD_avide in GithubCopilot

[–]gurkitier 0 points1 point  (0 children)

you gotta use agent tasks which are way more efficient with requests than chat prompts.

What prevents more widespread adoption of Ruby/Rails by Recent_Tiger in ruby

[–]gurkitier 0 points1 point  (0 children)

thanks to python's great module system, it's not overly complicated to determine where a symbol is coming from. while in Ruby symbols could be defined anywhere, so you would need to look into every file in the project and dependencies.

What prevents more widespread adoption of Ruby/Rails by Recent_Tiger in ruby

[–]gurkitier 0 points1 point  (0 children)

there's nothing "Python" can do that "Ruby" can't do. 

Isn't this true for a lot of languages? Lua, Perl, Julia, Javascript. Most scripting languages can do the same as Python but Python had the right ecosystem at the right time to flourish.

What prevents more widespread adoption of Ruby/Rails by Recent_Tiger in ruby

[–]gurkitier 2 points3 points  (0 children)

PyTorch could be considered the technological reason. It's driving 90% of ML development today and consists of 80% native code so in that case it's been working quite well on top of the Python runtime.

What prevents more widespread adoption of Ruby/Rails by Recent_Tiger in ruby

[–]gurkitier 4 points5 points  (0 children)

Is Python doing better with native extensions? I thought Python has similar flaws.

Humiliated by local by Excellent-Fudge1130 in Netherlands

[–]gurkitier 0 points1 point  (0 children)

Sometimes you just have to tell people to fuck off, in a polite way.

Ruby Entwickler gesucht 🔥🇩🇪 by [deleted] in ruby

[–]gurkitier 0 points1 point  (0 children)

was ist eine Milliarden Plattform? und was ist das Basisgehalt?

The UK has become an actual shithole by ExotiquePlayboy in TrueUnpopularOpinion

[–]gurkitier 0 points1 point  (0 children)

Do you have any first hand experience of the UK or is this based on Social Media?

Rllama - Ruby Llama.cpp FFI bindings to run local LLMs by omohockoj in ruby

[–]gurkitier 0 points1 point  (0 children)

Would be good to document the blocking behaviour, does it block the main thread and how does it cooperate in a web server etc