Skip to content

Instantly share code, notes, and snippets.

View bobbyaxe74's full-sized avatar
💭
Available

Bobby Axe bobbyaxe74

💭
Available
View GitHub Profile
@jeffochoa
jeffochoa / Response.php
Last active May 22, 2024 04:06
Laravel HTTP status code
<?php
// This can be found in the Symfony\Component\HttpFoundation\Response class
const HTTP_CONTINUE = 100;
const HTTP_SWITCHING_PROTOCOLS = 101;
const HTTP_PROCESSING = 102; // RFC2518
const HTTP_OK = 200;
const HTTP_CREATED = 201;
const HTTP_ACCEPTED = 202;
@filipemeneses
filipemeneses / countries.json
Last active July 29, 2024 07:00
List of countries with flag, iso and unicode
[
{
"iso": "AD",
"name": "Andorra",
"unicode": "U+1F1E6 U+1F1E9",
"flag": "🇦🇩"
},
{
"iso": "AE",
"name": "United Arab Emirates",
@bradtraversy
bradtraversy / docker-help.md
Last active July 30, 2024 20:02
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@gjerokrsteski
gjerokrsteski / remove env file from git forever
Last active July 11, 2024 08:40
remove env file from git history forever
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master