Blog
This is the blog section. It has two categories: News and Releases.
Files in these directories will be listed in reverse chronological order.
How to restart TouchBar on MacOS?
Saturday, June 22, 2024 in macOS & iOS
Categories:
less than a minute
The touchbar on Macbook Pro models provides very good ease of use. You may notice that some touch bars work differently than they should or are not responsive at all. We have prepared a recommendation to solve this problem. You should try these …
C++ if else statement
Saturday, June 22, 2024 in C++
Categories:
less than a minute
In this article, you can examine the use of C++ if else statement. #include <iostream> using namespace std; int main() { /* if else statement */ int a; cout << "Enter a positive integer number: "; cin >> a; if (a < 20) { …
How to view source code in Safari?
Thursday, June 20, 2024 in macOS & iOS
Categories:
less than a minute
Viewing the source code of a page lets web designers and developers achieve their preferred layout. It helps them debug websites quickly by just viewing the source of web pages. Advanced Mac users can benefit greatly from viewing the page sources on …
10 Essential Topics to Learn Android Programming
Thursday, April 11, 2024 in Android
Categories:
2 minute read
We asked the Gemini artificial intelligence application, which is available with Android Studio Jellyfish, about what steps need to be achieved to learn Android Programming. We wanted to share the answers we received with you in this article. Set Up …
How to force quit software on MacOS
Sunday, February 04, 2024 in macOS & iOS
Categories:
less than a minute
If a program freezes, crashes, or stops responding on your macOS operating system, you can follow the steps below. Force stop with key combination Press Option(Alt) + Command+ESC (Escape) on your keyboard or select “force quit” from the …
How to change targets with systemd on Linux
Wednesday, January 24, 2024 in Linux
Categories:
4 minute read
When you start the Linux operating system, the system that controls the startup processes that occur respectively is called “init system”. Some Linux distributions use SysV launcher, and some distributions use systemd. If you’re …
Variable naming rules in Kotlin
Tuesday, January 23, 2024 in Kotlin
Categories:
2 minute read
As you know, every variable must have a unique name. Although it may seem problem-free at first, as your software expands, your codes may become difficult to understand. Most of the software developers’ time is spent reading the code written by …
apropos command in Linux
Tuesday, January 23, 2024 in Linux
Categories:
5 minute read
You may sometimes have problems remembering ready-made commands on the Linux command line. You may not remember which command is related to what. In such a case, you can search the definitions on the command manual pages with the …
Comment Lines in Kotlin Programming
Sunday, January 21, 2024 in Kotlin
Categories:
3 minute read
A computer program consists of various pieces of code coming together and working in harmony. Each block of code does what is expected of it. As time goes on, the program developers who write these codes begin to forget and get confused about which …
Kotlin value assignment and type inference
Saturday, January 20, 2024 in Kotlin
Categories:
3 minute read
In this article, we will explain some of the finer points you need to know about defining variables in the Kotlin programming language. We have prepared this article in addition to the rules we explained in our previous two articles ("Kotlin …
Constants and variables in Kotlin
Wednesday, January 17, 2024 in Kotlin
Categories:
3 minute read
We introduced the topic of defining variables and assigning values in the Kotlin programming language in our previous article. In this article, we will take a closer look at assigning values with const and val. val variables The code below defines …
Kotlin Variable and Value definition
Wednesday, January 17, 2024 in Kotlin
Categories:
4 minute read
What is a variable? A variable is a record location in which a number, text or any other information is kept. Variables are almost the most important building blocks in programming. There are variables in which these values are kept in all the …
Defining a shortcut with the alias command in Linux
Tuesday, January 16, 2024 in Linux
Categories:
2 minute read
In the Linux command line, you can define abbreviations for commands that you use frequently and that are long to type. Thanks to the abbreviation you define, you shorten long commands and save time. In this article, the use of the alias command and …
Linux command initialization in background & parameter
Tuesday, January 16, 2024 in Linux
Categories:
2 minute read
When you enter a command while working on the Linux command line, you have to wait until that command is finished if you want to enter another command. To solve this, you can make new windows and new connections, but there is another solution. You …
Linux Commands List
Sunday, January 14, 2024 in Linux
Categories:
9 minute read
It is a list of Linux commands brought together as part of an effort to gather all commands together. Translation and development work continues. It has been prepared to include the list of commands collected from open sources on a single page. A …
Basic Literals in Kotlin
Thursday, January 11, 2024 in Kotlin
Categories:
2 minute read
No matter how complicated, all programming languages perform operations on integers, characters, strings, etc. performed on values. We call these values Literal expressions. It would be very appropriate to explain these types before starting to write …
7 Important Tips for Learning Programming
Tuesday, January 09, 2024 in Software Engineering
Categories:
4 minute read
Nowadays, technology and software have found a place in every aspect of life. Software is required for all of the developed technological devices and hardware to work. Software, that is, a computer program, consists of codes put together by a …
What is Kotlin Programming Language?
Sunday, January 07, 2024 in Android
Categories:
less than a minute
Kotlin is a modern programming language released by JetBrains in 2011. Kotlin 1.0, released on February 15, 2016, is considered the first stable version. Kotlin, which aims to provide solutions to some of the difficulties of the Java programming …
First Kotlin Program Hello World
Monday, January 01, 2024 in Kotlin
Categories:
2 minute read
When starting to learn programming languages, we always start with the same example. Let’s start our Kotlin programming article with the “Hello World” program without breaking tradition. You can copy the code you see below and paste …
Free Python Course from Harvard University
Sunday, June 18, 2023 in Software Engineering
Categories:
less than a minute
Harvard University has the “Harvard CS50” program, which includes programs within the scope of introductory computer science training. You can also take the “Introduction to Programming with Python” course, which is one of the …