Diwakar Jhadev2ops.hashnode.dev·Jun 27, 2024How to Handle Command Line Arguments and Flags in GoIntroduction Brief overview of Go programming language Go is a compiled, statically typed, garbage-collected language from Google. Known for simplicity, concurrency, and building web apps, microservices, and CLIs. Gains popularity for its efficien...Programming Blogs
Parth P Shahparthpshah.hashnode.dev·Feb 24, 2024Launch Darkly: Feature control with flags!In modern agile software development, feature management is a best practice to reduce risk and speed up code delivery. This blog will explore why and how we can use it. Why Use a Feature Flag? Feature flags enable us to fine-tune how we ship features...68 readslaunchdarkly
Luka Vidakovicapisurfer.com·Aug 25, 2023Testing complex flag conditions and ensuring complete case coverageRecently I stumbled upon an interesting test case where I needed to cover many possibilities and make sure everything continues to work as intended in the future. I had 7 boolean flags that needed to be used to toggle an app functionality. It's a bit...Testing
olorunfemi winnerlazydev.hashnode.dev·May 3, 2023How to use flags in WindowsHave you attempted to utilize a national flag such as 🇺🇸 on Windows? If not, I recommend that you give it a try, as the result would probably be disappointing. However, individuals who have previously attempted to do so would inform you that Window...92 readsTypeScript
Matthias Weilingermatthias.hashnode.dev·Jan 10, 2023How to use the Flag Package in GoThe flag package is a built-in package in Go that provides a way to define and parse command-line flags. Command-line flags are a common way for command-line programs to specify options and arguments. Import the package To get started with the flag p...81 readsflag
Isaac Mdzblog.mdzcode.com·Sep 10, 2022Flag ArgumentsUna de las prácticas no recomendadas en Clean Code, de Robert C. Martin, es crear métodos o funciones que reciban un argumento de tipo bandera (Flag Argument). ¿Como es eso? Pues... public String checkingStockAndGetMessage(long qty){ if( qty > 0 ){...2 likes·62 readsclean code