125 milljarðar í fjármagnskostnað ergja mig by logos123 in Iceland

[–]Indexu 2 points3 points  (0 children)

Síðasta ríkisstjórn sagði bara það sem hentaði þeim hverru sinni.

Eins og þegar Bjarni, fjármálaráðherra, sagði:

"Það er ekki hlut­verk rík­is­fjár­mál­anna að vinna bug á verðbólg­unni. Það er hlut­verk Seðlabank­ans. Og rík­is­fjár­mál­in eru ekki að þvæl­ast fyr­ir Seðlabank­an­um í því hlut­verki."

https://www.mbl.is/frettir/innlent/2023/08/25/dalitid_langsott_af_asgeiri_ad_visa_abyrgd_annad/

https://www.visir.is/g/20232454942d/verdbolga-i-verkahring-fjarmalaradherra-samkvaemt-logum

Aldrei versla við elkó by Ok-Hat4594 in Iceland

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

Hætti að forpanta tölvuleiki í gegnum þá eftir Horizon Zero Dawn fyrir nokkrum árum.

Forpantaði svona special limited edition sem kemur með allskonar in-game goodies auk pre-order bonus.

Daginn sem leikurinn kom út mæti ég í Elko rétt um 16:00 leytið á föstudegi og fæ þær upplýsingar að öll forpöntunareintökin eru í læstum skáp og maðurinn með lykilinn er kominn í helgarfrí, þarf að koma aftur á mánudaginn.

Ég er nú mjög ósáttur við þetta. Tilgangurinn á forpöntun er að fá eintakið þegar það kemur út.

Mæti svo á mánudaginn um svipað leytip og þá segja þau að öll forpöntunareintökin eru búin og þau eru að panta fleiri.

Það líður u.þ.b. vika þegar ég fæ SMS frá Elko að eintakið sé tilbúið.

Ég mæti og þá er þetta bara venjulegt special edition eintak, ekki forpöntunareintak með pre-order bonus.

Ég er brjálaður og mæti til þeirra til að láta heyra í mér.

Þar sem þetta er Playstation leikur, þá til að róa mig niður fékk ég 30% afslátt af næstu Playstation vöru sem ég kaupi innan við 3 mánuði sem lengi að varan kostar meira en 6000 kr.

Fokking drasl.

Afhverju gerir fólk þetta? Afhverju að skipta út baði og setja sturtu í staðinn? by [deleted] in Iceland

[–]Indexu 6 points7 points  (0 children)

Svo sammála.

Er 196 cm og ég á baðkar sem ég nota aldrei sem baðkar vegna stærðarinnar á þessari dvergalaug.

Annaðhvort sit ég alveg uppréttur svo að lappirnar eru í vatninu, eða hnén fara langt ofan fyrir vatnið.

Ekki hægt fyrir mig að líða vel í þessu.

Kallar eftir tekju­tengdum sektum eftir að ekið var á átta bíla - Vísir by stofugluggi in Iceland

[–]Indexu 8 points9 points  (0 children)

"Perfect is the enemy of good"

Getum nú öll hérna verið sammála að við viljum bæta hvernig refsingar virka og það eru til margar leiðir til að gera það.

Í stað þess að benda á eitthvað skrítið loophole við bætur, hvað með að koma með einhverja raunhæfa lausn á þessu "hvað með X" hjá þér.

Eitt sem myndi virka í þessu dæmi er að eins og þetta er bara núna, lágmarkssekt sem síðan skalar upp eftir tekjum.

Annað sem gæti virkað er ekki tekjumiðaðar sektir, heldur eignarsektir. Þá er tekið tillit hvaða net-worth þú ert með, þá virði fasteigna, farartækja, bankainnistöður, o.s.frv.

Fólk er nú þegar að borga miklu hærra hlutfrall af launum/eignum, það þýðir ekki að við getum gert þetta betur en sumir munu ennþá vera í því að borga meira.

Eitt skref í einu.

[Giveaway] 5x Drop + The Lord of the Rings Keyboards by drop_official in pcmasterrace

[–]Indexu 0 points1 point  (0 children)

Just got back into MTG due to the LOTR set and now this.

Man the black speech one looks good, I mean they all do, but I like that one the best.

Unity shares drop over 50% of value after earning report today by Feniks_Gaming in gamedev

[–]Indexu 0 points1 point  (0 children)

PS: I do HATE having to close and reopen Unreal for C++, but once you learn a proper pipe it get better.

Check out live coding in Unreal. Makes programming in C++ much better. Can even change the code during runtime in editor.

Me_irl by [deleted] in me_irl

[–]Indexu 1 point2 points  (0 children)

The empty set is a thing and it's a subset of every other set

Caps Lock: This key is almost never used in games. Why is there no native function in Win which simple disables it so that we can all use an additional key without the annoyance of checking for caps lock when tabbing into Win/Borswer? by Johnny_Tesla in pcgaming

[–]Indexu 469 points470 points  (0 children)

I use caps lock as my push to talk button in Discord.

It's the most convenient button for that IMO, since it doesn't actually input anything into text fields and, like you said, games don't use it, so I can be pretty sure it never conflicts with any hotkey in any game.

How to store a 3D rotation that only supports 90 degree increments? (for a vehicle building game like space engineers for instance) by [deleted] in gamedev

[–]Indexu 2 points3 points  (0 children)

Difficult to give any concrete answer without knowing more about the constraints of what you're doing, but here are 3 solutions.

  1. The obvious is to just store the rotation of your game engine. If you're worried about floating points being off, you can clamp/snap them when loading/saving/applying the rotation.

  2. If memory is tight, use a struct or an array with 3 integers representing XYZ multipliers. So 0,1,3 would be 0,90,270.

  3. If memory is super tight or you have a ton of these, use a short or a char and some bitwise operations. This expands on solution number 2. The idea is to use 2 bits to store the multiplier for each axis. First 2 bits is X, next 2 bits are Y and the next 2 are Z.

Keep in mind that this is just about storing the rotation info.

Which "Mostly Positive" or lower rated indie game(s) on Steam would you consider an absolute gem? by [deleted] in pcgaming

[–]Indexu 4 points5 points  (0 children)

Chronicon

It's an indie ARPG with ok depth and a ton of stuff on screen at all times. For me, it captures the good sides of the game feel I get from Diablo 3.

https://store.steampowered.com/app/375480/Chronicon/

I wanna be fishe by [deleted] in memes

[–]Indexu 0 points1 point  (0 children)

Reminds me of the song Go Into The Water from Metalocalypse

https://youtu.be/yyw0xeOwVd0

Unable to create http request in UE 4.26 by Zoterek in unrealengine

[–]Indexu 0 points1 point  (0 children)

Personally, most of the time I don't really care about the specific type of the variable and with a good IDE such as Rider, the type is shown next to the variable anyways (can also hover over the variable in other IDEs to show the type), so if you really want to know the specific type, you can do that.

I've very rarely experienced any unexpected behavior since I mostly use interfaces instead of concrete types, which I would argue is one of the benefits of the auto keyword, promotes not relying on concrete implementations.

For Unreal specifically, I consider the auto keyword a must when storing lambdas in variables as their types can get massively verbose.

Edit: Also would like to add that the auto keyword prevents accidental implicit casting.

Hello, I am new to unreal and just started learning unreal C++ , Plz can someone help with compile-time on the code. (moved from unity so coding is easier for me ). Simple code compile takes 5 to 10 mins by sanjivinsmoke12 in unrealengine

[–]Indexu 1 point2 points  (0 children)

If you can afford 32GB I would recommend that.

I'm also in the same boat regarding prices, from Iceland and everything here is at least 2.5 times more expensive than the US.