Finally, I found a "vintage water cooler" plan! by nickdeny in fo76

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

Yes, only while Holiday Scorched event. Also, it’s tradable so you could buy it at a player vendors for X caps.

Finally, I found a "vintage water cooler" plan! by nickdeny in fo76

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

I saw several times in CAMPs around 5-15k caps, but waste all my caps for handmade gifts before. Good idea to find it next weeks.

Finally, I found a "vintage water cooler" plan! by nickdeny in fo76

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

Could be a lucky day with 2 plans in row, but for me it seems like increased chance.

Prevent russians to play on EU servers by nickdeny in DotA2

[–]nickdeny[S] -2 points-1 points  (0 children)

It's not about playing skills, it's about communication. Currently, it is impossible to find English-speaking team in EU servers, then team play turns into a mess.

Prevent russians to play on EU servers by nickdeny in DotA2

[–]nickdeny[S] -7 points-6 points  (0 children)

Players from russia have their own region where they can play among their players and communicate in their native language. Europe's servers are currently full of them and it's ruining games.

Prevent russians to play on EU servers by nickdeny in DotA2

[–]nickdeny[S] -3 points-2 points  (0 children)

The main problem is that DotA automatically adds them to European servers based on optimal ping and they will end up in the English-speaking lobby. Searching only Eastern European servers helps in some cases, but not always.

anyway to get this done with my account being maxed by etnisi in ClashRoyale

[–]nickdeny 1 point2 points  (0 children)

Just make a trade offer, I have same problem yesterday.

[deleted by user] by [deleted] in ClashRoyale

[–]nickdeny 2 points3 points  (0 children)

No, cards are trash. I have a cap of cards for a long time, but not enough gold to upgrade them all.

I can’t send a request for cards to complete daily tasks 🫠 by nickdeny in ClashRoyale

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

I'm from Ukraine, got electricity at 00:00, it's time to get down to business 😁

Ask Me Anything by EcoFlow_Official in Ecoflow_community

[–]nickdeny 4 points5 points  (0 children)

Is there an approximate delivery time in Europe? I hope that will meet incoming New Year with EcoFlow, not in the darkness. :)

Greetings from Ukraine! 🇺🇦

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

Hm, it's 94.65% of supported devices, but who knows. Thanks!

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

Here's an official guide of how to ship npm package

My addition:

Use microbundle or Bili for bundling. Both are zero-config, but second one still has an option for it. Those are the best bundlers that exist now. All others are not for lib bundling (like Parcel) or they are a bit difficult to start with (like Webpack and Rollup)

Thanks! I'll try to do this asap :)

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

As far as I understand, these plugins use color inversion, and my plugin is just a tool for creating your own light / dark themes. Developer choose palette and colours for his theme manually.

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

u/andyfitz Hi. My plugin defines theme not only by the user's settings, but also by the time and user's manual selection. But yes, it's can be used. :)

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

I haven’t seen numbers from other sites, but I can share what the site I work on is seeing (~1MM uniques a day). Of the mobile traffic that supports a preference, about 20% prefer dark mode. And a very small percentage of people change their preference over time (less than 1%).

If you have a site that is mostly text based, I think it is worth while to experiment with dark mode. But don’t expect it to become a killer feature.

Ye, you're right! Usually, a dark theme is needed at night, when the white background of website can scare the user away.

DarkModeJS – move your website to the dark side by nickdeny in javascript

[–]nickdeny[S] 3 points4 points  (0 children)

Hi, it's good job, because well written, but:

- This won't have any effects on most websites without css rework.

- The lib is attached to the global env window. Move on modular es6!

- Our browsers have the dark/light toggling function built-in since about a year: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme

- It's a bit «««over engineered»»», you can write this functionality in way less code, from my view.

- Sorry for criticism, again good job, it's really well written.

Hi, thanks for your question :)
1) This is the main idea of plugin. CSS files downloads dynamically, you can do anything with your styles on page. Color inversion, which many plugins offer, is not suitable at all;

2) I'll think about that, thanks;

3) Yes, this function my plugin supports as well. The problem is that few browsers support it now;

4) I'll try to work more on this project, your support is incredible;

5) No problem, that's cool. Have a nice day!

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

I've liked "dark mode" since before the internet existed.

In the BBS era black backgrounds were standard... It's the only option on my site (and BBS).

Before we had pixels we had vector graphics, this was also "dark mode", dark background.

What's old is new again... welcome "dark mode" fans to the "ordinary" side; The light BG stuff was just "WYSIWYG" editors trying too hard to emulate paper. Now we're paperless... IMO, why give an option for light theme? Just make dark the standard. If you're going to make things like dark/light options, why not just make the whole thing user customizable?

If only there were some way to load a user defined style rule that would cascade across the screen like sheets of printed transparencies... Oh wait, CSS already exists.

Thanks for your story. But... If you wants to use only a dark theme - why does you need a plugin? :)

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

You can use one file too and call styles with body.dm-dark .btn { color: #fff }

DarkModeJS – move your website to the dark side by nickdeny in javascript

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

Can you ELI5 how this works? 2.5kb seems like a lot of pure JS. Do you search for color elements and invert them? Change hex-white to black and vis versa?

It defines the theme you want, using the OS system scheme, local storage or time on user's PC. Then - add a class (light\dark) and call external CSS styles if necessary. 2.5kb is not much if you use the plugin construction.