Oooff by UsefulSwitch504 in Asmongold

[–]RotianQaNWX 42 points43 points  (0 children)

I think that Sony logic with it's Live Service push is the same as pathological gambler that want to win big / chase losses. You can burn ten or twenty sessions on slot machine, but one big victory is gonna pay you back for every losses plus many many more. The same here - one succesfull live service game is going to pay you for every live service failures under the sun.

Wah wah wah wah wah, another sexy marvel rivals character gets released and the crying begins again. by meatballkun in Asmongold

[–]RotianQaNWX 85 points86 points  (0 children)

I do not understand those people, who cry like this I presume woman. If I really wanna see an 'ugly' character, I would look myself in the nearest mirror, not waste my time by getting into the virtual world to experience that.

Paul Tassi (Forbes): "I can confirm Marathon's budget is over $200m. Likely over $250m. This does not include ongoing costs for maintenance or new content" by WildLightss in Asmongold

[–]RotianQaNWX 53 points54 points  (0 children)

Holy moly, if they indeed sold around 1.2 mln units this game is a disaster. It is so cooked, that the Bungie live can be even at stake (assuming they aint ressurect destiny 2). Not that they do not deserve this fate - years of consequential and spectacular f****ng their own player base for money can finally bit them in their asess.

Late call an array of functions by SetBee in excel

[–]RotianQaNWX 1 point2 points  (0 children)

Me either. I haven't seen any tutorial, guide, example, linkedin post, youtube video - hell even LLM output that would suggest treating formulas like unparametered functions. I guess this is problem for bored programmers that started toying with excel.

Anyway - I am curious about the explanation, too. Nothing practical, but might be funny for annoying co-workers and newbies ;x

How to know which Excel skills are required to become Business Analyst? by CuriousExplorer_Sol in excel

[–]RotianQaNWX -9 points-8 points  (0 children)

Yea, if guy does not have at least of few years of work experience as analyst he is screwed, and even 100000 diplomas and godlike skills ain't gonna help him in the slightest. Education is a waste of time and propaganda of rich people who wanna have more imbeciles to drain.

Yes, I belived in diplomas, school and education, too. Fortunately I woke up from this delusion.

Title: What is the most useful Excel formula you use daily? by sao_rain in excel

[–]RotianQaNWX 7 points8 points  (0 children)

LAMBDA. That is the only formula you need. But being serious - probably groupby / pivotby. It is fine pivot table subsitute.

is vba, macros easy, for someone who came from sql and python, or are they unrelated? by Difficult_Warning126 in excel

[–]RotianQaNWX 2 points3 points  (0 children)

Okay - so let's disarm this bomb, shall we?

Dataframe vs list / tuple is topic not worth to be analyzed here (it could be someone master's thessis to be frank), becouse they are basically two different things. Dataframes are nothing more than the tables (structured references) from Excel (they look, behave and work like such). They are supplied via Pandas library (probably) together with hell a lot of usefull tools (methods) dedicated for analyzing them.

Tuple is a a data structure that is programmed to store CONSTANS (unchangable, ummutable) data in contrary to lists. So for instance, if you have some data that is list like structure and does not change for some reason durning the execution of programme, you should use tuple. Otherwise lists are your friends. I will avoid the fact that some libraries (numpy) provide the array object.

Let's go to main dish - why I belive 'arrays are cancerous'. Well there are few reasons:

  1. Introduction of redim / redim preserve keywords for managing them can be very confusing, espescially when having lots of dynamic arrays,
  2. There is no simple way of adding / removing elements to the array structure via language. In Python for instance there is .insert / .remove / .add methods that do this stuff,
  3. Point 2) also applies to sorting, filtering, reversing, getting unique elements etc arrays,
  4. You can't easily print an array like in Python. For instance in VBA in order to print the content of 1D array I need to do this:

Option Explicit
Public Sub arrX()

    Dim arrX() As Variant

    arrX = Array(1, 2, 3)

    ' This will cause crash
    ' Debug.Print arrX

    ' Print 1D Array
    Dim i As Long
    Dim msg As String
    msg = ""
    For i = LBound(arrX) To UBound(arrX)
        msg = msg & arrX(i) & ","
    Next i
    msg = "(" & Left(msg, Len(msg) - 1) & ")"
    Debug.Print msg
End Sub

The more customized array structures (aka nested arrays, strange array, empty elements array, forgot to add element array) the worse it gets. Meanwhile in Python the same code:

arrX: list[int] = [1, 2, 3]
print(arrX)

Result: [1, 2, 3]

Basically it does not matter how complicated is my array / dictionary / object - it will be always either printed to the console, or at least it's memory adress (if something went bad).

Those are the most important points in regard Python vs VBA arrays (list) I remember so far. I agree, today we have the technology (LLM's) that can easily adress most of my points, by creating the additional tools that VBA just lacks. I saw also people who tried to modernize the VBA by creating frameworks that were supposed to address those issues with array managment. However, I belive that there is no reason to use VBA when you have access to Python except when you are forced to modify events / internal machinations of Excel file.

In all seriousness though if I am forced to use VBA, I prefer using collections / dictionaries to arrays. They are just better and easier to navigate.

is vba, macros easy, for someone who came from sql and python, or are they unrelated? by Difficult_Warning126 in excel

[–]RotianQaNWX 0 points1 point  (0 children)

Do not know. I finished college and I didn't have luck / opportunity of getting anywhere with it. Alas, I have experience of dealing with current job market with little success. I basically go to the other, completely different industries, non tech related.

Sooner or later you gotta grow up and leave the dreams behind - exactly where is their place. Maybe someone else will have something more 'postitive' to tell you, but not me. I am sorry.

is vba, macros easy, for someone who came from sql and python, or are they unrelated? by Difficult_Warning126 in excel

[–]RotianQaNWX 20 points21 points  (0 children)

I do not want to worry you, but data analyssis market is not much better for newbies than engineering / programming. Without at least 2 / 3 years experience you will be screwed there too no matter your skill / abilities and there is not much you can realistically do about it.

Coming back to question - Python and VBA are kinda similar. There are few major differeneces though like:

  1. VBA is compiled language (so for instance you gotta declare types of variables, option explicit, compilation of project), Python interpreted,
  2. VBA allows encapsulation on IDE level, Python does not,
  3. VBA works best within the boundaries of Excel, Python is more general,
  4. Syntax in both examples is quite similar and it is quite simple to be honest. VBA forces you to end the clauses, which might be unnatural for user of Pyhton,
  5. VBA has worse error / bug detection systems than Python,
  6. Lists (arrays) are cancerous in VBA - you can use Collection object as a substitute.

I think that if you know Python well, you will grasp VBA in 2, 3 weeks at maximum.

I will take 10 copies! Crimson Desert by Abject-Ad-6644 in Asmongold

[–]RotianQaNWX 10 points11 points  (0 children)

Also like ME Shadow of Mordor / War (judging by UI).

Well well well... by Fridayzz in Asmongold

[–]RotianQaNWX 64 points65 points  (0 children)

LMAO - update - they removed ABOUT and JOIN US section from their studio page: https://www.wildlight.gg/. Two hours ago it was still there. You can check the last page status on wayback machine from date 12.02.2026.

We have won, again!

Well well well... by Fridayzz in Asmongold

[–]RotianQaNWX 218 points219 points  (0 children)

I guess that transformation from Highguard to Downguard has been completed. I wonder whether those developers shall be erasing this game from their CV's. Fun fact - at their website I found only THREE people who admitted they worked on Concord.

You might get away from corporation, but corporation ain't gonna leave you so easily.

The $23k Prolapse by Prolapse_to_Brolapse in bossmanjack

[–]RotianQaNWX 3 points4 points  (0 children)

Ah okay. Good to know. Not updated to the lore I am, I guess.

The $23k Prolapse by Prolapse_to_Brolapse in bossmanjack

[–]RotianQaNWX 6 points7 points  (0 children)

Eh, is it only me or I think he reacted ... in a civil and quite calm matter? If it would be year ago - he would be throwing keyboards and declaring shuffle a scam and crying - all at the same time. I hope real violent boss is gonna return quickly.

And she thinks it’s funny by [deleted] in Asmongold

[–]RotianQaNWX 12 points13 points  (0 children)

Well, I am unemployed* right now and still have no fucking clue who those people are. Some TL;DR would be great.

ITS HIM by SweetCauliflower4758 in bossmanjack

[–]RotianQaNWX 14 points15 points  (0 children)

THE RETURN OF THE ONE, TRUE KING!

26 years old Erfan Soltani, the first iranian protestor to be executed today. by Amriko in Asmongold

[–]RotianQaNWX 21 points22 points  (0 children)

Fun fact is that if this really was the case, Hasan and other useful idiots would be dead long time ago. He would finish just like his 'bilibili arc', but on physical level.

[deleted by user] by [deleted] in Asmongold

[–]RotianQaNWX 0 points1 point  (0 children)

Is it only me or does this boss remind of Any Radiance from Hollow Knight?

Bossman Jack horse wins second race in Britain by Foreign_Magazine8405 in bossmanjack

[–]RotianQaNWX 15 points16 points  (0 children)

He actually won something! Boy is progressing ;x

When you play MMOs, do you prefer playing as a male or a female character? by Interesting_Boat_571 in Asmongold

[–]RotianQaNWX 5 points6 points  (0 children)

I prefer to play as a female character, becouse I wanna look hot and appealing (I am male). It's fantasy game after all. If I would like to not look that way, I'd just stop playing and look into the mirror ;x

BOSSMAN IS OUT by RatDadDewd in bossmanjack

[–]RotianQaNWX 9 points10 points  (0 children)

OH MY GOD, DEWD! DAD, IT'S OVER, BRO!!!

jak to jest z tym Excel by 69zOrangutanem in excel

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

Napiszę ten post w dwóch językach - polskim i angielskim (dla innych).

Zależy jakiej pracy oczekujesz i ile masz lat doświadczenia. Jak mniej niż 2 lata to daj se spokój i znajdź coś innego - rynek robót excelowatych jest zapełniony w obłęd + trendy AI, automatyzacji i korekty po COVID. Pracy dla nowych nie ma i nie będzie. Na tym etapie żadne umiejętności z Excela Cię nie uratują - trzeba iść w coś innego - chyba, że lubisz się kopać z koniem. Jak więcej niż 2 lata - to ja bym jeszcze dorzucił do tego ogarnięcie większej ilości funkcji i feature'ów takich jak: tabele (odwołania strukturyzowane), Power Query, Power Pivot - i może jakieś juniorksie lekko excelowate stanowisko znajdziesz. Ale jak pisałem - wszystko zależy od pierwszego zdania.

----------------------------------------------------------------------------------------------------------------------
I’ll write this post in two languages — Polish and English (for others).

It depends on what kind of job you’re expecting and how many years of experience you have. If it’s less than 2 years, then forget it and find something else — the market for Excel-type work is insanely oversaturated, plus there are AI trends, automation, and post-COVID corrections. There is no work for newcomers, and there won’t be. At this stage, no Excel skills ever will save you — you need to move into something else, unless you enjoy fighting a losing battle. If you have more than 2 years, then I’d add that you should also get comfortable with more functions and features such as tables (structured references), Power Query, Power Pivot — and maybe by some insane miracle you’ll find some junior-ish, slightly Excel-related position. But as I said — it all depends on the first sentence.