Have Firefox Read to You and How to Force Reader View

TLDR; Use blue page icon in the title bar (see image bellow) or about:reader?url= in front of your URL to switch to reading mode in Firefox. New FireFox has a “Reader” mode, that you can activate by clicking on the “document” button, highlighted in blue (in the nav bar) in the screenshot above. Part of … Read more

Crunching Honeypot IP Data with Pandas and Python

I am taking a cyber security class. This week’s assignment had us work on Honeypots. Honeypot is a server that pretends to have a vulnerability of sorts (open ports, old software etc.) and instead collects data on people who are trying to hack it. At the end of the experiment I ended up with some … Read more

My Strategy for SQL Injection Attack

I am attending a Cyber Security course provided by CodePath and sponsored by Facebook (thank you). During SQL Injection week I found myself very frustrated. I felt like I did not have a process that I followed and instead was copy-pasting various commands in hopes that one will eventually work. I wanted to share the … Read more

Facebook Needs to Remove Political Content

Few weeks ago I decided to take it easy on my Social Media use. Top 3 social media sites that I visited were Facebook, Twitter, and Reddit. I miss Reddit the least. I still visit Twitter for direct mentions, but I don’t miss my general feed all that much. I really miss Facebook. Facebook is … Read more

Transcribing Speech to Text with Python and Google Cloud Speech API

This tutorial will walk through using Google Cloud Speech API to transcribe a large audio file. All code and sample files can be found in speech-to-text GitHub repo. Transcribe large audio files using Python & our Cloud Speech API. @akras14 shows how https://t.co/dY56lmE0TD — Google Cloud (@googlecloud) January 11, 2018 View Post Sample Results This … Read more

Do NOT Share Your Google Photos

All shared Google Photos are open to the public, even if they were only shared with specific people. This is different from Google Drive, where only people granted permission via the “Share with others” drop-down are able to view the content. Below is a screenshot of my private album (that I shared with one person) … Read more

How to read CSV file in Python

TLDR; Using pandas (pip install pandas) Using native csv.DictReader Reading as a List Let’s say we have the following CSV file, named actors.csv. You can download this file here. The first method demonstrated in Python docs would read the file as follows: Open the file Create a CSV reader Skip first line (header) For every line (row) in … Read more