Copy file content to clipboard

– you should have xclip installed Add to your ~/.bashrc copyClip() {cat $1 | xclip -selection clipboard} alias cb=’copyClip $1′ Now you can use like this: cb file_to_copy after this the content of the “file_to_copy” is available at the computer clipboard

Load Balanced Websockets with Spring Cloud Gateway

Reference: https://www.springcloud.io/post/2022-03/load-balanced-websockets-with-spring-cloud-gateway Load Balanced Websockets with Spring Cloud Gateway  The ability to have real-time two-way communication between the client and the server is a key feature in most modern web apps.  A simple approach to setting up WebSockets in Spring Boot is covered in Simple WebSockets with Spring Boot, which uses an in-memory message broker.…

How To Fail With Agile: Twenty Tips to Help You Avoid Success

by Mike Cohn & Clinton Keith – originally published in Better Software on 2008-07-01     The agile process is now accepted as valid alternatives to traditional software development processes. Most people who adopt agile do so to realize the benefits of faster delivery, higher quality, products that more closely match user needs, and so on. Not everyone is so…