Eduardo Zepeda's latests posts
Dive into Python the Best book to learn python
- python
<p>This book was my favorite book to learn Python, even if you're a beginner or have no experience at all. Since this was one of my first approaches to Python my review may be biased, but it's completely authentic.</p><p>If you're interested in more books t...
Read more
Python virtualenv linux basic tutorial
- python
<p>If you have no idea what a virtual environment is for, I have a post where I explain what <a class="markdown-link" href="https://coffeebytes.dev/en/python/why-should-you-use-a-virtual-environment-in-python/">virtual environments in Python</a> are for. Today I&rs...
Read more
Why should you use a virtual environment in python?
- python
<p>Python virtual environments are a tool that is used in every project. They are so important that they are part of the Python standard library, but what do they do? Let me tell you what a Python virtual environment is for with a fairly simple example.</p><p>Imagine you are...
Read more
Learn python from scratch Beginning Python Review
- python
<p>Beginning Python: From Novice To Professional was one of the first Python books I read. I chose this book because with it you could learn Python from scratch. The book starts from the installation of the language, going through the different types of data structures that Pytho...
Read more
To program a blog or to use wordpress?
- opinion
<p>The other day a person asked me why I use Wordpress for my blog if I could develop a website by myself. In the post where I explain <a class="markdown-link" href="https://coffeebytes.dev/en/opinion/hello-world-how-did-i-learn-to-code/">how I learned to program</a>&#x...
Read more
Testing with tox in Python, tutorial from scratch
- python
- testing
<p>Previously I briefly discussed <a class="markdown-link" href="https://coffeebytes.dev/en/python/unittest-python-are-python-tests-worthwhile/">unittest, coverage, mock, nose, nose, pytest and other testing tools in Python</a>. You are probably wondering then why ...
Read more
Unittest python are python tests worthwhile?
- python
- testing
<p>Long ago, when I started programming I thought that testing code was a waste of time. Why did I need to write more code? python unittest? mock? I could just read the code, see the places where the code might fail and handle the problem with a try and an except (or the equivale...
Read more
An Algorithm Problem a Day
- linux
<p>The other day, one of the youtubers I follow recommended a page to receive algorithms by email How would you like to receive one algorithm problem a day in your email? That's 7 problems per week and 365 problems per year. Imagine how much it would improve your problem so...
Read more
Mastering Chmod command and RWX Permissions on Linux Systems
- linux
<p>The previous entry was the third part of the series on the most common GNU/Linux commands. To end the entry I wrote about the <a class="markdown-link" href="https://coffeebytes.dev/en/linux/linux-basic-commands-passwd-du-useradd-usermod-fdisk-lscpu-apt-which/">chmod ...
Read more
Linux Basic Commands: lsof top ps kill systemctl chown chroot
- linux
<p>This is the continuation of the following parts:</p><ul><li><a class="markdown-link" href="https://coffeebytes.dev/en/linux/linux-basic-commands-grep-ls-cd-cat-cp-rm-scp/">GNU Linux Basic Commands, part one</a></li><li><a class="markdown...
Read more