Contributing to Stack Overflow documentation

Recently Stack Overflow added a "Documentation" section in their website. It is a collaborative effort to build a central hub of knowledge driven by example. It assumes people learn better by having working examples so the core of Stack Overflow Documentation is writing/reading examples. It is also very different from Q&A which was the core … Continue reading Contributing to Stack Overflow documentation

3WJC: day4 – Binary search tree (end)

Last post was about binary search tree, today we end this work. In the last post I wrote I implemented Breadth first traversal and Depth first traversal with a parameter that is a lambda using functional interface. Today I use this implementation to write 2 methods using it to show what's possible. toStringBFT First method … Continue reading 3WJC: day4 – Binary search tree (end)

3WJC: day3 – Binary search tree (work in progress)

Today for my coding session I started to write a binary tree holding String. The goal is to read a text file and extract every words into the tree by lexicographic order. If there are duplicate words, you insert once but you still increment the number of occurrence for that particular word. Implementations details The … Continue reading 3WJC: day3 – Binary search tree (work in progress)

The three weeks Java challenge: Day 0 – Planning (3WJC)

Today is the first day of a three week Java challenge. I need to progress on every front of the Java technical stack. First thing first, what are the different areas I need to improve on? Objectives Core Java: -Knowing the ins and out of the language: keywords, garbage collection, jvm, implementation details... - Better … Continue reading The three weeks Java challenge: Day 0 – Planning (3WJC)