Esteban Herrera

Results 36 comments of Esteban Herrera

Hi VishGov. You're right, the recommended way is to join the first task, I've changed the example. The text and the other examples also reflect this. However, in practice, most...

Thanks, @DewaldDeJager. Yes, on retrospective, it would have been better to use Markdown, but my workflow was different when I wrote the book (wow, almost 4 years ago), and at...

Hi Vishnu, You're right, I've fixed it. Thank you so much!

Hi Vishnu, you're right, I'll make this and the other change this weekend, thank you so much!

Hi Vishnu! Actually, it can be both, `Integer.compareTo(Integer i)` or `Integer.compare(int a, int b)`. According to the [documentation](https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html#compare-int-int-), `compare(int a, int b)` is the same as: ```java Integer.valueOf(x).compareTo(Integer.valueOf(y)) ``` Since...

Changed, thanks to you!

Hi @kamoisaac! Sorry for the late response, and thanks for opening this issue, however, I'm a bit confused, exactly which part of the chapter contains the problem you're describing? There...

Hi @anasos. You're right, LocalDateTime have no concept of time-zone. I have removed the example, thank you so much! 👍

Hi @Snarkly, That sounds great, but I built this app for educational purposes, to port [Flask's MiniTwit ](https://github.com/pallets/flask/tree/master/examples/minitwit) from Python to Java, and unfortunately, I don't have time for a...