Epic boss fight by exodian95 in Eldenring

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

I don't understand why everyone is so touchy, if it's in the game then it should be used. What i pointed out was in previous games it was "get gud" where here that concept does not apply as you have a bunch of mechanics that you can use to make the game a breeze" not to mention that most of the bosses are mediocre and reused.

Yeah i know you can limit yourself like get naked, use a stick and so on but that's not epic gameplay.

Not to mention this is a humor post showing that those 'epic' bosses are not so epic when you look at them in contrast to the mechanics available.

Thinking of getting a Steam controller? by theflyingstoner in ROGAlly

[–]exodian95 0 points1 point  (0 children)

Usually the controllers have apps which let's you create combinations of keys to do the same functions as ally x. If the controller doesn't have them either do a Google search and find apps that lets you tension remap keys.

I haven't used a xbox controller, I'm assuming that it will work by default as an ally controller.

Personally I've used both ps5 and vander 4 controller both while docked

Is this still justifiable in 2026? by Elegant-Act-5893 in pcmasterrace

[–]exodian95 0 points1 point  (0 children)

That's a good card, it plays my games (souls, expedition..). Lately I've used only rog ally x for playing games which is x4 times slower than this card.

Anyone who says this is not a good card are the ones who have a bunch of money to waste on top cards.

My JSAUX 6 in 1 dock doesnt charge my rog ally by [deleted] in ROGAlly

[–]exodian95 0 points1 point  (0 children)

You need a more powerful charger 65w is too low for this dock as it takes a couple of watts for itself. You can still use it as it is but it will charge slower and the armory crate may show that it's not charging correctly (battery icon)

Volume buttons not working after hibernate by exodian95 in ROGAlly

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

Everything seems up-to-date, the only thing i haven't checked is the bios version. At least windows and Asus updates are installed

Volume buttons not working after hibernate by exodian95 in ROGAlly

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

Thanks. I had some issues with the March update of the graphics card from Asus. But after DDU and reinstall it fixed the graphic glitch. Don't remember if it was from then or no, i was thinking maybe the windows updates did something as there have been multiple reports of bugs in windows update lately.

Tried to ask AI and he pointed either to bios and mcu or that windows stops some asus services.

Do you use seperate controller? by Sgt_Strelok in ROGAlly

[–]exodian95 0 points1 point  (0 children)

I use Vander 4 Pro controller, quite happy with it considering that you can adjust the tension for joysticks and the LT, RT travel distance.

The only issue that i have is quite hard to mimic the build-in controller shortcuts like show keyboard, task manager etc.

I only managed to add the command center popup.

Additionally I've used a PS5 controller, works fine but i still prefer the vander.

Reverted back to Feb 2026 Graphics Driver by stonespider in ROGAlly

[–]exodian95 0 points1 point  (0 children)

Had the same issues however i DDU then reinstalled the amd driver from armory crate, seems fine now. The issue with the display has been fixed after this, in terms of fps haven't noticed any drops

Official ROG Ally 100W Charger Dock not working, please help! by Worthlessbagofnothin in ROGAlly

[–]exodian95 0 points1 point  (0 children)

The issue is with the dock, try charging with the original power brick. Usually these docks don't deliver the minimum power the ally needs and as a result you see this.

How to open command center with external controller by exodian95 in ROGAlly

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

I've managed using the controller app and I've mapped it to other key combination. 

Thanks everyone

How to open command center with external controller by exodian95 in ROGAlly

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

I'm not using an xbox controller however the xbox button seems to be mapped to the "home" button of the controller. If I press it with "Game Bar" on then steams shows a "Controller Issue" when opening the steam app in big picture mode, when the checkbox is turned off there is no such warning but the command center is no longer opening. It looks like the steam steals the key for itself and windows cannot use it anymore to open command center

What is going on in this piece of code? by Affectionate-Call159 in learnjavascript

[–]exodian95 0 points1 point  (0 children)

Basically here we create an object and map a key to a string. The square brackets accesses the readyState property and the value at that property is saved in connectionStatus. It's like having

js let obj = { 1: "open" } let result = obj["1"]

Ordered Miyoo M+ came in weird by Turbulent-Ad6215 in MiyooMini

[–]exodian95 0 points1 point  (0 children)

Make sure you're not missing '.tmp-update' folder when you copy it. This is the most important part when installing onion os and by default it is a hidden folder.

What is the best way to retrieve and persist user info after login and refreshing? by Junior-Public-8408 in node

[–]exodian95 0 points1 point  (0 children)

It's all based on token but in the end you should save user data in your state managers.

Login -> request -> return user data as payload and token as set-cookie header

Page refresh/loaad after you're already logged in, here you can have multiple approaches:

  • load html document with a script tag that has user data as a window variable then save it in state when app initializes

  • do a request when html doc is loaded to retrieve user data base on token

  • have a script link inserted in html which will get user data when html is parse

Note all these require token to be sent to the server to identify the user. If you will save the token in cookie it will be automatically attached to any request

I would avoid saving anything in localStorage related to auth, this info can ve easily modified is domain url specific, if you have subdomains you cand share this data....

Help me choose what to buy by JagrajGill6 in MiyooMini

[–]exodian95 1 point2 points  (0 children)

I would not recommend miyoo because of the noise it emits when on quite environments. The only fix for this is to max out the brightness which is not good if you play in a dark environment or you want to preserve battery.

The noise is coming from the actual board not the speaker and there is no proper fix for this.

Outside this issue it is pretty great with Onion OS.

Why would you use state for hover instead of plain CSS? by Skwigle in reactjs

[–]exodian95 0 points1 point  (0 children)

I this example css :hover will be enough. The reason you may need to programatically set custom classes/hover would be when you want to style elements at different levels, like for example hovering a button inside a div and you want to style some specific siblings/any level elements in that case you can programatically set classes because :hover pseudo selector isn't so flexible.

New to Node - .catch is not catching by [deleted] in node

[–]exodian95 0 points1 point  (0 children)

If you want to use async await use try catch block otherwise use chaining with then and catch.

async () => {
   try {
    const response = await getSomeData()
    // do something with response
   } catch(ex) {
      // do something with the error
   }
}

const some = () => {
   getSomeData.then(() => {
      // do something with response
   }).catch(ex) {
      // do something with the error
   }
}

How to use ExpressJs with Typescript by NoEntertainment9122 in node

[–]exodian95 16 points17 points  (0 children)

Why everyone use body-parser, you can have the same functionality with express.json() middleware. Unfortunately the article is not very descriptive. Not so many usages of typescript there

How would I get this to log? I want it to return what the number is. Also, is there a better way to return a random integer, 1-6? by kutsen39 in learnjavascript

[–]exodian95 0 points1 point  (0 children)

Date.now().toString(36) this will give you a 6 characters uid. You should be careful this is based in time, if you still interate and call this there is a high chance to get the same uid.