This file contains 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
<mengus> ba$layalim madem | |
<mengus> Veritabani neye denir oncelikle? | |
<mengus> bir veritabani, birbiriyle ilintili verileri | |
<mengus> saklamaya, ve daha sonra bu verilere eri$meye yarayan | |
<mengus> bir sistemdir | |
<mengus> en basit veritabani ornegi olarak | |
<mengus> (dunyadaki tum veritabani tutoriallarindaki bir ornek olarak) | |
<mengus> telefon rehberlerini ele alabiliriz | |
<mengus> bir telefon rehberinde neler vardir? | |
<mengus> isimler ve telefonlar |
This file contains 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
<mengus> tamam | |
<mengus> o zaman ba$liyoruz | |
<mengus> dersi aib ile birlikte anlatacagiz parca parca | |
<mengus> i$leyecegimiz konular $oyle: | |
<mengus> - "Program" neye denir, nasil cali$ir. | |
<mengus> - kod nedir, data nedir, nasil i$lenir | |
<mengus> - degi$ken nedir, nasil kullanilir | |
<mengus> - ozel kelimeler (reserved keywords) | |
<mengus> - statement nedir, nasil kullanilir | |
<mengus> - fonksiyon nedir, yenir mi |
This file contains 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
#!/usr/bin/env python3 | |
import os | |
import zipfile | |
FOLDERS_TO_EXCLUDE = ['Applications', 'Downloads', 'Movies', 'Music', 'Public', 'node_modules'] | |
def zipdir(path, ziph): | |
for root, dirs, files in os.walk(path): | |
dirs[:] = [x for x in dirs if ( | |
x not in FOLDERS_TO_EXCLUDE) and (not x.startswith('.'))] |
OlderNewer