by Garth | Apr 23, 2024 | Gaming
Solution 1 : Go into the game root directory. (The folder that has your generals.exe) and delete the dbghelp.dll Solution 2 : Edit the options.ini file. I installed my game through Steam on Windows 11.Now it’s important to note that on the newer versions of...
by Garth | Aug 24, 2023 | CSS Blog Posts
So I figured this out by mistake and had my mind blow when I saw it. Haha I have been programming with CSS for 7 years and I didn’t know this! I was adjusting default bootstrap checkbox colours and I accidentally typed an additional colour without clearing and...
by Garth | Jul 25, 2023 | Hosting
(VMware vSphere, Microsoft Hyper-V, Proxmox Virtual Environment (Proxmox VE), Oracle VirtualBox, Docker, Kubernetes, FreeNAS, OpenMediaVault, VMware Workstation/Fusion, Microsoft Azure, Amazon EC2, Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform...
by Garth | Jul 18, 2023 | Laravel Blog Posts
public function import_data(Request $request) { $success = true; try { DB::beginTransaction(); foreach ($request->array_or_object as $item) { $record_payload = [ “name” => $item->name, “surname” => $item->surname, ]; $record_id = $item->id ??...
by Garth | May 15, 2023 | Laravel Blog Posts
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for mysql failed: Temporary failure in name resolution (SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations and table_type = ‘BASE TABLE’) The...