To Tor or a Tort

Last night, I read some articles about Tor. Tor is an anonymous network that redirects your communications securely and anonymously across the Tor network before entering the public internet. It prevents people from finding who / where you are and from spying on your internet connection. The idea is that the communication between you … [...]

IntelliJ's Live Template

If you remember, I like to write my getters this way (long story here) public String getName() { return this.name; } public void setName(String name) { this.name = name; } private String name; I have been doing it manually for a while but it turns out IntelliJ has a super nice feature for that: Live Templating which allows … [...]