Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact
Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact

Posts tagged with "web-development"

My Blog Page Speed

My Blog Page Speed

11 January 20242 min readReflections

I changed the design of my blog page and updated its coding. Here is the speed of my blog site according to Google. The first thing I prioritize for a website is speed. I can even make changes to the programming languages ​​I use for this. By the way, of course I chose Next JS for my website. It's a super technology.

#Page Speed#Blog Design#Next.js+3 more
What is a Promise in JavaScript?

What is a Promise in JavaScript?

14 April 20234 min readWeb Programming

Promise is easier to write and implement than callbacks. A promise is simply an object that represents the completion or failure of a process. It's usually something that takes time. When we use a library like Axios we return a promise and when we request data from api this process may take time and this value may never come back...

#JavaScript#Promises#Asynchronous Programming+3 more
Scop Concept in Javascript

Scop Concept in Javascript

09 April 20234 min readWeb Programming

The concept of scope is quite easy and very important topic in javascript. So let's delve deeper into this issue. Scope is the ability of our other code pieces to access this value or not, depending on where the variable defined is located. In other words, we can access variables, objects, functions according to their scope...

#JavaScript#Scope#Variable Scoping+3 more
What is a Callback Function in JavaScript

What is a Callback Function in JavaScript

31 March 20232 min readWeb Programming

Callbacks are functions passed to other functions to be called inside the outer function. it is any function called by another function using a parameter. when we pass a function to another function and it is executed in that function, we can call it a callback.

#JavaScript#Callback Function#Programming Concepts+3 more
404 errors in ASP.NET Core Mvc

404 errors in ASP.NET Core Mvc

02 September 20221 min readWeb Programming

When a web page is not found, a 404 error is returned by the application and ASP.NET Core MVC provides a generic error page 404 errors normally look bad. We can redirect the error to the 404 page we created. Let's go to the startup.cs page of our project. Remove the code below

#404 Error#ASP.NET Core#.NET+3 more
Making Php Cache

Making Php Cache

20 April 20222 min readWeb Programming

Websites made without cache can cause speed problems. An event called cache is the caching process. This is very suitable for speeding up your php pages. We can make our php pages that need to be faster with easy and efficient codes I only serve two php pages. The first is t-cache.php and the other is b-cache.php you can give...

#PHP#Caching#Performance Optimization+3 more
Previous12Next