Desiah Barnettdesiahbarnett.hashnode.dev·Mar 8, 2024Mastering CRUD Operations with Python:Introduction CRUD (Create, Read, Update, Delete) operations are fundamental in software development, allowing us to manage data effectively. In this beginner-friendly blog post, we are going to dive into the world of CRUD operations using Python, foc...Code Kickstart: A Beginner’s JourneyPython
Javal Nandajavalnanda.com·Jan 24, 2024Adding test target to Swift Package (--type executable)If you have used SPM to create the command line application before Swift 5.9.0, the project structure used to be as follows: Package.swift README.md .gitignore Sources/ Sources/SamplePackage/main.swift Tests/ Tests/LinuxMain.swift Tests/SamplePackage...49 readsSwift
Hayatudeen Abdulrahmanblog.hayatscodes.me·Jun 7, 2023How I Built a Command-Line Chat Application: The Client Code ExplainedIn this section, We'll dive into the client-side code implementation. The chat application provides users with the ability to register, log in, create chat rooms, join existing chat rooms, and exchange messages with other users. We will dissect the c...39 readsHow I Built a Command-Line Chat Application2Articles1Week
alexander ikehcodedfingers.hashnode.dev·May 17, 2023The UX of CLII remember being tasked to build a git workflow CLI tool for my team; I was getting called everyday to remind them some command of what was suppose to be shortcut and faster to remember. If i had paid attention to the UX as well as how funtional the ...27 readscli
Rushikeshtherushdevs.hashnode.dev·Feb 8, 2023#1 My Learnings: Let's build a CLI Application with Node.jsIntro The first blog with all technical stuff? nervousness at its peak, but still am excited to do it, I think this always happens while beginning something new, did you guys feel the same at the beginning of your "Learning in Public" phase? do let m...131 readsHashnode
Dev Patelvirus2466.hashnode.dev·Dec 20, 2022Cool Command Line Tools For Your Linux Terminal!.1. CMatrix Wanna Look Cool Among Your Friends!. Check This Tool Out. CMatrix is a command-line utility that generates the classic "The Matrix" animation from the popular movie franchise of the same name. You can expect to see some great animations i...3 likes·95 readsLinux
AbulAsar S.abulasar.com·Jul 25, 2021Creating Simple Calculator CLI app using Golang with TDD approach"Go is an open-source programming language that makes it easy to build simple, reliable, and efficient software" as advertised by Google on their official website. It is an excellent choice to develop reliable APIs, microservices, CLI apps, etc. I've...11 likes·1.9K readsGo Language