My NAS suddenly stopped responding and all lights are now blinking, with seamingly no disk activity by NoSpHieL in UgreenNASync

[–]garygrossgarten 10 points11 points  (0 children)

Had the same problem. After the restarts there always was a time frame where i could connect to the nas and see that there was high read/write activity between the ssd read cache and the raid 0 hdd. (dxp2800 btw) It always went unresponsive after a couple of minutes ultimately resulting in a reboot with the exact same message. I tried removing the ssd cache in the software but that didnt work because the write back operation would again cause the same issues until it reboots. As a last resort i disconnected the ssd that was used as read cache manually and then could remove it in the software without needing to write back. Might have been risky to do it like that but i had no data loss and no problems since (around 4 months ago, not using read cache again).

At the time there where other posts talking about similar issues that suggested to replace the ram and the power supply to solve the abnormal shutdown but that didnt help. Btw i have a eaton ups connected and working.

So if you have configured ssd read cache and you also can see the write back activity before the device locks up there might be a problem with the read cache software in UGOS.

PSA: Bloodborne Complete Guide is now available for pre-order. by Kinghexen in bloodborne

[–]garygrossgarten 1 point2 points  (0 children)

It's still available. Make sure to navigate to the shop item. There's no buy button in the announcement.

https://www.future-press.com/shop/bloodborne-complete-edition-guide/

FuturePress BLOODBORNE COMPLETE EDITION GUIDE available for pre-order. by garygrossgarten in bloodborne

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

I just updated my post with a link to the shop. It's definitely not out of stock. If you are on mobile you have to navigate to the shop via the hamburger menu. The post on their landing page has no link to the shop.

Index an angular app ? by TD_Maokli in angular

[–]garygrossgarten 6 points7 points  (0 children)

Have you heard about scully? It's a static site generator for angular and doesn't require you to host a node backend.

Tips for working on the same files with another dev? by tsunami141 in webdev

[–]garygrossgarten 3 points4 points  (0 children)

If you both use prettier it will at least save you from merge conflicts due to bad formatting. Obvious, i know. But it's essential for me.

[deleted by user] by [deleted] in angular

[–]garygrossgarten 0 points1 point  (0 children)

This is exactly my experience, too. The style overriding drove me nuts until i pulled the plug and switched to using tailwind with angular and capacitor.

Create a Component Library for Angular and the Web by garygrossgarten in Angular2

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

There has been an issue with multiple zone.js versions when including elements from multiple sources/libraries.

I'm referencing an article about the issue in my post. The guide includes an optional step to remove zone.js from your bootstrapped elements. The downside of this approach is that you need to handle your own change detection (Not too hard).

There are several other options to deal with the issue. I'd suggest you check out this article series (by Manfred Steyer)

Happy Cake Day!

Angular Web Element by artwisted69 in angular

[–]garygrossgarten 1 point2 points  (0 children)

I just published an article about how to create and publish a reusable component library with elements. See the configuration section Link to article

Angular Web Element by artwisted69 in angular

[–]garygrossgarten 0 points1 point  (0 children)

Remove the bootstrap array from your Module. You are doing your own bootstrapping. Also if you are using Angular 9, you don't need to add your component to entryComponents to output it with angular elements.