Pratik Butanipratikbutani.hashnode.net·Mar 3, 2023Flutter-Dart Tips & Tricks - Part 1Using isolates for concurrency: Dart's isolate system allows you to run multiple independent "isolated" threads of execution within a single Dart process. You can use isolates to perform CPU-intensive tasks without blocking the main UI thread, impro...Discuss·35 likes·183 readsFlutter Dart Tips & Tricks#pypro
Sadra Yahyapourimsadra.hashnode.net·Feb 15, 2023Tips for Writing Stunning Tech Articles!In this non-technical blog post, I'm going to talk about some tips that help you towards better impressions and engagement on your next technical articles. Speaking of technicalness, I mean pieces that are technically written and structured about fie...Discuss·28 likes·271 readsTechnical writing
Kaiwalya Koparkarkaiwalyakoparkar.hashnode.net·Nov 22, 20227 steps to craft a perfect CFP for your next conference.Hey everyone, if you are here then you have either submitted CFPs before or a total beginner who is looking to get more information about this process. I feel like this blog will be able to help both categories of people. So let's begin and get your ...Rishab Kumar and 3 others are discussing this4 people are discussing thisDiscuss·23 likes·359 readsconference
Haifeng Jinhaifeng.hashnode.net·Apr 10, 2024Design an Easy-to-Use Deep Learning FrameworkThe three software design principles I learned as an open-source contributor Photo by Sheldon on Unsplash Deep learning frameworks are extremely transitory. If you compare the deep learning frameworks people use today with what it was eight years ag...DiscussDeep Learning
Vishwas Acharyavishwasacharya.hashnode.net·Apr 25, 202310 Azure DevOps Tips and Tricks You Need to KnowAzure DevOps is a powerful platform for managing the development, deployment, and delivery of software applications. With its robust features and capabilities, it has become a go-to tool for many software developers and IT professionals. In this arti...Discussazure-devops
Jessica Randallstarchild.hashnode.net·Apr 24, 2023Mastering Your Github Readme: Tips and TricksA README file is a critical piece of documentation for any software project, especially on GitHub, as it is often the first point of contact for potential users and contributors. It is a document that typically resides in a project's root directory, ...DiscussGitHub
Sai Pranaysaipranay47.hashnode.net·Apr 21, 2023Decoding Naming Conventions: A Guide to Case Styles in CodingIntroduction Hello, fellow coders! In the programming world, naming conventions play a vital role in keeping our code readable, clean, and consistent. With so many case styles to choose from, finding the right one can be a bit overwhelming. In this b...Discuss·10 likes#namingconvention
satish Mishratechtonics.hashnode.net·Apr 12, 2023Python Speed Hacks: Boosting Your Code's Performance with These Tips and TricksHaving programmed for a significant portion of my career in Python, I too share your love for this language. It is an incredibly popular programming language and there are often multiple ways to accomplish the same task. However, not all of them are ...DiscussPython
satish Mishratechtonics.hashnode.net·Apr 7, 2023Top Python Decorators for Elegant Code: Must-Know Tools for Python DevelopersPython decorators are a powerful feature of the language that can be used to modify or extend the behavior of functions and classes. In this article, we'll explore a few of my favorite decorators that you may need frequently. @dataclass The @dataclas...Discuss·32 readsPython
Saran Sinhasaran-ka-gyaan.hashnode.net·Mar 28, 2023DevBytes: Your Ultimate Source for Latest Dev News, Trends, and Tips!"Time is the scarcest resource and unless it is managed nothing else can be managed." - Peter Drucker. In this new era, technology is growing too fast and people who will not stay up to date with the new trends will be left behind! this is true for a...Discusstechnology
Craig Bucklercraigbuckler.hashnode.net·Mar 27, 2023JavaScript Asynchronous Programming Tips, Tricks, and GotchasAsynchronous concepts may be evident in other languages but it's impossible to avoid them in JavaScript. JavaScript runs applications on a single-threaded non-blocking I/O event loop. To explain the jargon, imagine you're running a restaurant on your...Discuss·33 readsJavaScript
JPforRails Academydqnamo-1679336607515.hashnode.net·Mar 21, 2023Supercharging Your Rails Development with PryThis article was written with the help of AI. If you're a Rails developer, you're probably familiar with the Rails console, which allows you to interact with your Rails application in a command-line interface. However, have you heard of Pry? Pry is a...Discuss·44 readsRails
JPforRails Academydqnamo-1679336607515.hashnode.net·Mar 21, 2023Solving the N+1 Query Problem with Rails' includes MethodThis article was written with the help of AI. When working with Rails, you've likely encountered the N+1 query problem. This occurs when you have a database query that returns N records, and then you loop through those records and execute a separate ...Discuss·28 readsRails