Vamshi Kunuguntlatechtrendbytes.hashnode.dev·Sep 19, 2023SignalsWhat are Signals A signal is just a special type of variable that holds a value. But unlike other variables, a signal also provides notification when the variable value changes. Angular 16 introduces an innovative approach to managing events and inte...Discusssignals
Sidharthan Chandrasekaran KamarajforThe Bug Shotsthebugshots.dev·Sep 12, 2023Synchronising Periodic Tasks and Graceful Shutdown with Goroutines and Tickers | GolangGoroutines and channels are very useful and powerful primitives provided in the Go programming language for concurrently handling events, signals, and other asynchronous operations. The ticker can be used to create a repeatedly firing timer that will...DiscussGolanggolang
Pavel RomanovPropavel-romanov.com·Sep 11, 2023Reactive programming patternsWe already know what reactive programming is (if you don't, check out this article). In this article, we will look at some of the most common design patterns used in reactive programming and what common design principle they all have that enables the...DiscussReactive Programming
FeStackfestack.hashnode.dev·Sep 1, 2023How to Migrate Your Angular Application State Management from Observable to SignalsIf you are an Angular developer, you might be familiar with the concept of Observable, which is a way of handling asynchronous data streams in your application. Observable allows you to subscribe to data changes and react accordingly, using operators...Discuss·7 likesAngular
Elucian MoiseforProgramming Snippetssagecode.hashnode.dev·Aug 24, 2023Bash Signal HandlingBash scripts can receive signals from the operating system or other processes. These signals can interrupt the script and cause it to exit unexpectedly. The trap command allows you to catch signals and handle them gracefully in your Bash scripts. Thi...DiscussBash FundamentalsBash
Evgeniy OZeoz.hashnode.dev·Aug 19, 2023Angular Signals: Keeping the Reactivity TrainThere is a very underrated tweet by Pawel Kozlowski: https://twitter.com/pkozlowski_os/status/1543246502449106947 In this article, let’s apply examples from that MobX article to Angular Signals. In the examples, I will prefix variables containing s...Discuss·45 readsAngular SignalsAngular
Deepak Rudra Pauldeepakrudrapaul.hashnode.dev·Aug 9, 2023🔍 Exploring Angular Signals: A Sneak Peek into the Future of Optimization! 🚀Hey Angular enthusiasts! 🌟 Are you ready to dive into the exciting world of Angular Signals? 🧐 Get ready to level up your app's performance with this new developer preview feature that's here to revolutionize rendering updates! Let's unwrap the mag...Discuss·10 likes·57 readsAngular
Munir I Saidblog.muneersahel.com·Aug 8, 2023Manage Authentication State with Angular SignalIn modern web applications, authentication is a critical aspect of ensuring the security and privacy of users' data. As an Angular developer, managing the authentication state effectively becomes essential. What is Angular Signal? Angular Signal, a s...Discuss·2 likesAngular
Evgeniy OZeoz.hashnode.dev·Jul 29, 2023Dependency Graph in Angular SignalsWhen you use RxJS observables, to start receiving emitted values from an observable, the listener should explicitly subscribe to that observable. When you use Angular Signals, this is handled implicitly by a dependency tracking mechanism. Producers, ...Discuss·44 readsAngular SignalsAngular
Evgeniy OZeoz.hashnode.dev·Jul 25, 2023Application State Management with Angular SignalsIn this article, I will demonstrate how to manage your application’s state using only Angular Signals and a small function. More than “Service with a Subject” Let’s begin with an explanation of why using a bunch of BehaviorSubject objects inside a se...Discuss·193 readsAngular SignalsAngular