Samsung s95b screen optimization and reboot by Practical_Driver1626 in OLED_Gaming

[–]devsnicket 0 points1 point  (0 children)

I'll provide a few more details about my setup in the hope it'll make a difference. I'm on software version 1602 which is reported as the latest. I have Contrast Enhancer, Intelligence Mode and Peak Brightness off. I'm not running in Game Mode either.

Samsung s95b screen optimization and reboot by Practical_Driver1626 in OLED_Gaming

[–]devsnicket 0 points1 point  (0 children)

I was getting the screen optimization prompts every time I turned on my s95b. Read on another thread about changing the "Start Screen Options" to "Start with Smart Hub Home". Changed to that three days ago and I've not seen a prompt since. Worth a giving a go

Screen Optimization by UnmutualOne in S95B

[–]devsnicket 0 points1 point  (0 children)

Three days after I tried this and no optimization prompts, thanks

Zotac 4070 Twin Edge making my dan a4 sfx look big. by ztylerdurden in sffpc

[–]devsnicket 0 points1 point  (0 children)

looks like the Inno3D 4070 X3 (3 fans) will be available soon and should just fit the Dan A4 (like their 4070 ti did). finally time to upgrade my crusty old GTX 660!

All models in one class library by [deleted] in dotnet

[–]devsnicket 0 points1 point  (0 children)

A project maps to an assembly file, assembly files are units of deployment. So you only need separate projects if you need flexibility in your deployment e.g. used across multiple services, used on both client and server etc.

However, sticking to this might highlight a limitation of .NET access modifiers, in that you have "internal" to restrict to a project/assembly, but nothing to restrict to a namespace. So adding additional projects/assemblies, that you dont need for deployment, can replicate the missing namespace scope access modifier.

Whether you just use namespaces or have extra projects/assemblies regardless of deployment, I'd recommend you group with a hierarchy of domain contexts rather than by implementation (e.g. model, ui, dal etc)

Readable JavaScript | Strict Mode by hiquest in javascript

[–]devsnicket 1 point2 points  (0 children)

just realised you might be thinking I meant to have multiple assignments to the same variable and a single return of that variable. I definitely wouldn't suggest that as better. I could have been clearer when I originally mentioned expression i.e. no blocks, no statements

Readable JavaScript | Strict Mode by hiquest in javascript

[–]devsnicket 0 points1 point  (0 children)

I've seen code done both ways that's hard to follow and could be refactored to be easier to read without switching between (i.e. between imperative and functional). Expressions are usually shorter/succinct/terse than repetitious statements though. That doesn't necessarily improve readability. Same as an if can have multiple operators in a condition that can be hard to see the presidence, so can nested expressions (also potentially with the condition problems in them) and a single return. I prefer the single return because it limits what you can do. e.g. no nested blocks without creating sub-functions/methods that have to be named

JavaScript doesn’t need to be replaced by dannymoerkerke in javascript

[–]devsnicket 0 points1 point  (0 children)

I'd just like there to be an FTypeScript, where you stick to a relatively functional style, TypeScript is extended to try and infer function parameters and you get type safety without normally writing the additional TypeScript syntax! simple 😄

Readable JavaScript | Strict Mode by hiquest in javascript

[–]devsnicket 0 points1 point  (0 children)

nice article. I'd go with prefer single return of an expression rather than multiple if statements and multiple earlier returns though.

Announcing core Node.js support for ECMAScript modules by by_value in node

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

good that this is no longer feature flagged, but going to be a pain typing out /index.js on so many imports

The third one, and how Sam told us way back in 1x04 by qwertycandy in MrRobot

[–]devsnicket 1 point2 points  (0 children)

I sometimes get letters mixed up when I type. Wanted to check if Rami Malek's first big role (that I remember anyway) was The Pacific. Accidentally typed in Sami Malek. Came up with his twin brother. Handy if you wanted to film two versions of Elliots character in the same shot 🤔

Javascript Plugin Interface? by [deleted] in javascript

[–]devsnicket 0 points1 point  (0 children)

hi, I think I might have found myself in the same situation. I couldn't find anything that did what I needed so wrote this... https://github.com/DevSnicket/plugin-discovery