programming

All About My Custom Hugo Theme KMT

My ToDo List for 2024 (daily updates)

waffarx cash back

How to Increase timeout limit in Google Chrome ?

Sometimes, we need to increase timeout for waiting for webpages to get from a busy server. But, unfortunately, Chrome has a hardcoded/predefined value for timeout for optimal loading. It can not be re-assigned not customized. If you urgently need to set a longer timeout for loading busy website, switch to Mozilla Firefox. In Firefox, you can navigate to the config page via this link about:config, then search for network.http.connection-timeout and set it as you like.

All About My Custom Hugo Theme KMT

Why Another Hugo Theme? 🔗 because there is no theme has all my specifications available. Why The Hugo Theme is Named Kmt? 🔗 I named my Hugo theme kmt after the name of my country. Objectives & Goals 🔗 speed page loading: surf the web at the speed of thought How to install Hugo theme Kmt ? 🔗 Install via git submodule Run this command while you are inside the folder of your Hugo site:

My ToDo List for 2024 (daily updates)

I have too many goals I want to achieve in 2024. Here are the goals related to programming. Opensource Image to Text OCR app 🔗 I opensourced img2txt app on Github. You can install the app from Google Play or from Github releases . Features built in public 🔗 works offline (No need to internet access). using all the available OCR technologies which are (1) ML Kit, (2) Google Vision, and (3) Tesseract OCR.

Should I use plain text files or sqlite database on my Android app?

I developed An android app to read the books of Pope Shenouda III in Arabic . I used plain text files as a storage. Each chapter of each book is a plain text file called for example a1.txt. I want to add more books quicker and it’s relatively easy and straightforward. But I also want to add search functionality. Searching in plain text files is not that hard! but search SQLite database is faster, efficient and overall better.

Phishing Facebook Pages via Recommendation

The hackers and stealers use new ideas and methods to convince you to click on their phishing page link. We discovered the direct message way in a previous post , and the recommendation way in another post . The hacker stole a Facebook page or created one, named it “Ad Assistant Pro” which indicates that it is for advertising assistance from Facebook. The hacker uses their fake Facebook page to recommend your page.

Another Strategy to Send a Phishing Link into Facebook Inbox

After few days of that phishing campaign we talked about in a previous post , I faced a new strategy to phish Facebook page admins and steal their accounts/pages. In this method of reaching out to Facebook page admins to convince them to click the phishing link and follow through the phishing funnel is using the inbox. The hacker/phisher is just sending you a direct message in messenger to convince you to click on the link.

Why I Migrated KMT Hugo theme from Tailwind CSS to Vanilla/Pure CSS ?

I created a theme for my bilingual website called kmt . In the beginning, I designed the layout of the theme in Tailwind CSS . After some time, I realized that tailwind is complicate things more for my simple theme. Building and designing with tailwind CSS needs a build step before shipping, but native CSS doesn’t. Using tailwind CSS resets the default values set by web browsers, but I can use those defaults and change ONLY the things I need.

How to show posts of my kmt theme on demo but not on others' websites

I want to create documentation and tutorials about my Hugo theme KMT, but I want to simplify my setup by adding them inside the theme itself. But if I added the posts in kmt theme, they’ll show up on all websites that use the Kmt theme! Another project for demo 🔗 I can use another instance/project that uses kmt theme, and add posts in it, and deploy it as the kmt theme demo.

Making Your Website Shine on Search Engines: SSG vs. SSR for SEO

So, you’ve built a fantastic website, but how do you get people to find it? Search Engine Optimization (SEO) is key! This post dives into SSG (Static Site Generation) and SSR (Server-Side Rendering), two web development techniques that can significantly boost your SEO. Even if you’re not a programmer, fear not, we’ll explain these concepts in a clear and simple way. Imagine your website as a restaurant menu 🔗 Static Website (No SSG nor SSR): This is like a printed menu.

Why I migrated my website to Hugo?

futureproof post format 🔗 In Hugo, we use a markdown file as the structure of the post. It is a reuseable post format. If something happen in the future, I can write a simple script to convert each markdown file into an HTML webpage. super fast 🔗 Hugo is built in Go, both are super fast. Hugo is simple and fast. I personally appreciate performance and efficiency and simplicity.