Diving into Go by building a CLI application
1–10 of 124 posts
Re: Diving into Go by building a CLI application
#2Re: Diving into Go by building a CLI application
#3I had a similar idea a couple of months ago. Make a CLI in golang that allows me to easily open all my favorite timewaster sites at the start of the work day. But it ended up in the "Started, but never looked at again" pile. Maybe I'll have another look at it on the weekend.
Trust me it is always difficult to restart work on pending projects, once you give it two minutes you'll get glued to it.
Just force yourself to get started.
Re: Diving into Go by building a CLI application
#4I had a similar idea a couple of months ago. Make a CLI in golang that allows me to easily open all my favorite timewaster sites at the start of the work day. But it ended up in the "Started, but never looked at again" pile. Maybe I'll have another look at it on the weekend.
https://unix.stackexchange.com/questions/17659/opening-multi...
Re: Diving into Go by building a CLI application
#5I had a similar idea a couple of months ago. Make a CLI in golang that allows me to easily open all my favorite timewaster sites at the start of the work day. But it ended up in the "Started, but never looked at again" pile. Maybe I'll have another look at it on the weekend.
In case you don’t get around to writing that golang code. https://unix.stackexchange.com/questions/17659/opening-multi...
Re: Diving into Go by building a CLI application
#6I had a similar idea a couple of months ago. Make a CLI in golang that allows me to easily open all my favorite timewaster sites at the start of the work day. But it ended up in the "Started, but never looked at again" pile. Maybe I'll have another look at it on the weekend.
Same thing with me, however I am forcing myself to complete pending projects in this Covid lockdown. Trust me it is always difficult to restart work on pending projects, once you give it two minutes you'll get glued to it. Just force yourself to get started.
Re: Diving into Go by building a CLI application
#7I had a similar idea a couple of months ago. Make a CLI in golang that allows me to easily open all my favorite timewaster sites at the start of the work day. But it ended up in the "Started, but never looked at again" pile. Maybe I'll have another look at it on the weekend.
In case you don’t get around to writing that golang code. https://unix.stackexchange.com/questions/17659/opening-multi...
Re: Diving into Go by building a CLI application
#8It makes framing out advanced Golang CLIs a breeze
*(creator)
Re: Diving into Go by building a CLI application
#9Re: Diving into Go by building a CLI application
#10Large projects like Hugo and Kubernetes have used Cobra to build their CLI tools, and it's fairly light as well even if you need simpler usage. We use it at my workplace simply for wrapping our microservices and the few commands (serve, migrate, etc)