Ana Sayfa / Eren

Eren

Merhabalar, Ben Eren Karadaş 1991 Gaziosmanpaşa/İstanbul Doğumluyum. Gürpınar İMKB Mesleki ve Teknik Anadolu Lisesi Veri Tabanı Programcılığını bitirdikten sonra Kahramanmaraş Sütcü İmam Üniversitesi Bilgisayar Programcılığı bölümünü tamamladım. Bitirme projesi olarak Yenimedya Elektronik Yayıncılık şirketinde 1 ay Bilgi İşlem bölümünde stajerlik yaptım. Mezun olduktan sonra aynı şirkette 2 yıl Bilgi İşlem sorumlusu olarak çalıştım. Şirket içerisinde ve farklı kurumlarda eğitim alarak 2 yıl sonunda Sistem bölümüne geçtim. 3 yıllık çalışmanın ardından. 1 Nisan 2016’da Haber Metre Haber Analiz şirketinde Sistem Uzmanı olarak başladım ve halen bu şirkette devam etmekteyim. Kendime ait birçok projem bulunmakta aynı zamanda danışmanlık vermekteyim. Pojelerim; www.devproje.com www.ilkisgunu.com www.sistemciler.com www.kuponyap.com www.adanademir.com www.dogukanozkan.com www.korkmazlift.com www.vtp.com.tr

PHP Types

Type Comparison There are two types of comparison: loose comparison with == and strict comparison with===. Strict comparison ensures both the type and value of both sides of the operator …

Devamını Oku..

PHP Comments

Single Line Comments The single line comment begins with “//” or “#”. When encountered, all text to the right will be ignored by the PHP interpreter. // This is a …

Devamını Oku..

PHP Constants

Defining constants Constants are created using the const statement or the define function. The convention is to use UPPERCASE letters for constant names Define constant using explicit values const PI …

Devamını Oku..

PHP Variable Scope

Variable scope refers to the regions of code where a variable may be accessed. This is also referred to as visibility. InPHP scope blocks are defined by functions, classes, and …

Devamını Oku..

PHP Variables

Chapter 2: VariablesAccessing A Variable Dynamically By Name (Variable variables)Variables can be accessed via dynamic variable names. The name of a variable can be stored in another variable, allowing it …

Devamını Oku..

PHP Getting started with PHP

PHP 7.xVersion Supported Until Release Date7.1 2019-12-01 2016-12-017.0 2018-12-03 2015-12-03PHP 5.xVersion Supported Until Release Date5.6 2018-12-31 2014-08-285.5 2016-07-21 2013-06-205.4 2015-09-03 2012-03-015.3 2014-08-14 2009-06-305.2 2011-01-06 2006-11-025.1 2006-08-24 2005-11-245.0 2005-09-05 2004-07-13PHP 4.xVersion …

Devamını Oku..

Python Operator Precedence

Python operators have a set order of precedence, which determines what operators are evaluated first in apotentially ambiguous expression. For instance, in the expression 3 * 2 + 7, first …

Devamını Oku..

Python Boolean Operators

‘and’ and ‘or’ are not guaranteed to return a boolean When you use or, it will either return the first value in the expression if it’s true, else it will …

Devamını Oku..