| Setting | Value |
|---|---|
| RTC Server Address | 0.0.0.0 or [::] |
| RTC Server Port | Leave blank for 8443 default, or change to another available port |
| ICE Host Override | Your chat server's host name, e.g. mm.organisation.example, unless that may not resolve to your public IP address when queried locally on that server. The latter can occur if you have an entry in your hosts file that resolves to a loopback address, or split-horizon DNS, in which case you need to enter the IP address or a different (sub)domain that always resolves to it, e.g. calls-mm.organisation.example. |
| ICE Servers Configurations | Leave blank |
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
| /* | |
| * See https://kb.mozillazine.org/Browser.tabs.closeButtons | |
| * 0 is new Firefox default, 3 not possible in CSS alone. | |
| */ | |
| @media -moz-pref('browser.tabs.closeButtons', 1) { | |
| #tabbrowser-tabs[closebuttons="activetab"][orient="horizontal"] .tab-close-button:not([selected], [pinned]) { | |
| display: inline-flex !important; | |
| } | |
| } | |
| @media -moz-pref('browser.tabs.closeButtons', 2) { |
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
| #!/bin/bash | |
| if maestral status | grep -qFi 'not running'; then | |
| err='Maestral not running' | |
| elif ! droot="`maestral config get path`"; then | |
| err='Maestral not found' | |
| elif ! real="`realpath -eLPq "$1"`"; then | |
| err='Path does not exist' | |
| elif [[ ${#real} -le ${#droot} || "${real:0:${#droot}}" != "$droot" ]]; then | |
| err="The path $real is not below the Dropbox root directory $droot" | |
| else |
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 | |
| /** | |
| * Import SQL files from a directory | |
| * | |
| * @author joshcangit, https://github.com/joshcangit | |
| * @author Roy-Orbison, https://github.com/Roy-Orbison | |
| */ | |
| class AdminerImportFromDir { |
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
| window.location.href = (function() { | |
| var browser = (function() { | |
| var ua = navigator.userAgent, | |
| tem, | |
| M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || []; | |
| if (/trident/i.test(M[1])) { | |
| tem = /\brv[ :]+(\d+)/g.exec(ua) || []; | |
| return { | |
| name: 'IE', | |
| version: (tem[1] || '') |
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
| <input type=search placeholder=search><br> | |
| <textarea placeholder="won't respond to / shortcut"></textarea> | |
| <script> | |
| document.addEventListener( | |
| 'keydown', | |
| (function() { | |
| let lastWasSlash = false, | |
| thisIsSlash, | |
| input = document.querySelector('input'); | |
| return evt => { |
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
| #!/bin/bash | |
| set -e | |
| #shopt -s compat32 | |
| # illegal on windows | |
| re_ctrl='[:cntrl:]' | |
| re_ctrl="^([^$re_ctrl]*)[$re_ctrl]+(.*)" | |
| re_punct='<>:"\\/|?*' | |
| re_punct="^([^$re_punct]*)[$re_punct]+(.*)" | |
| re_ts_td='[. ]+$' |
The easy way to enable installation of packages, adapted from [Mozilla's][1] [guides][3]. Files should be saved to:
/etc/apt/preferences.d/mozilla
/etc/apt/sources.list.d/mozilla.sources
The PGP key is [Mozilla's][2], which you can compare to the one embedded in the .sources file.
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
| #!/bin/sh | |
| ts=__ACME_BASE64__START_ | |
| te=__ACME_BASE64__END_ | |
| case $# in | |
| 0) | |
| # loop ensures no final newline is added to input | |
| printf '%s%s%s\n' "$ts" "$( | |
| q=false | |
| f='%s' |
OlderNewer