Fix github URLs to gitlab

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2019-09-26 18:34:49 +05:30
parent 7f04b8d7d8
commit 5fddcd806f
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ tags: opencv
<p style='text-align: justify;'>You can clone the project with:</p>
<pre><code>
git clone https://github.com/SanchayanMaity/MultithreadedFaceRecognition.git
git clone https://gitlab.com/SanchayanMaity/MultithreadedFaceRecognition.git
</code></pre>
<p style='text-align: justify;'>You need to modify the Makefile to compile the project and use it on your platform which can be a PC or an embedded board. Please do note that this project will be useful only if you are running this on a platform which has two cores or more.</p>

View File

@ -7,7 +7,7 @@ tags: gstreamer
<p style='text-align: justify;'>You can also clone this with</p>
```bash
$ git clone https://github.com/SanchayanMaity/gstreamer-audio-playback.git
$ git clone https://gitlab.com/SanchayanMaity/gstreamer-audio-playback.git
```
<p style='text-align: justify;'>Though I used this on a Toradex Colibri Vybrid module, you can use the same on a Beagleboard or desktop with the correct setup.</p>

View File

@ -9,7 +9,7 @@ tags: epoll
<p style='text-align: justify;'>One can clone the concerned repository with</p>
```bash
$ git clone https://github.com/SanchayanMaity/Multithreaded_Epoll.git
$ git clone https://gitlab.com/SanchayanMaity/Multithreaded_Epoll.git
```
The first requirement is a workqueue implementation. During my work with libevent and looking for usable examples, I came across one which was being used with libevent by the code's author Ron Cemer [1]. The second requirement was to have a good usable epoll example I could use which I found here [2].