Clickup CLI
# npm -i -g clickup-cli
npm install -f click-cli
# npm -i -g clickup-cli
npm install -f click-cli
Thanks to the (very friendly) reviewers team at Manning I just got my hands on the newly released Shipping Go, and first of all I had a great time reading from start to finish which hasn’t happened in a long time as far as IT books go.
I was actually pleasantly surprised.
The book focuses and explores the lifecycle of go projects in particular, but the techniques presented can be easily reused in the scope of other languages.
Autumn is coming !
A piece of magic is a hat - Martha Sliter
If you do analytics, you probably usually go straight for Python Notebooks, and create a bunch of graphs to visualize the analysed data.
When you don’t want to show that data to someone outside, and hide implementation details, a nice alternative, and my de facto favourite, is to go and use IcCube.
As an exercice, I was teaching how to get ready and graph quickly with IcCube, using air quality data.
I had a really time-limited effort to do to prove how to write a command line wrapper for an open API a customer is developping.
The target Rest API is the jquants-api, as presented in a previous post.
I chose to implement the wrapper in GoLang, which proved to be extremely fast and pleasant to do. The task was eventually done in a short evening, and the resulting Golang wrapper with core features has been uploaded on github.
I am excited about Project Loom. The project focuses on easy to use lightweight concurrency for the JavaVM. Nowadays, the JavaVM provides a one java thread to one OS thread model to the programmer. While it’s actually the current Oracle implementation, it used to be that many JavaVM versions ago, threads provided to the programmer were actually green threads.
Project Loom goes down that road again, providing lightweight threads to the programmer. Those lightweight threads are mapped to OS threads in a “many-to-many” relationship.