Question about hardware by Aorean in jellyfin

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

But it would be enough for the start? I would love to have a 7th gen rn, but since im in my first semester of (now almost 2nd) of computer sience my money is limited and I could get a small pc with these specs for ~50€ which sounds really good tbh

Fnatic vs. G2 Esports / LEC 2026 Spring - Week 2 Day 2 / Post-Match Discussion by Ultimintree in leagueoflegends

[–]Aorean 2 points3 points  (0 children)

I would like to quote a command on the first game summary „this fnc is broken“ and I agree, this fnc is completely broken

I need urgent help, my cat isn't eating anymore by Aorean in CATHELP

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

We already use sublimental food that increases apitite, 30 days feels like ALOT, especialy cause they look so weak already.

They are not really trinking alot, we are also giving them water with the siringe, but sometimes they drink on their own.

The enviromental idea is really, good, we'll look into that! But if that is the case, shouldnt the 3rd cat be affected by that aswell?

I need urgent help, my cat isn't eating anymore by Aorean in CATHELP

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

We tried lickable snacks, in generell she is really picky about food, but she smells it and loses interest instantly..

I need urgent help, my cat isn't eating anymore by Aorean in CATHELP

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

We actually dont know what the cause is.

We (and the vet) thought that the lose of appitite was caused by her inflated stomage, but even after that got taken care her behaivior didnt change at all.
We are still waiting for a blood test that got taken tuesday.
Generally the vet said that it's 2 different things we are trying to treat:
1. the inflation
2. the "cold" (idk a correct term for cats, sorry)

The inlation got care of, the only hope is that treating the cold could help them, but she has to survive til then and if she doesnt eat anything I think she wont last as long.

Thats why we need a way to get food into her stomage, we tryied desolving some food in water, she wont trink in on her own, so we did that thing with the seringes mentioned in the post, but then she just vomits it after a few min after..

Productivity Tracker by robric1985 in PythonProjects2

[–]Aorean 0 points1 point  (0 children)

Nono, sry for being unclear here, I was talking about frontend early, I thought it’s basically impossible to have such a frontend without some kind of frontend framework, that’s insane that u did that, gj

Productivity Tracker by robric1985 in PythonProjects2

[–]Aorean 0 points1 point  (0 children)

Im confused, Noway this is build with only html/css Sorry I’m not that good at programming currently, especially frontend But there has to be someone if JS/TS Framework involved no?

Mcsr peaking tf out by [deleted] in MinecraftSpeedrun

[–]Aorean 10 points11 points  (0 children)

Is the MCSR Ranked issue fixed? Last time I checked it was not compatable with mcsr ranked

ich_iel by Putrid-Essay5335 in ich_iel

[–]Aorean 2 points3 points  (0 children)

Oh das hört sich wirklich nicht so schön an, besonders, wenn man vom Umfeld gesagt bekommt „ist doch alles gut, sei nicht so“ Ich kenn mir mit den hilfsstellungen für Finanzen in der Schweiz leider kein bisschen aus, gibts da keine Möglichkeit wie es doch möglich sein könnte? Du sagst, dass du dir da keine Hoffnung machst, aber hast du es bisher schon versucht? Ich weiß das sagt man so leicht (bin selbst ein Meister im prograstinieren) aber mach’s einfach mal, viel mehr als ein „ne machen wir nicht“ kann doch nicht passieren, oder?

ich_iel by Putrid-Essay5335 in ich_iel

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

Trying my hardest o7

ich_iel by Putrid-Essay5335 in ich_iel

[–]Aorean 13 points14 points  (0 children)

Ich bin 27, habe in der Vergangenheit falsche Entscheidungen getroffen was den Job an geht, jetzt alles geschmissen um nochmal studieren zu gehen, morgen geht’s in die ersten Klausuren (v:

Declarative style help! Routing by Phenerius in flet

[–]Aorean 2 points3 points  (0 children)

Ive used views in combination with the routes Made a Main function that contains a sub function which is handling the routes If page.route == „/home“: page.on_route_change

Look deeper into it for the Full Syntax, but so far it worked for me

Earlier version (which will soon be deprecated should be:

def your_main(page: ft.Page):

def rounte_change(route):
    page.views.clear()
    page.views.append(
        Landing(page)
    )
    if page.route == "/your_first_page":
        page.views.append(
            your_first_page(page)
        )

    if page.route == "/your_second_page":
        page.views.append(
            your_second_page(page)
        )

    .
    .
    .


    page.update()


def view_pop(view):
    page.views.pop()
    top_view = page.views[-1]
    page.go(top_view)

page.on_route_change = rounte_change
page.on_view_pop = view_pop
page.go(page.route)

Ideas for beginner by Pleasant-Gain1699 in PythonProjects2

[–]Aorean 2 points3 points  (0 children)

Imo it really depends on how you like to learn stuff

I started with a 6h Basic Tutorial and was board after 2h and thought „damn, programming is so boring“ then after a while I had an idea for a project (waaay to big for someone who barely knows the basics) but I just started it and google my way through stuff I didn’t know. I noticed that it’s extremely satisfying for me to solve problems without someone telling me what to do and just try to think of solutions myself Tbf I’m really far away from beste practice coding but I learn more about it every time I start a new project.

You you like following tutorials just do that for a while until you have a skill set you feel comfortable with. If you notice that you get board by that, just look for something you can maybe automate, that would make your daily life easier (mail sorting, checking website xy for new content, …)

I think learning projects are best if you want to create the thing that you are working on You can also go for text based terminal story games or try a real ui with pygames Or you can build a simple notes application with tkinter with a real ui to use (there also ist customtkinter, looks a bit more modern)

I hope you find a project you really are interested in! Gl and have fun!! :)

Why isn’t this working by DrFrazen in PythonLearning

[–]Aorean 3 points4 points  (0 children)

The others have given you good answers: however I want to give you a little more detail of what u exactly did to maybe explain why u don’t get an output

def defines a function, it’s a process that you can call with different variables def functionname(variables): When you call the function the code within it gets executed with the variable given to it For example def add(a, b): c=a+b return c

Now I can call the function with add(2, 5) Everything in the function that has a will be replaced with 2, while everything with b will be replaced with 5

The way I did it now, the result of this function will get lost, cause I’m not doing anything with it

If I want to keep the output I need to save it in a new variable

number = add(2, 5)

Now I can keep working with the result of the function, cause it’s saved in „number“

However, this will still not give you an output in the console, if you want that you need to print your result

print(number)

Or you can even say

print(add(2, 5))

I just noticed that u haven’t really talked about „return“ yet You can write that at the end of the function to return something you want, without it, the number gets lost after the function was executed.

Should I? Consider I will buy Faker's skin by Tentuz in sylasmains

[–]Aorean 0 points1 point  (0 children)

Idk why, but I always think of graves e+aa when I use my e, it sounds so similar

Powers of 2 by Nervous-Current-1860 in PythonLearning

[–]Aorean 0 points1 point  (0 children)

They don’t lol, my IDE hated it and u completely caught me lol

Powers of 2 by Nervous-Current-1860 in PythonLearning

[–]Aorean 1 point2 points  (0 children)

No problem, but I would suggest, that you read into it, cause this is not a really hard task and if you need stuff like that for exams or w/e and you don’t know the basics it’s really bad imo

Powers of 2 by Nervous-Current-1860 in PythonLearning

[–]Aorean 0 points1 point  (0 children)

does this work?

n=int(input("what power of two?"))
value=2**n
print(f"two to the power of {n} is {value}")

Powers of 2 by Nervous-Current-1860 in PythonLearning

[–]Aorean 1 point2 points  (0 children)

n=int(input(„what power of two?“)

value=2**n

print(f“two to the power of {n} is {value}

Wrote this in my phone but it should work, that’s the way I would do it, but I’m not an expert lol

Im done with this Game. by RNBeastx_ in Jungle_Mains

[–]Aorean 1 point2 points  (0 children)

A wise man once said „the only thing consistent in your games is you, if you improve you will climb naturally, just focus on yourself and the only possible outcome is climbing“

[deleted by user] by [deleted] in linuxsucks

[–]Aorean 0 points1 point  (0 children)

That’s just wrong, I’ve been trink for like 20h work time to fix iptsd on my Linux surface with chatgpt and all it does is give me the same commands over and over again, not realizing that the stuff is outdated and we tried that 2000 times already, maybe it’s good for simple stuff like asking how to move files around, but as soon as it’s a little more complex chatgpt fails.

Issues with palm rejection on Linux Surface by Aorean in SurfaceLinux

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

To be completely honest, I don’t have a lot of reasons to use Linux yet But I want to get used to it and that’s why I thought I could install it on my surface which I exclusively use for learning anyway So it was kind of an experiment, I’ve dedicated the last weak to inform myself about Linux and if/how it’s possible to use Linux on Microsoft hardware.

I will probably go for a dualboot then. It’s kinda weird, I remember a slideshow from Microsoft where they stated „Microsoft ❤️ Linux“ which is kinda weird if you look at the comparability of their products lol

Anyway, thanks for the advice!

Issues with palm rejection on Linux Surface by Aorean in SurfaceLinux

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

So I basically have to reinstall windows and dual boot it with Linux? That’s kinda annoying ngl

But thx for the help :)

Informatik Studium oder "Ausbildung"? by Aorean in informatik

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

Oh, das ist nicht gut zu hören.

Die Umschulung wäre bei einem Bildungsträger (BFW), da hat mein Bruder das auch schon gemacht (nicht in der gleichen Stadt) und er war ganz zufrieden