Car Parking Game with Gemini Flash 2.5https://www.youtube.com/watch?v=Z7NUUTTT-VU Repo: https://github.com/canerdemirci/car-parking-game-with-ai/tree/main The Car Parking Game is a browser-based, interactive experience built with HTML, CSS, and JavaScript. The objective is to navigate ...Aug 19, 2025·12 min read
Next.js 14 Admin Panel Security: Using JWT and PIN Code Authentication with App RouterNov 7, 2024·7 min read
False Checks Table for JavaScript: Are You Doing It Right?I want to make sure my variable is not an empty string, null, undefined, NaN, zero, or false, but I don't want to check it like this: if (var !== null || var !== undefined || var !== '') I have written a test in TypeScript. Here is the output table....Sep 6, 2024·3 min read
Customizable React Zoom Controllerhttps://youtu.be/-mFJsgbZt4Q?si=MteHR_tZgm5mWO2O https://github.com/canerdemirci/react-zoom-controller/ https://www.npmjs.com/package/react-zoom-controller I have written a zoom controller in React and published on npm. I wanted this component to b...Sep 2, 2024·5 min read
How to Create a Currency Form Field in FlutterI was working on a simple app for practice and wanted my text fields to accept only digits and format them in Turkish currency like this "1.234,5678". To achieve this, I created a widget derived from the TextFormField widget and used its inputFormatt...May 23, 2024·5 min read
Flutter Wordle ReplicaApk file https://drive.google.com/file/d/1YkVqUanmtEAz2e5_OQYauloGWin-RyKV/view?usp=sharing Let's get started! https://youtu.be/bJhwCmptzi0 main.dart import 'package:flutter/material.dart'; import 'pages/home/home.dart'; void main() { runApp(c...Mar 23, 2022·4 min read