- https://github.com/AhmadWaleed/laravel-blanket
- https://github.com/ahmedesa/laravel-api-tool-kit # standard way of having api and more
- https://github.com/JustIversen/laravel-job-chainer
- https://github.com/Laravel-Backpack/CRUD
- https://github.com/Laravel-Lang/lang
- https://github.com/Maatwebsite/Laravel-Excel
- https://github.com/Pod-Point/laravel-mail-export
- https://github.com/Propaganistas/Laravel-Phone
- https://github.com/area17/twill
- https://github.com/barryvdh/laravel-debugbar
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
/** | |
* Default Body Class Styles | |
*/ | |
.rtl {} | |
.home {} | |
.blog {} | |
.archive {} | |
.date {} | |
.search {} |
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 | |
# setup_unattended_upgrades.sh | |
# This script configures Debian's Unattended Upgrades to: | |
# 1. Automatically update all packages. | |
# 2. Automatically restart services after upgrades. | |
# 3. Automatically respond "no" to configuration file replacement prompts. | |
# 4. Limit system reboots to once every two weeks if strictly required. | |
set -e # Exit immediately if a command exits with a non-zero status. |
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
// unattended_upgrades_setup.go | |
package main | |
import ( | |
"bufio" | |
"bytes" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"log" |
Using only kubeadm and helm from Fedora's repository Instructions are for Fedora 37+ only, using distribution's repository for installing Kubernetes.
Note: avoid kubernetes and kubernetes-master as there are deprecated and setup is more complex.
Note: I have not yet tinkered using ipv6, but it is in my plans to do it.
The result should be a decent Kubernetes cluster, with Cloud Control Manager installed and controlling layer 2 private networking allowing pods to talk at fastest speed possible. Will default to Hetzner's cloud volumes.
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
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/language string en | |
d-i debian-installer/country string ES | |
d-i keyboard-configuration/xkb-keymap select us | |
d-i netcfg/choose_interface select auto | |
d-i hw-detect/load_firmware boolean true | |
d-i mirror/protocol string http |
If you can connect using psql, then you can use this command:
postgres=# SHOW data_directory;
data_directory
-----------------------
/opt/postgres/data/
| directory | description |
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
BEGIN TRANSACTION; | |
ALTER SCHEMA public RENAME TO public_original; | |
ALTER SCHEMA my_db RENAME TO public; | |
DROP SCHEMA public_original CASCADE; | |
COMMIT; |
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
package main | |
import ( | |
"fmt" | |
"net/http" | |
) | |
func helloWorld(w http.ResponseWriter, r *http.Request) { | |
// this is what you want | |
if r.URL.Path != "/" { |
NewerOlder