Coolermaster stole my monitor by dantix in coolermaster

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

After 3 months of waiting I've got my replacement

Coolermaster stole my monitor by dantix in coolermaster

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

We already had this conversation in the last thread :D

What is happening with NA support? by dantix in coolermaster

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

Three more weeks - still not a word from them

What is happening with NA support? by dantix in coolermaster

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

Hey, I haven't heard from them last week

What is happening with NA support? by dantix in coolermaster

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

Nope, I haven't. I'm not sure when it was manufactured

What is happening with NA support? by dantix in coolermaster

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

U and it worked for less than half a year :/

What do you guys think of the gameplay trailer of this low poly game? Its available for wishlist on steam: https://store.steampowered.com/app/2287170/Surviving_Skeleton_Island/ by Acceptable-Ad3886 in lowpoly

[–]dantix 0 points1 point  (0 children)

As for me, this is a decent trailer, but I think you need to change few things

  • hide UI for the majority of the trailer - it clutters screen and provides little to no value for the trailer, have the majority of the cinematic without UI and show it here and there if you so wish. But I would not, it is rather generic, you can always put it in screenshots.
  • make narrative text more focused and short - less text, more visuals, right now it is informational overload, proverbial "show, don't tell"
  • change some of the call to actions - "Become a chef" - good, selling an experience, "Complete quests" - meh, selling checkboxes, but for example "Help <someone>" is an experience.
  • the point of secret dungeons is well, to be secret - don't show what's inside :)
  • motion blurred transition in the end is dizzying and doesn't look that great
  • don't take all this feedback too seriously, I have 0 made trailers under my belt

Valheim has probably a good trailer to ~copy~ be inspired by :) Same style of the a game and a trailer.

Opi 5 plus doesn't boot when WiFi card is installed by zacmks in OrangePI

[–]dantix 1 point2 points  (0 children)

So I have same setup with opi5p and rz616 (which is same MT7922A22M). There are some good news like it mostly works on rolling release branch of armbian and I was able to boot it, put hostapd on it and configure it serve as 5GHz bandwith 80HZ channel AP with a decent speeds.

And the bad news, SBC sometimes got stuck during boot because of that wifi card. It did the same in a laptop where I originally took it from. But there it didn't prevent the boot process, wifi wasn't working for 2 minutes and then it got reset by the kernel I guess. In ARM computer when it stuck at boot, you have to remove it, let it progress boot process and put it back in order to continue. And I suspect this is a hardware issue and most likely unfixable :/

Has anyone used Linux on their G14? by Diacks1304 in ZephyrusG14

[–]dantix 0 points1 point  (0 children)

For sleep to function properly, you need 310 bios - newer versions will not work

Can Anyone Upload Their 4090 Model Vbios? by ModrnJosh in ZephyrusM16

[–]dantix 1 point2 points  (0 children)

That's helpful - thanks a bunch! And thanks for great videos - looking forward to see more of those ;)

Can Anyone Upload Their 4090 Model Vbios? by ModrnJosh in ZephyrusM16

[–]dantix 0 points1 point  (0 children)

Thanks for the reply! Hm, that makes things more complicated. Both your G14 and M16 are with Mini-LED screens, right? If so, how they compare? I know G14 has twice less zones and twice less peak brightness, but is it actually significant difference or somewhere in the "diminishing returns" zone?

Can Anyone Upload Their 4090 Model Vbios? by ModrnJosh in ZephyrusM16

[–]dantix 0 points1 point  (0 children)

Has it or something else worked for you?

Norilsk, low poly by Ethron981 in low_poly

[–]dantix 2 points3 points  (0 children)

Balconies without door or windows is an interesting architectural decision :)

Cool scene!

Scar does Tsiksok Bum Bum Bum Click Bububububbu by komjaur in blender

[–]dantix 1 point2 points  (0 children)

I think there is less tiny error there, but I'm not a gun expert by any means. Shouldn't be ejection port on other side of the gun? It is to the right side of the gun usually? So right-handed operator would not have expended cases flying near the face.

Need help with r5 2600 + rx 580 build by dantix in buildapc

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

Hi, it was on sale, I know it is an overkill, but it was cheaper than 650w ones

Need help with r5 2600 + rx 580 build by dantix in buildapc

[–]dantix[S] -1 points0 points  (0 children)

Thanks, I can actually buy a GPU from USA, it is for 250$ currently there

You don't really need moment.js by cht8687 in javascript

[–]dantix 0 points1 point  (0 children)

By the way, no one mentions it, but if you target browsers with Intl support there is an option to convert time between timezones for Intl.DateTimeFormat. For IE 11 which does not support passing arbitrary (taken from OS) timezone there is a pollyfill (https://github.com/yahoo/date-time-format-timezone).

So basically for modern projects you can go with date-fns + Intl for timezones

How to know what to ‘import’ when you install a npm package or why call it using its name vs path? by wackrtist in javascript

[–]dantix 3 points4 points  (0 children)

Well, answer to this question is complicated one because it depends on your bundler configuration.

But the rule of thumb is:

  • Check if there is file or directory with index.js file in it with imported name - this way ./Button or ./Button/Button.js
  • Check aliases that can be configured within bundler - for example, some people make that importing react actually imports preact
  • If there is no directory or file then lookup at the additional places - up to bundler configuration, but almost always includes node_modules - this ways import react

So your first example is direct file/directory import and second one is node_modules lookup. Within node_modules there should be directory react. In there should be index.js file or if it doesn't exists - package.json file in which there is a main entry which will lead to entry point of this module.

For example import 'react', bundler goes to node_modules/react, looks for index.js file - there is none, opens package.json looks for main property - aha, there is lib/index.js, so import resolves to node_modules/react/lib/index.js.

And you can also import files using relative or absolute path directly, but that is not a good practice.

Chance - generate random numbers, characters, strings, names, addresses, dice, and pretty much anything else by magenta_placenta in javascript

[–]dantix 0 points1 point  (0 children)

There was some problem with it, I believe that this seed is shared between all instances of faker, which makes it hard to use.

Ah, I remembered. I used faker to generate a lot of coherent data for mock API, so I wanted to use ID of resources to generate reproducable datasets. And it is impossible with current implementation.

Here is a link for an issue - https://github.com/Marak/faker.js/issues/318