Author: disturbedrod

Transparent text overlay
For this tutorial I will be using the following image
Image by G.C. from Pixabay
STEPS
1. Duplicate the image layer using CTRL/CMD + J
[...]

OAuth 2.0 authentication in C#
Getting an OAuth 2.0 authentication token in C# is easy to do
For this you need only three parameters
grant_type=client_credentials
client_id [...]

5 ChatGPT prompts to help you plan your day
We have 5 new prompts to help you with ChatGPT, these ones will be helpful for you to plan your day
1. Here’s my to-do list: [paste your list]. Ran [...]

How to check derived class in use
Using a base class that's inherited into other classes, sometimes requires that we check which class is the one being used to execute some code.
Th [...]

Tutorial – Smooth glass type effect
Creating text effects in photoshop can be really simple, here's a quick way to create a smooth glass type effect, the effect works well with any backg [...]

Green Vivid Colors for nature photos
We begin with our nature photo, in this case I'm using a praying mantis standing on in a leaf after some rain
For this photo we will only modif [...]

Get contents of HTML style tag in ASP.NET using C#
There could be sometimes the need to get the contents of the html style tag, this is a straightforward solution.
The first part is to make the tag [...]

Open a database connection asynchronously
C# allows opening database connections asynchronously, but there are a couple things to take in consideration, you need to close the connection otherw [...]

5 ChatGPT prompts to elevate your skills
ChatGPT is an artificial intelligence (AI) chatbot developed by OpenAI, here are 5 prompts you can use to elevate your skills:
Learning a Languag [...]

How to update the GUI from a different thread
When using a multithreaded application, the GUI will run in the initial thread created by application when it's started, any additional thread created [...]