Pytrends 2: Analyzing Interest Over Time

Overview The interest_over_time() function in the pytrends library allows you to retrieve the interest in specific keywords over time. By analyzing this data, you can gain insights into how the interest in a keyword has evolved, helping you to make informed decisions about your content strategy and marketing efforts. In this tutorial, we will cover: Defining the list of keywords Setting the time range Retrieving interest over time data Analyzing the results Define the List of Keywords First, we need to define the list of keywords for which we want to analyze the interest over time....

March 27, 2023 · 2 min · Juhyun Lee

Managing Multiple Rust Environments with rustup

Overview rustup is the official toolchain installer and manager for the Rust programming language. It provides a convenient way to install, update, and manage multiple Rust toolchains on your system. This report will cover the installation process for various platforms, basic usage of rustup, and provide an example of managing multiple Rust environments. Installation macOS and Linux To install rustup on macOS and Linux systems, open your terminal and enter the following command:...

March 26, 2023 · 3 min · Juhyun Lee

Pytrends 1: How to use Google Trend unofficially with Python

Overview Google Trends provides valuable insights into search trends and keyword popularity. However, Google doesn’t offer an official API for accessing this data. Fortunately, the Pytrends library enables us to access Google Trends data using Python. In this tutorial, we’ll walk you through the installation and setup of Pytrends, and demonstrate how to perform a simple search and interpret the results. Prerequisites To follow this tutorial, you should have: Python 3 installed Basic knowledge of Python programming Familiarity with using Python packages Installation To install Pytrends, simply use pip:...

March 26, 2023 · 2 min · Juhyun Lee

Deploying a Hugo Static Site to GitHub Pages with GitHub Actions

In this blog post, we will discuss how to deploy a Hugo static site to GitHub Pages using GitHub Actions. GitHub Actions is an automation feature provided by GitHub that allows you to create custom software development workflows directly in your GitHub repository. By using GitHub Actions, you can automate the process of building and deploying your Hugo static site to GitHub Pages with ease. Configuring GitHub Pages Settings Before you can successfully deploy your Hugo static site to GitHub Pages using GitHub Actions, you need to configure the GitHub Pages settings for your project....

March 25, 2023 · 3 min · Juhyun Lee

Adding AdBlocker Detection to Your Hugo Blog with PaperMod Theme

In this blog post, we will learn how to add AdBlocker detection to your Hugo blog using the PaperMod theme. We will also include a simple warning message for users who have an ad-blocker enabled, encouraging them to disable it or whitelist your website. Overview Here’s a quick overview of the steps we will take: Create a custom CSS file to style the warning message. Create a JavaScript file to detect ad-blockers....

March 24, 2023 · 2 min · Juhyun Lee