My Personal Recommendations for Software Developers
1- Be good person2- When You join a new developer team,Some people can give you missing data, info, file(.env ..) etc..at your first installations. Don’t care.3- Before You write code, make some research.But don’t consume so much time. Because You
Most Used Shortcuts at Eclipse
You will find most used and usefull Eclipse IDE Shortcuts below. Ctrl + Shift + X : Convert to Upper Case Ctrl + Shift + Y : Convert to Lower Case “sysout”, then Ctrl + Space : System.out.println() “main”, then
Quick Overview of AWS, AZURE and Google Cloud Services
In this post, I will show most popular cloud platfoms and their popular services on table. AWS, AZURE and Google Cloud have an overwhelming market share. Good Luck…
Writing Unit Test at PHP Laravel
It is important for us to write unit test if we want the codes we developed in a software project to deploy production with the least bugs. Especially if we are going to work in corporate and enterprise companies, we
Developing Currency Converter Chrome Extension
In this post, I will explain the extension that I developed for the Chrome Internet Browser to convert the exchange rate to Turkish Lira. The extension that converts the dollar value selected on the visited website to TL with the
Currying at Javascript
Currying is an important technique in functional programming. It is asked as an interview question in many interviews. Currying technique is the process of transforming a function so that it is called with a single parameter like f(a)(b)(c) each time,
Dynamic Autocomplete Search With typeahead.js
When we design search input field, It is important to show hints or a list of possible choices based on the text that user enter to improve user experices. In this post, I will show you how to implement this
Save Screenshot of the Entire Web Page in Chrome Browser Without Extension
I will explain how to take a screenshot in the chrome web browser, including the parts of the web pages that overflow from the screen. After clicking the right mouse button on the web page where you will take screenshot,
How to Create User Account and Connect Ubuntu Linux Server using Username and Password with SSH
In this post, I will explain how to create a new user on a Linux machine and connect to this machine remotely with user information and password. The Linux server machine used in this post has Ubuntu 20.04 version installed.
includes() Method in Javascript
In Javascript, There is includes() powerful method which is separately used in array and string expressions. includes() Method at string expressions: Usage: str.includes(searchvalue, start) includes() method returns true if string expression has specified value. includes() method is case sensitive. includes() Method