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
| <!DOCTYPE html> | |
| <html lang="pt-BR"> | |
| <head> | |
| <meta chatset="UTF-8" /> | |
| <title>CSS Progress Bar</title> | |
| <style> | |
| .wrapper { | |
| width: 500px; | |
| } |
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
| port: 1818 | |
| commands: | |
| # Join Push Text : Command to run | |
| "eg=:=shutdown": "systemctl poweroff" | |
| #fallback-cmd: "./fallbacktest.sh" |
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 DOCUMENT_EVENTS = [ | |
| 'mousemove', 'mousedown', 'click', | |
| 'touchmove', 'touchstart', 'touchend', | |
| 'keydown', 'keypress' | |
| ]; | |
| export class IdleTimer { | |
| constructor(onIdleTimeout, timeout) { | |
| this.onIdleTimeout = onIdleTimeout; | |
| this.timeout = timeout; |
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 -x | |
| # Requered tools: cuetools, shntool, id3v2, vorbis-tools, lame | |
| # | |
| LAMEOPTS="-b 320 --quiet" | |
| OGGOPTS="-b 320 --quiet" | |
| usage () { | |
| echo Usage: "$(basename $0)" "-f /path/to.flac -s /path/to.cue -e mp3|ogg" |
OlderNewer