How to update WordPress blog posts comment status from closed to open with sql query?
Monday, August 12, 2024 in Posts
Categories:
2 minute read
To update the comment status of WordPress blog posts from “closed” to “open” using an SQL query, you’ll need to modify the WordPress database directly. Here’s a step-by-step guide on how to achieve this safely: Backup …
7 Important Tips for Learning Programming
Tuesday, January 09, 2024 in Posts
Categories:
4 minute read
Nowadays, technology and software have found a place in every aspect of life. Software is required for all of the developed technological devices and hardware to work. Software, that is, a computer program, consists of codes put together by a …
Free Python Course from Harvard University
Sunday, June 18, 2023 in Posts
Categories:
less than a minute
Harvard University has the “Harvard CS50” program, which includes programs within the scope of introductory computer science training. You can also take the “Introduction to Programming with Python” course, which is one of the …
How to Locate and Edit Hosts File on a Mac Using Terminal
Wednesday, June 14, 2023 in Posts
Categories:
2 minute read
The hosts file in an operating system is used to convert domain names to IP addresses. Users can enter their hosts files and go to the IP addresses they define themselves, instead of replies from the DNS server. Mac users can find this file in the …
Creating a Class() example in Kotlin
Monday, February 28, 2022 in Posts
Categories:
less than a minute
In Object-Oriented Programming Languages, the classes are important. You can find a simple Class creating example in this post. fun main() { var personA = Person("Mike","Sunshine") var personB = Person() var personC = Person(lastName …
Checking data type with when() example
Monday, February 28, 2022 in Posts
Categories:
less than a minute
In this short note, you can see an example of when() usage with data type. The type of data will determine the code to run. val x : Any = 12.75 when(x){ is Int -> println("$x is an Integer") is Double -> println("$x is a Double") is String -> …
Markdown Syntax Guide
Wednesday, January 01, 2020 in Posts
2 minute read
This article offers a sample of basic Markdown syntax that can be used in Hugo content files. Basic Syntax Headings # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 Heading 2 Heading 3 Heading 4 Heading 5 Heading …