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
| flatpak --user override --filesystem=/home/$USER/.icons/:ro | |
| flatpak --user override --filesystem=/usr/share/icons/:ro |
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
| function FindProxyForURL (url, host) { | |
| if (dnsDomainIs(host, '.wip')) { | |
| return 'PROXY localhost:7080'; | |
| } | |
| return 'DIRECT'; | |
| } |
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
| const orderBy = (order, array) => Math[order](...array.map(i => i.number)) | |
| const getAvg = (array) => array.reduce((previous,next) => previous + next.number, 0) / array.length | |
| let values = [ | |
| { name: "Benjamin", number: 1 }, | |
| { name: "Someone Else", number: 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
| <template> | |
| <div> | |
| <div class="container"> | |
| <div class="row my-5"> | |
| <div class="col-md-4 offset-md-4"> | |
| <div class="alert alert-success"> | |
| Dodano! | |
| </div> | |
| <div class="alert alert-danger"> | |
| Dodano! |