Skip to content

Instantly share code, notes, and snippets.

View AhmedHelalAhmed's full-sized avatar
📱
Learning and developing

Ahmed Helal AhmedHelalAhmed

📱
Learning and developing
View GitHub Profile
@AhmedHelalAhmed
AhmedHelalAhmed / index.md
Created February 11, 2022 14:54 — 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

APP_NAME="log time status app"
APP_ENV=local
APP_KEY=base64:vwuZxLP3hiI4YbBHZ2pIKOrqdWfmcq3XNFdFqkM4lBs=
APP_DEBUG=true
APP_URL=http://testing.local
LOG_CHANNEL=stack
LOG_LEVEL=debug
DB_CONNECTION=mysql
@AhmedHelalAhmed
AhmedHelalAhmed / Mohamed Moshrif recommended references .txt
Created July 6, 2021 01:01
Mohamed Moshrif recommended references
@AhmedHelalAhmed
AhmedHelalAhmed / laravel open source projects.txt
Last active May 17, 2023 20:22
laravel open source projects
https://github.com/AhmedHelalAhmed/urlhub
https://github.com/AhmedHelalAhmed/academico
https://github.com/AhmedHelalAhmed/DaybydayCRM
https://github.com/AhmedHelalAhmed/laerx
https://github.com/AhmedHelalAhmed/larastreamers
https://github.com/AhmedHelalAhmed/freek.dev
https://github.com/AhmedHelalAhmed/crater
https://github.com/AhmedHelalAhmed/koel
https://github.com/AhmedHelalAhmed/akaunting
https://github.com/AhmedHelalAhmed/portal
@AhmedHelalAhmed
AhmedHelalAhmed / Multilingual notes.txt
Last active February 25, 2023 19:33
Multilingual notes
Multilingual notes
-- Don't start with Arabic design.
-- Don't use words direct in template.
-- padding and margin for parent better than child.
-- padding and margin left + right better than one direction.
-- Don't forget page Direction attribute. all block elements depend on it.
-- highlight what you will edit soon. /* Need Edit In RTl */
-- Make the Direction edits in the same time.
-- Don't ever forget comments and ordering of elements.
-- use inline-block instead of float if you don't need float.
@AhmedHelalAhmed
AhmedHelalAhmed / AutoConnectLinkedIn.js
Last active February 6, 2023 22:43 — forked from thealphadollar/AutoConnectLinkedIn.js
JS script to send connection requests to your LinkedIn search results with customisation options, accept all received connection requests, and withdraw pending sent connection requests.
// If the script does not work, you may need to allow same site scripting https://stackoverflow.com/a/50902950
Linkedin = {
config: {
scrollDelay: 3000,
actionDelay: 5000,
nextPageDelay: 5000,
// set to -1 for no limit
maxRequests: -1,
totalRequestsSent: 0,
@AhmedHelalAhmed
AhmedHelalAhmed / History|-3d136bec|entries.json
Last active December 16, 2022 09:58
vscode_settings for ubuntu
{"version":1,"resource":"file:///home/ahmedhelalahmed/Desktop/index.php","entries":[{"id":"x8iL.php","timestamp":1671182112798},{"id":"gUsH.php","timestamp":1671182137558},{"id":"Q2o7.php","timestamp":1671182164154},{"id":"WzCI.php","timestamp":1671182191002},{"id":"17da.php","timestamp":1671182230187},{"id":"6TpT.php","timestamp":1671182269811},{"id":"Wibh.php","timestamp":1671182302383},{"id":"udjU.php","timestamp":1671182420863},{"id":"TXnE.php","source":"undoRedo.source","timestamp":1671182430119},{"id":"j2tx.php","timestamp":1671182441560},{"id":"cA84.php","timestamp":1671182514412},{"id":"e7lg.php","timestamp":1671182593012},{"id":"nh9u.php","timestamp":1671182639588},{"id":"qYvu.php","timestamp":1671182746709},{"id":"2Sdl.php","timestamp":1671182807685},{"id":"Q46m.php","timestamp":1671182823337},{"id":"5mML.php","timestamp":1671182904481},{"id":"E1K1.php","timestamp":1671182922530},{"id":"Xdlp.php","timestamp":1671182966586},{"id":"qAfZ.php","timestamp":1671182988642},{"id":"7c8i.php","source":"undoRe
const https = require('https');
/*
* Complete the function below.
* Use console.log to print the result, you should not return from the function.
*/
function getMovieTitles(substr) {
if (substr === '')
return ''
@AhmedHelalAhmed
AhmedHelalAhmed / fix.bash
Last active September 13, 2022 19:15
strange-arabic-words.txt
#!/bin/bash
file="result.txt"
while read -r line; do
#echo -e "$line\n"
iconv -fwindows-1256 -tutf8 "$line" > "$line"'_fixed'
done <$file