Project Writeups

I created Scoriet - a PHP REST-API generator, this project is open-source on Github, but is developed in WinDev. It is free and the source can be viewed!
Scoriet can generate more than only PHP REST-API, any source code can be generated!

The Connect 4 Game
The purpose of this assignment is to create a working text-mode version of the popular game, Connect 4.


MongoDB for Beginners ( Part 1 )
MongoDB Is usually referred to as NoSql. but most people think NoSql as ( Non-relational Database ). but what it actually means is "Not Only SQL". why !?
because In MongoDB we can use SQL ( Structured Query Language ). SQL is just a language for querying data. and If you think that MongoDB Is a Non-relational Database. then you are wrong again because we can store relations in MongoDB. It is just

How to create a new frontend app using Vite
"Vite is a JavaScript build tool that makes it faster and easier to build web applications." - Jeff Delaney


php run command windows
//run your php file via terminal
> php PATH to file /index.php
//to run any command just simply use BackTick
index.php file contain code like this
echo(`Your comman will goes here `); //=====================
Note: do not use single quotes or double Quotes use backTick otherwise you command
simply printed on terminal without runing.


C# How to make a player controller in Unity 2D
Hello, this writeup shows you how to create a player controller script in C# for a Unity 2D project. There are only four steps! Here is a link to the player controller script in my platforming game. You can play the game here in itch.io.


Speeding Up MySQL LIKE "%%" Query Using FULLTEXT Index.
So I often find myself in a spot where I need to run a query with a where column like "%search here%". But in MySQL these queries are slow and you can't use a traditional index to help speed them up. In this writeup I walk through a real live example of how I added FULLTEXT index to help speed up a query and still get that same results returned as if you used the like "%search here%" query.


Tailwinds Css - Markdown Parser
Hello guys, So I've tried to make a blog/forum website using TailwindsCss, but I always faced a problem, Tailwinds(originally) removes default styles from elements which means the normal markdown parsers don't work for TailwindsCss, if you need something to parse CSS you would need something like typography but with this module, you can compile without installing npm modules


Building my Own wysiwyg Editor
So I needed to build an editor to allow Grepper users to create project write-ups like this on I scoured other javascript wysiwyg libraries (there are a lot). Some seemed ok, but non worked quite the way I wanted and I just knew that I would run into bugs or need features and would spend more time trifling through the docs or code figuring out how things worked.