Blog - Yµn ^…^ ƒ(x) aka. Yunus Emre Vurgun

Blog
by... Yµn ^…^ ƒ(x)

How Does PHP Run?

Posted on June 9, 2023 by Yµn ^…^ ƒ(x) aka. Yunus Emre Vurgun

Have you ever wondered how your PHP source code gets to run? At some point, you installed PHP and started writing your scripts. You connected to your XAMPP MySQL with a few lines of code and it's magic! Well, maybe it is not magic after all. PHP is an interpreted (interpreter produces a result from your code but compiler turns your program into assembly) scripting language for server-side programming. It first appeared in 1995, 27 years ago. So how does it run? It needs an interpreter to run, and that is the "Zend Engine".

Read More

How to Write a Java Program that Takes Average

Posted on June 9, 2023 by Yµn ^…^ ƒ(x) aka. Yunus Emre Vurgun

In this post, I will be explaining how to write a Java program that takes the average of user inputs in the format of 4 different variables. These variables are numbers, and the average will be a double type. The program will print the results on the command line. We can start off by creating a class in your favorite IDE. It doesn't matter if it's Eclipse, IntelliJ, VSCode, or any other IDE. You can first create a package and then a class inside the package, but it is up to you which one you will go with. I will leave the GitHub link at the bottom for those who want to see it there. First, I created a package named "Average" and then imported the Java scanner API to create a scanner object later on in my code

Read More

Song Lyrics Draft 1

Posted on June 9, 2023 by Yµn ^…^ ƒ(x) aka. Yunus Emre Vurgun

I am not sure if I will turn this lyrics into a song but here it is: Verse: All hearts breaking as if stones thrown by a kid hit'em. Every couple breaking up as if love has died with their lost dreams.

Read More

Testing out the Artificial Intelligence of Midjourney Discord Server

Posted on June 9, 2023 by Yµn ^…^ ƒ(x) aka. Yunus Emre Vurgun

Recently, I’ve discovered a discord server named Midjourney. This is not any regular server you are used to. In fact, it is an interactive artificial intelligence application where you can generate high quality images based on text description. Much like DALL-E,

Read More

ChatGPT for Finding Syntax Errors in Your Code

Posted on June 9, 2023 by Yµn ^…^ ƒ(x) aka. Yunus Emre Vurgun

Hello everyone, I just recorded and uploaded a new video to my YouTube channel. As you may have heard, ChatGPT is becoming widely recognized because of its advanced capabilities. It has a good NLP capacity and, of course, for us developers, it is an amazing syntax corrector and debugger to some extent. I recorded a video where I feed the assistant some basic Java and JavaScript code with syntax errors and let it find the bugs.

Read More