- Sidekiq OSS 7.3.10
- 36 jobs across 5 queues (critical, default, low, mailer, maintenance)
- sidekiq-unique-jobs (8.0.13) — 23 jobs use
lock: :until_executed - sidekiq-failures (1.1.0) — failure monitoring
- Production concurrency: 20 threads
- Custom middleware: error logging + Elasticsearch context tagging
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
| # frozen_string_literal: true | |
| module GhlFieldConstants | |
| FIELDS = [ | |
| { | |
| 'name' => 'Phone Type', | |
| 'dataType' => 'TEXT', | |
| 'model' => 'contact', | |
| 'fieldKey' => 'phone_type', | |
| 'map_object' => 'contact', |
- Firewall & Security (side menu) - turn off Ad blocking. This is very important. If you don't do this you will get recursive DNS calls from the UDM router to your pi-hole
- Internet (side menu) - click primary/default WAN interface. Set "Advanced" to Manual and configure primary DNS server with the static IP of your pi-hole
- Networks (side menu) - for each network, drill down to DHCP settings under "Advanced". For DHCP Service Management click "Show Options". Turn off "Auto" for DHCP DNS Server and enter the IP of your Pi-hole. Do these steps for each network.
- Configure according to your needs. The documentation is good
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
| alias sudo='sudo ' |
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
| # Desktop files are located in ~/.local/share/applications | |
| # Icons must be located in ~/.icons - and only use the base filename | |
| # Command-line arguments can be used like this: | |
| # Exec=sh -c "gourmet --gourmet-directory $HOME/my/custom/path/ %F" | |
| [Desktop Entry] | |
| Name=Lepton | |
| GenericName=Gist Editor | |
| Comment=Lepton Gist GUI | |
| Exec=sh -c "$HOME/AppImage/Lepton-1.10.0.AppImage --in-process-gpu" |
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
| sudo systemctl enable wg-quick@[WG_CONFIG_NAME].service | |
| sudo systemctl daemon-reload | |
| sudo systemctl start wg-quick@[WG_CONFIG_NAME] | |
| systemctl status wg-quick@[WG_CONFIG_NAME] | |
| # To Remove | |
| sudo systemctl stop wg-quick@[WG_CONFIG_NAME] | |
| sudo systemctl disable wg-quick@[WG_CONFIG_NAME].service | |
| sudo rm -i /etc/systemd/system/wg-quick@[WG_CONFIG_NAME] | |
| sudo systemctl daemon-reload |
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
| resolvectl status | |
| # OR | |
| systemd-resolve --status |
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
| // Paste this into the console | |
| if (typeof jQuery != 'undefined') { | |
| // jQuery is loaded => print the version | |
| alert(jQuery.fn.jquery); | |
| } |
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
| fastboot flash product product.img | |
| fastboot flash abl abl.img | |
| fastboot flash aop aop.img | |
| fastboot flash bluetooth bluetooth.img | |
| fastboot flash boot boot.img | |
| fastboot flash cmnlib cmnlib.img | |
| fastboot flash cmnlib64 cmnlib64.img | |
| fastboot flash devcfg devcfg.img | |
| fastboot flash dsp dsp.img | |
| fastboot flash dtbo dtbo.img |
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
| # Remove all the packages with residual configuration. | |
| # http://stuzhao.blogspot.com/2012/07/removing-all-residual-config-packages.html | |
| sudo apt-get remove --purge `dpkg -l | grep '^rc' | awk '{print $2}'` |
NewerOlder