├── 0x01-git ├── bash │ ├── 98 │ ├── alx │ └── school ├── c │ └── c_is_fun.c ├── .gitignore ├── up_to_date └── README.md ├── up_to_date └── README.md /0x01-git/bash/98: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x01-git/c/c_is_fun.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /up_to_date: -------------------------------------------------------------------------------- 1 | git pull 2 | -------------------------------------------------------------------------------- /0x01-git/.gitignore: -------------------------------------------------------------------------------- 1 | ~~ 2 | -------------------------------------------------------------------------------- /0x01-git/up_to_date: -------------------------------------------------------------------------------- 1 | git pull 2 | -------------------------------------------------------------------------------- /0x01-git/README.md: -------------------------------------------------------------------------------- 1 | Am a student of ALX 2 | -------------------------------------------------------------------------------- /0x01-git/bash/alx: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "ALX School" 3 | -------------------------------------------------------------------------------- /0x01-git/bash/school: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "The school is open!" 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MATERIALS FOR ALX BEGINNERS 2 | 3 | ### ___EMACS GUIDE___ 4 | ![Emacs](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT71Jprd_zomZAmZrqoJU32QaIK34NCzPwblA&usqp=CAU) 5 | - [GNU Emacs](https://www.gnu.org/software/emacs/tour/) 6 | - [Emacs Video Tutorial](https://www.youtube.com/watch?v=jPkIaqSh3cA) 7 | - [Emacs From Scratch #1 - Getting Started with a Basic Usable Configuration](https://www.youtube.com/watch?v=74zOY-vgkyw) 8 | 9 | 10 | 11 | 12 | ### ___VIM GUIDE___ 13 | ![Vim](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQls24qGIM1Sb2SpZm1hU6MK6hqobnenQlVf-f0yjFQfmzeXMjdeT-StuJBcVg5UkWdZWc&usqp=CAU) 14 | 15 | - [Vim Editor Fundamentals](https://www.youtube.com/watch?v=XguBRi4TDNc) 16 | - [Basic vi Commands](https://www.cs.colostate.edu/helpdocs/vi.html) 17 | --------------------------------------------------------------------------------