SemiColon Academy
Medhat Dawoud
Shreef
DahabDev - Ahmed Abu Eldahab
Elzero Web School
Contlization
GDG Cairo
Ahmed Samir El Khadrawy
CAT Reloaded
Ali Shahin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="relative cursor-pointer"> | |
<div class="h-24 w-24 rounded-full z-30 absolute bg-opacity-50 transition duration-1000 hover:bg-green-700"></div> | |
<img src="https://picsum.photos/200" class="rounded-full h-24 w-24" alt="image"/> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://startbootstrap.com | |
https://templatemo.com | |
https://www.free-css.com | |
https://nicepage.com/css-templates | |
https://templated.co | |
https://designseer.com/free-photoshop-psd-website-templates | |
https://colorlib.com | |
https://www.behance.net | |
https://github.com/toidicode/template | |
https://github.toidicode.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.hackerrank.com/challenges/japanese-cities-attributes/submissions | |
select * from city where countrycode="jpn"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# uncomment and fix with appropriate values if you are behind a proxy | |
#export https_proxy='http://localhost:3128' | |
sl=en | |
tl=$(basename $0) | |
if [[ "${tl}" != "es" ]]; then | |
sl=es | |
fi | |
base_url="https://translate.googleapis.com/translate_a/single?client=gtx&sl=${sl}&tl=${tl}&dt=t&q=" | |
ua='Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import requests | |
url = "http://127.0.0.1:8000/api/test" | |
payload={} | |
headers = { | |
'Accept': 'application/json', | |
'Authorization': 'Bearer xxxxx' #add your API token |
https://denic.hashnode.dev/github-repositories-to-learn-programming
https://betterprogramming.pub/10-extraordinary-github-repos-for-all-developers-939cdeb28ad0
https://dev.to/aumayeung/top-repos-to-boost-your-javascript-knowledge-2c29
https://levelup.gitconnected.com/10-github-repos-that-can-be-used-for-self-improvement-7a926bd62ba5
https://www.geeksforgeeks.org/top-10-useful-github-repos-that-every-developer-should-follow/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch | grep -v "release" | grep -v "master" | xargs git branch -D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Providers; | |
use DB; | |
use Illuminate\Support\Str; | |
use Illuminate\Support\Facades\Log; | |
use Illuminate\Support\ServiceProvider; | |
class AppServiceProvider extends ServiceProvider |