├── LICENSE ├── README.md ├── dirs.txt ├── gun01 ├── basit-bash │ └── .gitkeep ├── dosya-sistemleri │ └── .gitkeep ├── hello-world │ └── .gitkeep ├── izinler │ └── .gitkeep └── linux-genel │ └── .gitkeep ├── gun02 ├── basit-git-komutlari │ └── .gitkeep ├── basit-vim-komutlari │ └── .gitkeep ├── sanallastirma-notlari │ └── .gitkeep └── vagrant-docker │ └── .gitkeep ├── gun03 ├── apache-spark │ └── .gitkeep ├── ornek-proje │ └── .gitkeep ├── programlama-ortak-bolumler │ └── .gitkeep ├── python-veri-bilimi │ └── .gitkeep └── python │ └── .gitkeep └── gun04 ├── erlang └── .gitkeep └── gnu-c └── .gitkeep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaops/linux103/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaops/linux103/HEAD/README.md -------------------------------------------------------------------------------- /dirs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zetaops/linux103/HEAD/dirs.txt -------------------------------------------------------------------------------- /gun01/basit-bash/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun01/dosya-sistemleri/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun01/hello-world/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun01/izinler/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun01/linux-genel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun02/basit-git-komutlari/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun02/basit-vim-komutlari/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun02/sanallastirma-notlari/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun02/vagrant-docker/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun03/apache-spark/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun03/ornek-proje/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun03/programlama-ortak-bolumler/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun03/python-veri-bilimi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun03/python/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun04/erlang/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gun04/gnu-c/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------