let me = {
code: ["php", "js", "Rust", "Go"],
technologies: {
frontEnd: {
js: ["React", "Next.js", "Vue.js", "JQuery"],
css: ["Bootstrap", "Styled Components", "Tailwind CSS", "MaterialUI"]
},
backEnd: {
php: ["Laravel", "Symfony"],
This file contains hidden or 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
# Dev aliases | |
alias free="free -m" | |
alias dup='(docker-compose up -d && docker-compose logs -ft)' | |
# I recomment putting this in /etc/cron.daily/ | |
alias docker-prune='docker rmi $(docker images | grep "^<none>" | awk "{print $3}")' | |
# Git | |
alias gd='git diff' | |
alias ga='git add' | |
alias gco='git checkout --ours' |
This file contains hidden or 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 Illuminate\Support\ServiceProvider; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Support\Facades\URL; | |
use Illuminate\Http\Client\RequestException; | |
use Illuminate\Support\Facades\App; | |
use Monicah\Cloudflare\LaravelCloudflare; |
This file contains hidden or 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 | |
declare(strict_types=1); | |
namespace App\DTOs\AudienceGrid; | |
use Carbon\CarbonImmutable; | |
use Illuminate\Contracts\Support\Arrayable; | |
/** |
General unix shell scripts for
autoisntall.yaml
file to automatically install required packages on Ubuntu- The LTS version has been tested and it working
- the nightly version hasn't been tested and it being continuously modified.
- Additional Unix shell scripts to install other packages and extra settings.
This file contains hidden or 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
deb http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse | |
# deb-src http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse | |
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse | |
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse |
This file contains hidden or 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
version: "3.7" | |
# Networks | |
networks: | |
# Internal network | |
internal: | |
driver: bridge | |
services: | |
# api |
NewerOlder