Nikhil AkkiPronikhilakki.in·Sep 14, 2024Channels in GoIntroduction The Channels Model is another approach to handling concurrency, commonly associated with the Communicating Sequential Processes (CSP) paradigm. It is prominently used in languages like Go and Clojure (with core.async). In this model, cha...DiscussGogolang
Nikhil AkkiPronikhilakki.in·Sep 7, 2024Go vs Elixir for concurrencyElixir and Go (Golang) are both powerful languages, but they cater to different types of applications and development philosophies. Below is a comparison of their features: 1. Concurrency Model Elixir: Uses the Actor Model for concurrency, built on...Discuss·39 readsGogolang
FMZ Quantfmzquant.hashnode.dev·Jun 21, 2024How to implement strategies in Python languageSummary In the previous article, we learned about the introduction to the Python language, the basic syntax, the strategy framework and more. Although the content was boring, but it's a must-required skill in your trading strategy development. In thi...DiscussPython
Oluwajuwon Faloreoluwajuwonfalore.hashnode.dev·Jun 6, 2024Go Concurrency: Goroutines & Channels SimplifiedWhat are Goroutines? Imagine you are working on a school project with a group of friends. Instead of doing everything by yourself, you give each friend a specific task to work on at the same time. This way, you can get the project done faster. In Go ...Discuss·3 likes·184 readsgolang
Harshit Tripathiharshit11.hashnode.dev·May 28, 2024Concurrency and Channel in GoWhat is Concurrency? Concurrency is a core feature, and Goroutines provide a lightweight way to achieve asynchronous and parallel execution In summary, concurrency is about managing and overlapping the execution of multiple tasks, often on a single p...Discuss·1 like·140 readsGo Language
FMZ Quantfmzquant.hashnode.dev·May 22, 2024SuperTrend V.1 -- Super Trend Line SystemI. Origin of the story Mr. Ran, my good friend, has observed this indicator for a long time and recommended it to me before the New Year's Day to discuss whether it can be converted into quantification.It's a pity that the procrastinator has delayed ...DiscussSuperTrend
SHIVANI GANIMUKKULAshivanig.hashnode.dev·Mar 5, 2024Concurrency in Go: Part 2This article is the last part in a two-part series about concurrency in Go. Check out the first part here. In Part I of this series, we covered the basics of concurrency in Go and how to implement goroutines, multiple goroutines. In this blog we will...Discussunidirectional-channels
Theola Onuhshecode3.hashnode.dev·Jan 28, 2024Real-Time Live Updates in Django with WebSockets and Django ChannelsIntroduction In this article, I'll explore a key feature of my recently finished pet project, SensorFusion. This small-scale endeavor serves as a dedicated platform for sensor integration, authentication, and the storage of sensor data, seamlessly pr...Discuss·18 likes·175 readsDjangoDjango
Arjun AdhikariforPython is Lovepythonislove.com·Jan 9, 2024Authenticating User while testing websocket using Django ChannelsAuthenticating users while testing socket connections using Django Channels involves a few steps. Here's a general guide on how to achieve this: 1. Set Up Django Channels Firstly, ensure that Django Channels is properly installed and configured in yo...Discuss·56 readsDjangoDjango
Ajao Abeebadebobbytech.hashnode.dev·Oct 13, 2023Building a chat application in Django using ChannelsBuilding a chat application in Django using Channels for asynchronous communication can open up exciting possibilities for real-time collaboration! In this article, we explore how to leverage the power of Channels and the simplicity of SQLite to crea...Discuss·127 readsProgramming Blogs