Makefile for rust projects

Personal Coding and Hobby Notebook
Have you ever run into a situation where cargo fmt, Rust’s code formatter, produces different output on different machines, even though you’re working on the same project? This can be incredibly frustrating, especially when you’re trying to maintain consistent code style across a team or between your own development environments. I recently encountered this issue, and […]
I was solving problems at HackerRank to teach a friend how to code in Java and to process the input data it’s convenient to use Java’s built in Scanner class. However, in one of the problems we wanted to read a whole line at once and we noticed that the Scanner’s API is geared towards […]
The JSON-RPC ant build.xml file comes configured by default for Tomcat 5 or JBoss. But what about those of us who like JETTY? Don’t panic, here’s the solution, just add that section for jetty, and comment out the default section for tomcat. I used /home/angel/bin/jetty, cause that’s the path of my jetty install, replace that […]