Skip to content

Instantly share code, notes, and snippets.

View hamada-emam-tech's full-sized avatar
🎯
Focusing

Hamada Emam hamada-emam-tech

🎯
Focusing
View GitHub Profile
@hamada-emam-tech
hamada-emam-tech / index.md
Created April 4, 2023 22:51 — forked from meigwilym/index.md
Notes on stitcher.io's Laravel beyond CRUD

Laravel beyond CRUD

stitcher.io

A blog series for PHP developers working on larger-than-average Laravel projects

Written for projects with a development lifespan of six to twelve months, with a team of three to six developers working on them simultaneously.

Chapter 1: Domain oriented Laravel

@hamada-emam-tech
hamada-emam-tech / myscript.sh
Created January 13, 2023 23:37 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"