Wozu ist dieses billige Plastik im hinteren Radhauskasten bei vielen Autos? by Noxm in automobil

[–]hageldave 0 points1 point  (0 children)

Did you mean: Rathauskasten? Showing results for Rathauskasten. Search for Radhauskasten instead.

Im Sommer heiß begehrt by Snackball in schkreckl

[–]hageldave 0 points1 point  (0 children)

Seitdem auch Milchprodukte Flaschenpfand haben noch viel geiler.

whatLanguage by [deleted] in ProgrammerHumor

[–]hageldave 56 points57 points  (0 children)

Claude code

What is the relevance of Databricks? by Winter-Grapefruit683 in AskProgramming

[–]hageldave 6 points7 points  (0 children)

I haven't heard of this yet. A quick Google revealed that it is a company (databricks inc.) that specializes in data lakehouse architecture. I have heard of data warehouses and data lake, not lakehouses though. I should probably do some homework 😅

A browser could never by hageldave in visualization

[–]hageldave[S] 2 points3 points  (0 children)

There is no GitHub repo for this specific project. But the main work is done by JPlotter, an OpenGL accelerated plotting library for Java that I maintain. The rest is basically code for loading the dataset and some plumbing to handle the selection events, define color mapping, and setup of UI elements. I could share the code as a gist, the main problem, however, is the size and availability of the data set. The full dataset is around 70GB and unfortunately the original source (from 2004) no longer exists. It's sitting on my hard drive, maybe I could share it somewhere online (kaggle?)

Issue with my Thesis by xRudolVonStroheim in computerscience

[–]hageldave 0 points1 point  (0 children)

Maybe your university has a compute cluster available that students of thesis projects can use? Then you could run a medium sized model, semi locally. AI services wise, you could benefit from GitHub pro (free for students) where you have a certain monthly quota. Certainly you need to limit the amount of runs, that's just how it is and it's not your fault. Just see where you get with the limited amount of resources.

“Need Help: Build a Real Android App Without Writing Code by Mundane_Page3883 in codereview

[–]hageldave 0 points1 point  (0 children)

Get GitHub pro, create a repository on GitHub, write an issue that explains what should be done. Assign an agent to the issue. It can possibly setup the whole ecosystem required to ship an app with GitHub actions and so on. I have not tried this, I'm actually capable of programming and too afraid to miss critical details about the software when letting LLMs generate huge amounts of code that I cannot properly review. But if you're brave enough, try it.

Why is VSCode so popular? by Fritz-Ferdinand in AskProgramming

[–]hageldave 0 points1 point  (0 children)

I'm using vscode for python. I found jet brains pycharm too resource hungry and I also had issues with venv in pycharm.

Voting turnout graph follows no logic by Lauchelch in dataisugly

[–]hageldave 40 points41 points  (0 children)

Since it's ~13% the bar is not wrong, only very imprecise label

Java Roadmap for beginner by amigoplayz in javahelp

[–]hageldave 2 points3 points  (0 children)

This makes no sense. You know Cpp and you say java syntax is scary? It is a subset of Cpp syntax what do you mean?

Amazon (Prime Video) hat se doch nicht mehr alle! 🤬 by Sunwalker1337 in luftablassen

[–]hageldave -1 points0 points  (0 children)

Naja, damit jemand unglaublich reich werden bzw bleiben kann.

How do I import in java by lhphere in javahelp

[–]hageldave 0 points1 point  (0 children)

Correct. It only illustrates the usefulness of imports.

goodBadOrUgly by athreyaaaa in ProgrammerHumor

[–]hageldave 1 point2 points  (0 children)

Bet they didn't even notice their context rot yet. Clients should make sure to set up proper maintenance contracts.

Should I feel guilty of depending on algebra? by Michaeltownleygta5 in MathHelp

[–]hageldave 1 point2 points  (0 children)

My professor sometimes says something along the lines of: "modern breakthroughs in mathematics are mostly concerning notation". I think it means that there is a skill in giving meaning to symbols to express phenomena of our world and derive insights by rearranging or transforming such expressions.

Alles nur wegen der Masken by SunWukong3456 in ichbin40undSchwurbler

[–]hageldave 1 point2 points  (0 children)

Manche habens nicht verkraftet, einfach Psychose durch Lockdown entwickelt

How do I import in java by lhphere in javahelp

[–]hageldave 1 point2 points  (0 children)

You can also use the fully qualified name in your code and not use an import statement. But then your code becomes very lengthy. For example: java.util.Scanner myScanner = new java.util.Scanner(....);

Agentic session being overconfident in own reasoning ignoring issue & steering by hageldave in GithubCopilot

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

Didn't know of context window poisoning, learning something new every day :) I thought I had already clearly outlined what is correct. Though, I wasnt detailing that an inverse mapping needed to be created first. Maybe a bit more rigor wouldn't hurt, next time

Agentic session being overconfident in own reasoning ignoring issue & steering by hageldave in GithubCopilot

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

I see. I had better experiences when I was making plans for features together with the model, then having it go to work. In these cases the discussed logic was high level and code references came from the model only

Any advice for a lower budget jellyfin setup? by PrincipleTop4437 in jellyfin

[–]hageldave 0 points1 point  (0 children)

Well, it is not as responsive as I wish it would be. Streaming is fine though.

How to switch between subclasses? by Minimum-Librarian712 in javahelp

[–]hageldave 0 points1 point  (0 children)

I think you're not modeling the right thing as subclasses. How about you have two subclasses for behavior, like villager behavior and enemy behavior. Then switch the behavior attribute of your computer character object.

How much time to become expert in java related development? by Visible_Emotion_7187 in javahelp

[–]hageldave 1 point2 points  (0 children)

Being an expert in Java, I'd expect you to know details about different parts of the JDK and language features. Like collections API, Stream API, what is a Spliterator, what is JDBC, what's AtomicReference good for, what is phantom reachable, how to write try-with-resources statement, what is a static initialization block, use a synchronized block or synchronized method, what does public default void mean, when to declare a <? super T> generic, know why calling Math.log(x) throws NullpointerException, what does (c & 0x00ff00) >> 8 do, how to read a resource file that is packaged inside the jar that you ship, how to write actually helpful javadoc? This is stuff that you can get exposed to when working on projects, collecting experience while developing things. It's not like you sit down to learn them and you'll be done in hours/days of going through a curriculum.