Simona Winnekeswinnekes.hashnode.net·Jul 16, 2021FeaturedI Built an App with GitHub Copilot, Here's the ResultI got my invitation to the technical preview of GitHub Copilot two days ago and have been pair programming a bit with my new AI buddy. Check out our app Bamboozled, a minimal quiz (find the repository here). Please note: Copilot is currently not avai...Arun Mohan Raj and 9 others are discussing this10 people are discussing thisDiscuss·245 likes·4.7K readsGitHubNow After reading this I am even more excited to try copilot. Thanks for Writing. 3
Megha Pathakmeghapathak.hashnode.net·Jun 2, 20215 steps for Making Your First Open Source ContributionHey Everyone! Long time. It's been a long since I wrote something on my personal blog. So if I am resuming it, I will do it in style. There is a gift for you in this article of mine. By the end of this article, you will make your First Open Source c...Victoria Lo and 6 others are discussing this7 people are discussing thisDiscuss·184 likes·880 readsOpen Source
Sharannyo BasuforCoding Minutes Blogcodingminutes.hashnode.net·Aug 29, 2022Top 10 Online Tools to Level-Up your Development SkillsBeing a developer is hard. Developers must be creative to solve problems and come up with solutions. They must have the ability to think outside the box, break things down into smaller pieces, and rebuild them again. Many developers just have a passi...GOVIND GUPTA and 3 others are discussing this4 people are discussing thisDiscuss·119 likes·1.3K readsCareer Tips4articles4weeksInformative 3
JannikT1Projannikt1.hashnode.net·Oct 22, 2024Benefits and Downsides of Using StatechartsBenefits and Downsides of Using Statecharts Using statecharts has several benefits and also some downsides. I'll explain them to you. Jannik Wempe ·Aug 15, 2021· 7 min read Table of contents [ What are the Benefits of Statecharts? ](https://blog.ja...Discussdevelopment
JannikT1Projannikt1.hashnode.net·Oct 9, 2024State Machines and Statecharts: What are they?State Machines and Statecharts: What are they? State machines are great. But what actually are they? Can you explain them to others? What is a statechart? I'll help you out. Jannik Wempe ·Aug 8, 2021· 9 min read Table of contents [ What are State M...DiscussComputer Science
Wisdom Geekwisdomgeek.hashnode.net·May 15, 2024Copy/Pasting output from the terminalManually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is more convenient to use commands to do so. And we can save the effort by using the built-in commands. We can use and to copy and paste from the Mac termi...Discussdevelopment
Wisdom Geekwisdomgeek.hashnode.net·Mar 19, 2024Improve git clone performance in a CI pipelineHave you felt particularly annoyed by the time it takes to clone a large repository, especially one with a huge commit history? This post will discuss a simple but powerful technique to significantly improve git clone performance. The solution is cal...Discussdevelopment
Mufassir Kazimufassirkazi.hashnode.net·Apr 25, 2023RudderStack - The Open Source Alternative to SegmentWith over 114+ team size and 3.5k+ GitHub stars, RudderStack is the most popular open-source alternative to Segment. To put it briefly, RudderStack assists you in gathering all your customer event data. Once you have collected it, you can easily send...DiscussOpen Source
Marco Polettopolettodev.hashnode.net·Apr 24, 2023The new golden child of JavaScript frameworks: Qwik.jsIntro JavaScript frameworks are a dime a dozen these days, with new ones cropping up seemingly every week. With so many options available, it isn't easy to know which one to choose for your next web application project. But if you're looking for a fa...Discuss·9 likes·397 readsFrontend Development
Vishruth Harithsatheharithsa.hashnode.net·Apr 24, 2023APIs 101: The What, Why, and How of Application Programming InterfacesAPIs, or Application Programming Interfaces, are a group of protocols, processes, and tools that let different software programmes talk to each other and work together. APIs are basically a bridge that lets two apps “talk” to each other and share dat...DiscussAPIs
Techreviewertechreviewer.hashnode.net·Apr 23, 2023The Easiest and Hardest Programming Languages to LearnComputer systems are completely dependent on human beings to train them to take decisions. Everything a computer does, is somewhere, sometime, instructed by a human being. As computers do not understand the languages human beings speak, in order to i...Discuss·26 readsProgramming Blogs
Vishnu Sharmavishnusharma.hashnode.net·Apr 23, 2023Getting Started with Elixir: Syntax, Concurrency, and LibrariesCertainly, here’s a more technical version of the article: Elixir is a functional programming language built on top of the Erlang Virtual Machine (VM). It was designed to be highly concurrent, fault-tolerant, and scalable, making it a popular choice ...DiscussElixir
Manik Mehtadmanika27.hashnode.net·Apr 23, 2023Creating a Singleton Class in JavaAssume you want a class for which only one object can be created. This type of class is known as Singleton Class. How can you create that class? Before jumping to this topic let me recall the way for creating an object. The method is: className_objec...Discusskunalkushwaha