I encounter wifi disonnection problem on a Dell XPS 13 9360. Here is the solution I used to fix this bad behavior.
lspci | grep -i net
3a:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 32)
| // Alert Contact Type: Web-Hooks | |
| // URL to Notify: https://discordapp.com/api/webhooks/{WEB_HOOK_ID}/{TOKEN}? | |
| // POST Value (JSON Format): | |
| { | |
| "content": "Monitor is *alertTypeFriendlyName*: *monitorFriendlyName* ( *monitorURL* )\n```*alertDetails*```" | |
| } |
| # Example scrape config for pods | |
| # | |
| # The relabeling allows the actual pod scrape endpoint to be configured via the | |
| # following annotations: | |
| # | |
| # * `prometheus.io/scrape`: Only scrape pods that have a value of `true` | |
| # * `prometheus.io/path`: If the metrics path is not `/metrics` override this. This | |
| # will be the same for every container in the pod that is scraped. | |
| # * this will scrape every container in a pod with `prometheus.io/scrape` set to true and the | |
| port is name `metrics` in the container |
| KEYBINDINGS | |
| byobu keybindings can be user defined in /usr/share/byobu/keybindings/ (or within .screenrc if byobu-export was used). The common key bindings | |
| are: | |
| F2 - Create a new window | |
| F3 - Move to previous window | |
| F4 - Move to next window |
| @mixin retina($ratio: 1.5) { | |
| $dpi: $ratio * 96; | |
| $opera-ratio: $ratio * 100; | |
| @media only screen and (-webkit-min-device-pixel-ratio: #{$ratio}), | |
| only screen and ( -o-min-device-pixel-ratio: '#{$opera-ratio}/100'), | |
| only screen and ( min-resolution: #{$dpi}dpi), | |
| only screen and ( min-resolution: #{$ratio}dppx) { | |
| @content; | |
| } |
| class Performer | |
| def method_missing(name, *args) | |
| "The duck will #{name}: #{args[0]}" | |
| end | |
| end | |
| duck = Performer.new | |
| duck.sing("Quacking in the Rain") # => "The duck will sing: Quacking in the Rain" | |
| duck.dance("Swan Lake") # => "The duck will dance: Swan Lake" |
| # Directly copied from eycap-0.5.2 (thanks!) | |
| # | |
| # With these tasks you can: | |
| # - dump your production database and save it in shared_path/db_backups | |
| # - dump your production into your local database (clone_to_local) | |
| # | |
| # Tested and fixed by fjguzman | |
| Capistrano::Configuration.instance(:must_exist).load do | |
| namespace :db do |