Related Posts
What is the Rust equivalent to Java’s PrintWriter?
In Rust, the equivalent of Java’s PrintWriter is the std::io::Write trait, which is implemented by a number of types that can be used to write data to an output stream, such as a file or a network socket. To use Write to write text to an output stream, you can use the write_all method, which […]
Android: How to obtain the WiFi’s corresponding NetworkInterface
Let’s say for some odd reason in the world you do need to get the corresponding NetworkInterface object of the Wifi on your android, in my case I needed to have my WiFi device send multicast packets, and I wanted my MulticastSocket to only send packets through the WiFi device (not 3g, or maybe even […]
Trac + SVN : The best shit ever for your software project
The company I came to work for knew I had some experience with subversion (back at LimeWire and with the migration of Frostwire’s CVS Repo no SourceForge.net to Subversion) so that’s one of the first things I did here. Subversion is a pretty useful tool, specially if you play with the hooks, e.g., send emails […]