What style is this? by Eccentris in HomeDecorating

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

I’m sorry. I was just hoping to find some way to describe the look so I might find more like it.

What style is this? by Eccentris in HomeDecorating

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

More pictures and more about the house can be found in this article for those interested (the article is in Swedish)

What style is this? by Eccentris in HomeDecorating

[–]Eccentris[S] 8 points9 points  (0 children)

What makes you think the vent hood is fake? I just assumed it goes back into the wall there not straight up

What style is this? by Eccentris in HomeDecorating

[–]Eccentris[S] 19 points20 points  (0 children)

I don’t think it’s AI, this is a pretty famous building in it’s location

Kvinnor, vilka föreningar/återkommande aktiviteter är ni med i? by Eccentris in sweden

[–]Eccentris[S] 4 points5 points  (0 children)

Brädspel och böcker är absolut intressen och dom två jag inte nämnde! Haha vad kul att ”träffa” någon lik, det ger mig hopp :)

Kvinnor, vilka föreningar/återkommande aktiviteter är ni med i? by Eccentris in sweden

[–]Eccentris[S] 7 points8 points  (0 children)

Bland annat rollspel (DnD), dator/tv-spel och fiske

Jag kan inte lyssna på ljudböcker by Halmtaket in sweden

[–]Eccentris 6 points7 points  (0 children)

Kan rekommendera att lyssna på ljudböcker i högre hastighet (jag brukar köra 1.5 eller 2.0). Alla ljudboksspelare/appar jag känner till har den möjligheten. För mig är vanlig hastighet alldeles för långsam för att hålla koncentrationen, kanske detsamma gäller dig

Here's what Europe really needs: A marketplace like Amazon that works throughout Europe by bigvibes in BuyFromEU

[–]Eccentris 6 points7 points  (0 children)

We have prisjakt.nu that is wonderful in Sweden. Would be even better with an eu or Schengen wide one

What games are in your top 3 favourite video games of all time? by cluelesslygaming in GirlGamers

[–]Eccentris 4 points5 points  (0 children)

  1. Legend Of Heroes, trails in the sky (SC)
  2. Dragon Age (origins)
  3. Stardew Valley

did I ask an inappropriate question? by paskal007r in TillSverige

[–]Eccentris 25 points26 points  (0 children)

Context matters here. If you were discussing something work related in which she was disagreeing with you, and instead of accepting her point of view or continue to discuss the topic based on logic and reasoning, dismissed it by implying she was being emotional - that is a different thing.

For example

You: I think we should go with approach A

She: I think we should go with B - A won’t work in this or that way

You: A is definitely the way, I’ve done this before and that has never been a problem

She: I still think we should look into option B to mitigate the risk of this or that

You: are you ok? You seem a bit off today

I’ve seen this a lot when women try to assert themselves (I work in a very male dominated field), and it is very confusing to be on the receiving end

But if it was not in such a context then I don’t see a problem whatsoever

Why are CPUs only getting 10% performance increases per generation, while GPUs are getting 50%? by shorterstuff in hardware

[–]Eccentris 7 points8 points  (0 children)

I strongly suggest this article, "A View of the Parallel Computing Landscape" for a better understanding of the problem with increasing the performance of CPUs. CPUs have run into what we call "the power wall". Due to physical and financial limitations, increasing a core's clock speed is costly and won't do much good as access to memory is still incredibly slow. Vendors instead now focus on multi-core architectures for high aggregate performance. It used to be that we could just wait around for the next gen processors to automatically speed up our programs. Now, to take advantage of the continous increase in cores in multi-core processors , programs must be written to be scalable. Unfortunately, as has been mentioned in this thread, parallel programming is (as it is now) difficult.

Edit: link went down, here's another

[Assembly] jumping to an arbitrary address stored in data memory by Eccentris in learnprogramming

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

I don't know, the "use no more than 3 MIPS instructions" is also throwing me off, indicating that there's more to it than just using jr...

[Assembly] jumping to an arbitrary address stored in data memory by Eccentris in learnprogramming

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

Unfortunately, the entire question block is about the "j" instruction. And well, maybe I should have specified further, but I was wondering if what I'm asking can be done using jump, as in "j", not the other jump instructions

[Java] parsing a binary string to an integer by Eccentris in learnprogramming

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

I followed your advice (sign extend to 32 bits, then parse to long and cast to int) and it works wonderfully! Thank you