PinnedPredicting Venture Capital Investment SuccessHave you ever wondered how startups raise money or become big enough to become a publicly traded company? Venture capital firms are often the early investors with large pockets ready to fund what they assume will be a profitable investment. Large Venture Capital (VC) firms often look to return over…Machine Learning7 min read
Published in Analytics Vidhya·PinnedAnalyzing Donald Trumps Tweets in ROver the past 5 years we have seen the impossible come to fruition. The man who starred in the celebrity apprentice became the acting president of the United States. Many people, experts and critics alike, were in awe of this transition, and Donald Trumps unconventional ways of achieving his goals…Data Science5 min read
Published in CodeX·3 days agoBest way to approach Leetcode problems (with Python)The number and range of problems on Leetcode can be daunting for every potential job seeker. However, mastering Leetcode questions will allow you to learn fundamental problem solving skills that are tested on every Software/Data/Analyst interview. …Interview3 min read
Published in CodeX·6 days ago“How to get a job in tech guide”, without trying to sell you somethingI interviewed at top tech companies like Amazon, Spotify, Indeed, C3.AI and Circle as well as many startups. I applied to Software Engineering, Data Engineering & Data Scientist roles, all of which had a very similar interview process. …Interview3 min read
Dec 22, 2021Learning Java by creating a Tic-Tac-Toe gameStarting out learning java can be a daunting task even if you have prior programming experience. Java is a fundamental language for Software Engineers and object oriented programming in general. This project will focus on a simple game of creating a GUI to display a Tic-Tac-Toe game built with a…3 min read
Aug 19, 2021Parsing an XML file into an OLAP Database in SQLiteAn XML file is a common extensible markup language file used to store and transport data. Often used as the back end data storage from a website, it can be used for extracting, transforming & loading data into a database. For this example I choose to perform this ETL process…Data Science3 min read
May 11, 2021Inspirational Quote Bot in PythonEveryone likes to open their inbox every morning and find a motivational quote to start their day. I wanted to create a function that collects quotes from an API and sends out to the recipients in a list assigned to the variable “to” (not shown here for privacy). To start…Python1 min read
Published in CodeX·Mar 29, 2021Momentum Based Portfolio Rebalancing in PythonAssuming people have a portfolio of stocks, the best way to optimize gains is to adjust which stocks are being held & replace poor performing stocks. One strategy when rebalancing a portfolio is a momentum based approach. To test this approach we picked the 30 stocks in the Dow Jones…3 min read
Published in CodeX·Mar 12, 2021Creating a Spam Email Classifier using PythonTired of receiving unwanted emails? By training a ML model to classify emails as Spam or Ham, you can cleanly filter the massive amounts of incoming emails every day. For this task I am going to try to build a classifier that detects emails as either spam or ham (emails…Python4 min read