This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git Fundamentals(Giriş) EĞİTİMİ | |
= | |
Git Eğtimi Konuları Aşağıdadır | |
Konular | |
- | |
I.Hafta | |
* git Tanıtımı | |
: > Neden Git kullanıyoruz , git sadece bir dosyalama sistemimidir yoksa dahası varmıdır,giti ftpden ayıran yönler nelerdir , sadece git mi var yoksa başka seçeneklerimiz varmıdır gibi sorualrın ve git mantığının anlatılması bu alanda yapılacaktır(tahmini 1 saat) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP Fundamentals(Giriş) EĞİTİMİ | |
= | |
Php Eğtimi Konuları Aşağıdadır | |
Konular | |
- | |
I.Hafta | |
* Php Yüklenmesi | |
: > xampp indirilmesi ve terminal üstünden kurulması |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function divInt(a,b) | |
{ | |
return parseInt(a/b); | |
} | |
function calctime() | |
{ | |
var goal = new Date("2014 5 3 10:00:00"); | |
var now = new Date(); | |
result = divInt(goal - now,1000); | |
sn = result % 60; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$degisken = 5; | |
$degisken = 'c'; | |
$degisken = "d"; | |
$degisken = "5"; | |
echo "$degisken<br/>"; | |
//echo $degisken . "<br/>"; | |
echo '$degisken<br/>'; | |
$veri= array("kemal",array("05...","05...")); | |
if($degisken == 5) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install python-software-properties | |
apt-add-repository ppa:chris-lea/node.js | |
apt-get update | |
apt-get install nodejs -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install gnome-tweak-tool -y | |
sudo sed -ri 's/DMZ-White/DMZ-Black/g' /usr/share/icons/default/index.theme |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -type f -name "*.php" | xargs grep "echo" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Başlığım</title> | |
<meta charset='utf8'> | |
</head> | |
<body> | |
<a href="#son">Son</a> | |
<h1 id="baslik">başlık1</h1> | |
<h2>başlık2</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- <html> | |
<head> | |
<meta charset="utf8"> | |
<title></title> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<ul> | |
<li><a href="#">link1</a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<meta charset="utf8"> | |
<head> | |
<title></title> | |
<style> | |
.container | |
{ | |
background: lightblue; | |
color:white; |
OlderNewer