The easiest way is to ALT + F2 and then run this command: gnome-shell -r (--replace)
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: '2' | |
| services: | |
| unifi: | |
| image: linuxserver/unifi | |
| environment: | |
| PUID: '1012' | |
| GUID: '1012' | |
| stdin_open: true | |
| volumes: | |
| - /storage/data/unifi:/config:rw |
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
| aardvark | |
| aardwolf | |
| Aaronite | |
| abaction | |
| abaculus | |
| abaissed | |
| abampere | |
| Abarambo | |
| abasedly | |
| abatable |
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 | |
| class PageController extends \App\Http\Controllers\Controller | |
| { | |
| public function show() | |
| { | |
| $slug = request()->segment(1); | |
| $page = \TCG\Voyager\Models\Page::where('slug', $slug) | |
| ->firstOrFail(); | |
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
| <? | |
| ///////////////////// | |
| // slack2html | |
| // by @levelsio | |
| ///////////////////// | |
| // | |
| ///////////////////// | |
| // WHAT DOES THIS DO? | |
| ///////////////////// | |
| // |
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
| .table-list-triage { | |
| display: none; | |
| } | |
| .triage-mode .table-list-non-triage, .triage-mode .table-list-filters { | |
| display: none; | |
| } | |
| .boxed-group-list>li.approved .btn-sm, .boxed-group-list>li.rejected .btn-sm { | |
| display: none; | |
| } | |
| .repo-list .participation-graph.disabled { |
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
| apt-get update | |
| apt-get install build-essential | |
| apt-get install python | |
| apt-get install git | |
| apt-get install curl | |
| #wget --no-check-certificate --output-document=Python.tgz https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz | |
| #tar xfz Python.tgz | |
| #cd Python-3.4.3 |
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
| // ================== | |
| // Misc | |
| // ================== | |
| $infinity: 9999; | |
| @mixin clearfix() { | |
| &:before, | |
| &:after { | |
| content: ""; |
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 | |
| $payload = array( | |
| 'key' => 'YOUR-API-KEY', | |
| 'url' => 'https://www.youtube.com/' | |
| 'height' => 800, // Optional | |
| 'width' => 500 // Optional | |
| ); | |
| $payload = json_encode($payload); |
Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element or the /deep/ path selector.
video::webkit-media-controls-timeline {
background-color: lime;
}
video /deep/ input[type=range] {