diff --git a/articles/article2.md b/articles/article2.md index 193f4f7..ee8c619 100644 --- a/articles/article2.md +++ b/articles/article2.md @@ -259,7 +259,7 @@ We will store this information inside a new collection called *matchups*. It wil ## Statistics -Using an auxiliary file called [find_counts.py](https://github.com/oracle-devrel/leagueoflegends-optimizer/blob/main/src/find_counts.py) we can find the number of elements we have in each one of our collections. In my case, having executed the data extraction code for several iterations, and processing matchups, I find myself with the following data: +Using an auxiliary file called [find_counts.py](https://github.com/oracle-devrel/leagueoflegends-optimizer/blob/main/src/old/find_counts.py) we can find the number of elements we have in each one of our collections. In my case, having executed the data extraction code for several iterations, and processing matchups, I find myself with the following data: ``` Collection match has 1193746 documents diff --git a/articles/article5.md b/articles/article5.md index 4800cc3..9299eaf 100644 --- a/articles/article5.md +++ b/articles/article5.md @@ -31,7 +31,7 @@ When we join a League of Legends game, the League process opens port 2999. We'll In order to make requests properly, we need to access localhost as the calling endpoint. However, we may not want to access data on a local computer where we are playing (as computer resources should be used to get maximum game performance). For that, I have created an architecture which uses **message queues** and would allow us to make requests from any machine in the Internet. -For this architecture proposal, I've created two files, which you can find in the [official repository for this article series](https://github.com/oracle-devrel/leagueoflegends-optimizer) under the src/ section: live_client_producer.py and live_client_receiver.py. +For this architecture proposal, I've created two files, which you can find in the [official repository for this article series](https://github.com/oracle-devrel/leagueoflegends-optimizer) under the _`src/live_client`_ section: live_client_producer.py and live_client_receiver.py. ### Producer