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

Web Programming Posts

This Keyword in JavaScript

This Keyword in JavaScript

02 April 20234 min readWeb Programming

This keyword is the scariest part of JavaScript. Yes, this is one of the most confusing topics so why is this confusing? because its value can sometimes seem unpredictable. There are rules that determine the value of this structure, and once we learn these rules, the concept of this will not confuse us.

#JavaScript#this Keyword#Programming Concepts+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
CSS Grid

CSS Grid

02 January 20234 min readWeb Programming

We can create a website template very easily with Grid. We can design the whole website with basic css methods such as float, display position or flexbox, but the Grid system is much easier. And it makes our job a lot easier. While Flexbox can do our one-dimensional coding, in the grid model, we can code in both dimensions.

#CSS#Grid#Web Design+3 more
How to Use Flexbox in CSS

How to Use Flexbox in CSS

31 December 20227 min readWeb Programming

Why is Flexbox used? It allows us to design our website much more easily and effectively. With Flexbox, we can easily spread the width, height and order of the html elements to the field. Flexbox does this automatically for us without any overflow. Also, we can direct our items...

#CSS#Flexbox#Web Design+3 more
How to undo the last wrong commit on GitHub?

How to undo the last wrong commit on GitHub?

16 December 20221 min readWeb Programming

When we send what we need to send to Github, there is an easy way to get it back. sometimes i can send wrong commit. That's when I immediately delete the commits and post them again. We can undo as many commits...

#GitHub#Git#Undo Commit+3 more
Getting Requests From REST API With Fetch and Axios in React

Getting Requests From REST API With Fetch and Axios in React

11 December 20222 min readWeb Programming

Pulling data from the api with React is very important because we almost always use api requests in large projects. We can do this very easily with axios or fetch. I prefer axious which is easier to use. So what are we going to do here? We will make api request with...

#React#REST API#Axios+3 more
Previous1...456...8Next