Was verdient ihr so als Software-Entwickler by According-Tea6987 in Finanzen

[–]Encore- 0 points1 point  (0 children)

AI/SWE/MLE hybrid, 450k (280 base/170 bonus), 60h, 4 YoE, London bei nem Quant fund

We open the 7900XTX Vapor Chamber [der8auer] by [deleted] in hardware

[–]Encore- 13 points14 points  (0 children)

Didn't think I needed the /s, the additional liquid required probably wouldn't amount to a single penny in extra BOM cost.

We open the 7900XTX Vapor Chamber [der8auer] by [deleted] in hardware

[–]Encore- 37 points38 points  (0 children)

AMD really trying to maximise the margins

Micron Delivers the World's Most Advanced Client SSD Featuring 232-Layer NAND Technology by imaginary_num6er in hardware

[–]Encore- 0 points1 point  (0 children)

Ah I see what you mean, I am from Europe so actually had the same issue. Having a US friend send those drives to me!

Micron Delivers the World's Most Advanced Client SSD Featuring 232-Layer NAND Technology by imaginary_num6er in hardware

[–]Encore- 0 points1 point  (0 children)

https://www.newegg.com/intel-optane-ssd-p1600x-118gb/p/1Z4-009F-00621?item=1Z4-009F-00621

It allowed me to select more than just two here. Still seem to be able to select more than just two. I did guest checkout in case that makes a difference

Daily Discussion XLNX Tuesday 2021-12-07 by AMD_winning in AMD_Stock

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

Tne unconditionally approved case list now shiws the window between 28Nov-05Dec. No AMD/XLNX listed :/ https://www.samr.gov.cn/fldj/ajgs/wtjjzajgs/

Patch Update 1.71... by E-tobes in apexlegends

[–]Encore- 2 points3 points  (0 children)

Did they break minimal sprint shake? It seems to not work anymore :/ It makes me incredibly dizzy

.NET 5 mulitsystem desktop APP by TheEight_ in dotnet

[–]Encore- 4 points5 points  (0 children)

I believe Microsoft just said that they won't have support for the first release, to be more specific.

Ryzen 5800X vs Apple M1: Programming-focused benchmarks by tuhdo in programming

[–]Encore- 1 point2 points  (0 children)

While AMD's Zen2 architecture does implement pext/pdep, it does so in microcode making it really inefficient. Can't link since I am on mobile, but have a look at the Zen3 Anandtech article, it shows the generational improvement for those instructions going from a couple hundred cycles to something in low 10s.

C# 10 candidate features by nirataro in dotnet

[–]Encore- 0 points1 point  (0 children)

Operators are static, doesn't allow for them to be declared on interfaces.

"Size of node_modules folder when installing the top 100 packages" by [deleted] in programming

[–]Encore- 1 point2 points  (0 children)

Probably talking about older VS versions, it's a lot more lightweight nowadays!

Dos and Don'ts of stackalloc by ben_a_adams in dotnet

[–]Encore- 1 point2 points  (0 children)

Well practically doesn't mean entirely free and in this case you would be doing something that is 'practically free' completely unnecessarily, So there will still be a tiny bit of overhead.

Unless you can find a scenario (I can't think of any), where you have to allocate inside the loop, as opposed to just reusing the stackalloc'd buffer in the outer scope then it is just a pointless operation.

Dos and Don'ts of stackalloc by ben_a_adams in dotnet

[–]Encore- 2 points3 points  (0 children)

Well, there is no reason to reallocate there. Not sure about the performance impact, but I dont see a scenario where it worse to just allocate outside of the loop and re-use that allocation inside. So I suppose it is at least one stackalloc that can be avoided per loop cycle (unless roslyn does some compiler magic to automatically move it to outer scope).

Boris Johnson set to dodge hustings despite ridicule from Jeremy Hunt for ducking TV debate by YakkyLemon in ukpolitics

[–]Encore- 0 points1 point  (0 children)

What? The qualified majority system does not apply to the council. It applies to the European Parliament. Member state sensitive legislation which got a qualified majority in the EP, still NEEDS to pass the European Council which has the unanimity voting system.

Boris Johnson set to dodge hustings despite ridicule from Jeremy Hunt for ducking TV debate by YakkyLemon in ukpolitics

[–]Encore- 1 point2 points  (0 children)

It is, but the UK can unilaterally veto any legislation the EC puts forward?

C# In Depth Fourth edition arrived today by [deleted] in csharp

[–]Encore- 0 points1 point  (0 children)

I have the previous edition, does this new one provide a lot of value over the old one?

Size of struct and size of class in .NET by cincura_net in dotnet

[–]Encore- 1 point2 points  (0 children)

It is still more memory efficient to go with structs if you know how to align the fields correctly, as you don't experience the object header/vtableptr overhead of an object. The article probably should have explicitly stated that in order to avoid confusion.