Skip to content

Instantly share code, notes, and snippets.

View abanoubha's full-sized avatar
🎯
taking teeny-tiny steps towards my goal

Abanoub Hanna abanoubha

🎯
taking teeny-tiny steps towards my goal
View GitHub Profile
@abanoubha
abanoubha / notes.md
Last active October 15, 2018 04:05
notes about my watched youtube videos :)
@abanoubha
abanoubha / BashShellScripting.md
Created October 16, 2018 22:45
Bash Shell Scripting Cheatsheet

Shell Scripting Crash Course - Cheatsheet for beginners

This is a bash shell scripting which can be found on Unix, Linux and Mac. You can install bash on the Linux subsystem on Windows too.

the first line is #! /bin/bash because the bash program is in /bin/bash, you can know the path where the bash is by this command which bash

print data or text on the screen

You can useecho Hello, World!or echo "Hello, world!"

@abanoubha
abanoubha / books.md
Created October 19, 2018 21:26
Books I Read

Here are all books I read and I am proud of them:

  1. The Idiot Brain
  2. The Self Illusion
  3. Rich Dad Poor Dad by Robert T. Kiyosaki
  4. The Power of Habit by Charles Duhigg
  5. E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About It
  6. The 10X Rule: The Only Difference Between Success and Failure by Grant Cardone
  7. A Criminal History of Mankind by Colin Wilson
  8. Triumph Over Shyness: Conquering Shyness and Social Anxiety by Murray B. Stein and John R. Walker
  9. Blindspot: Hidden Biases of Good People by Mahzarin R. Banaji and Anthony G. Greenwald
@abanoubha
abanoubha / _messages.blade.php
Created March 10, 2021 04:58 — forked from YavorK/_messages.blade.php
Laravel handle-all-flash-messages partial-view
@if ($errors->any())
<div class="alert alert-danger">
@foreach ($errors->all() as $error)
{!! $error !!}<br/>
@endforeach
</div>
@endif
@if (Session::get('flash_success'))
<div class="alert alert-success">
@if(is_array(Session::get('flash_success')))