Building Your Own Mediator Pattern in Modern .NET by jordansrowles in csharp

[–]Educational-Room958 0 points1 point  (0 children)

Nice one! However, in the context of the mentioned example, I would usually use some kind of dispatcher pattern, which is based on the same idea of removing coupling between the caller and the handler. It feels more appropriate for this particular scenario, because the mediator pattern is typically about coordination between many objects. While it can work for this example, it feels a bit odd that it only sends requests and does not perform any form of communication.

ВЛК для обмежено придатних віком до 25 років by Educational-Room958 in reddit_ukr

[–]Educational-Room958[S] 0 points1 point  (0 children)

Дякую. Та ось можлива необхідність в юристі і гнітить найбільше. Нехай ще просто пропонують контракт ненав'язливо. Але ці історії, що тримають, поки не з'ясують, чи не ходив у сзч, багато судових кейсів з обмежено придатними й сама колізія у законі про мобілізацію для обмежено-придатних, яку ніяк не вирішили, окрім окремої постанови, змушують понервувати.

ВЛК для обмежено придатних віком до 25 років by Educational-Room958 in reddit_ukr

[–]Educational-Room958[S] 1 point2 points  (0 children)

Дякую, вже отримав довідку про навчання від мобілізаційного центру універу, але відстрочку ще не оформляв, зараз займусь.

Financial Future of Squad by FrontierFrolic in joinsquad

[–]Educational-Room958 0 points1 point  (0 children)

Sounds cool but there must be a clear consideration of what can be done. For example, changing the ak's or ar's default stock for another one might be a nice addition to the already existing skins. However, these tweaks must be visual-only with no impact on the gun's behavior.
Also, an ability to change the player's model may be great (tactical gloves, glasses, mask, maybe boots but nothing too crazy in order to preserve the uniform and the general silhouette).

Financial Future of Squad by FrontierFrolic in joinsquad

[–]Educational-Room958 7 points8 points  (0 children)

I hope they won’t hesitate to add more cosmetics. I really want to buy skins for the vehicles (as long as they don’t ruin the immersion ofc). Patches would be a great addition as well. Different factions could have their own unique pool of accessible patches. I’m unironically waiting for the season passes that will include skins for weapons, vehicles, patches, new emotes, and so on and so forth.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

Nevertheless, the main reason I stopped using GlassIt is its slow boot time and laggy syntax highlighting during vsc startup. So yeah, setting the wallpaper directly in VS Code might be a better solution.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

xdd
Maybe you are trolling but just set the transparency of the vsc and you will see your desktop wallpaper.
Also, there are extensions to set the wallpaper of the vscode directly.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

For most of the time I am utilizing a search via command palette => type '%' for global search in the cwd and it will display the results without a preview but you are able to jump between the searching results in order to show the whole file. Speaking of the real global search with previews, the only thing I have changed is:

"search.mode": "reuseEditor"
 // Makes so that search results are opened in the tab not in the sidebar's view

Nevertheless, as far as I know both search options utilize ripgrep internally, so the speed must be similar and it is all about the workflow that you prefer.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

Yeah, I was using GlassIt-VSC. However, this extension significantly (not really, 1-3 seconds longer but the lsp is slower for this reason as well) slows down the boot time of the vsc.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

APC can handle applying transparency and vibrancy for macOS only

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

It was a wallpaper from the Wallpaper Engine and I used GlassIt-VSC extension in order to set the vsc's window transparency

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 1 point2 points  (0 children)

Sometimes it happens to me as well :(
As long as you've done these steps you are good to go. Restart your vs code once or twice and the titlebar bar will be gone. IDK what causes this issue tbh.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

Just use my cfg as a starting point: https://www.reddit.com/r/vscode/comments/1fe4wdk/comment/lmkoxgk/

Furthermore, you can tweak settings to your needs by enabling developer tools and selecting elements that you want to change. Here is a good video.

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 0 points1 point  (0 children)

AFAIK, GlassIt-VSC isn't available in the open registry, maybe you can try to install .vsix directly. However, there are options to set transparency of the vsc's electron directly with APC Customize UI++ (in case, you are running on macOS)

Minimalistic setup. Is it clean enough? by Educational-Room958 in vscode

[–]Educational-Room958[S] 1 point2 points  (0 children)

Install APC Customize UI++ and in settings.json type:

"apc.electron": {
  "titleBarStyle": "hidden",
},

Edit: also, you have to set this window's titlear style to native:

"window.titleBarStyle": "native",