Reading Pcap File with Python

If you ever work with something related to computer networking, you probably know what is Wireshark. It is a tool to collect network packets and it also allows you to analyze them. It is an awesome tool but it is not suitable to analyze more than one pcap file and use the data you collected to train a model. There are some Python packages(Scapy, Pyshark) to get information from pcap files but they are generally slow. As an alternative to […]

Read more

The Software Engineer: An Unexpected Journey (how to learn to code and get a job)

If you’re late for the bus, need to finish your latest side project or (god forbid) go on a date with a real human (not AI) I’ll save you some time. TL;DR stop watching YouTube tutorials and stop using boot camps (for the most part) and just make something fun. Can’t think of something fun? Steal something fun from elsewhere. Here, make a terminal website like I did with a programming language you think it would be cool to learn […]

Read more

Intro to Pre-Trained Models in NLP?

As a scientist working in the Natural Language Processing/Understanding (NLP/NLU) domain, I use Pre-Trained Models (PTMs) on a daily basis. We all also use PTMs on a daily basis in our lives without even knowing it. For example, when you talk to your favorite virtual assistant (e.g. Alexa, Siri, Google), or when you use Google Translate, these engines rely on PTMs one way or another. I was having a hard time finding a brief primer to what PTMs are in […]

Read more

How to Add Python to PATH

You may need to add Python to PATH if you’ve installed Python, but typing python on the command line doesn’t seem to work. You may be getting a message saying that the term python isn’t recognized, or you may end up with the wrong version of Python running. A common fix for these problems is adding Python to the PATH environment variable. In this tutorial, you’ll learn how to add Python to PATH. You’ll also learn about what PATH is […]

Read more
1 154 155 156 157 158 927