Date: Time:
Welcome, Log in by clicking  Here!

TA-LIB

TA-LIB Ta-lib allows you to calculate technical indicators and it’s a requirement for lots of other libraries. If you try to install just using PIP, it’ll try to pull the packet from pypi but you’ll more than likely end up with errors because of missing dependencies. There’s 2 versions of the ta library that you […]

Posted on August 3, 2024 in coding by henryoviedo93
Tags:

LINUX

LINUX As IT systems and workloads get more complex, the underlying architecture and operating system must be reliable, scalable, and performance driven. Linux is the table foundation for all IT workloads and deployments-whether traditional or innovative-from bare metal to virtual, cloud, and containers. Linux is an open source OS.Created by Linus Torvalds in 1991, it […]

Posted on June 3, 2024 in coding by henryoviedo93
Tags:

Parsing with python cont….

This is a copy of my code. I don’t have my github set up. import imaplib import email import yaml with open(“credentials.yml”) as f:content = f.read() my_credentials = yaml.load(content, Loader=yaml.FullLoader) user, password = my_credentials[“user”], my_credentials[“password”] imap_url = ‘imap.gmail.com’ # Connection with GMAIL using SSLmy_mail = imaplib.IMAP4_SSL(imap_url) # Log in using your credentialsmy_mail.login(user, password) # Select […]

Posted on August 18, 2023 in coding by henryoviedo93
Tags: ,

Parsing with python

Downloading your data from google takes DAYS If you’re anything like me, your Gmail account tends to accumulate a lot of emails over time. While you can resort to exporting your data to free up some space, this process can be quite time-consuming, often stretching over hours or even days. However, with the advancements of […]

Posted on August 18, 2023 in coding by henryoviedo93
Tags: ,