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
| shell_command: | |
| rtlamr_start: 'python3.6 /home/pi/work/rtlamrmqtt.py' | |
| kill_rtlamr: 'pkill -f rtlamr' | |
| automation: | |
| - action: | |
| - data: {} | |
| service: shell_command.rtlamr_start | |
| alias: Start RTLAMR Script | |
| condition: [] |
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 | |
| # Backup a Plex database. | |
| # Author Scott Smereka | |
| # Version 1.0 | |
| # Script Tested on: | |
| # Ubuntu 12.04 on 2/2/2014 [ OK ] | |
| # Plex Database Location. The trailing slash is |
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
| #!/usr/bin/env ruby | |
| # status_board_ga.rb | |
| # Hilton Lipschitz | |
| # Twitter/ADN: @hiltmon | |
| # Web: http://www.hiltmon.com | |
| # Use and modify freely, attribution appreciated | |
| # | |
| # Script to generate @panic status board files for Google Analytics web stats. | |
| # |
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 | |
| /* | |
| Twitter JSON to Atom proxy for Twitter API 1.1 | |
| Original version by yimingliu ( https://gist.github.com/yimingliu/4735445 ) | |
| Display user_timeline instead of home_timeline | |
| */ | |
| date_default_timezone_set('America/Los_Angeles'); | |
| ini_set('display_errors', 0); |
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
| $ traceroute to 216.81.59.173 (216.81.59.173), 64 hops max, 52 byte packets | |
| 1 192.168.1.1 (192.168.1.1) 3536.082 ms 0.607 ms 0.621 ms | |
| 2 * * * | |
| 3 229.233.70.86.rev.sfr.net (86.70.233.229) 37.412 ms 37.140 ms 36.702 ms | |
| 4 201.239.103.84.rev.sfr.net (84.103.239.201) 36.620 ms 36.479 ms 36.396 ms | |
| 5 70.201.96.84.rev.sfr.net (84.96.201.70) 36.163 ms 37.062 ms 115.940 ms | |
| 6 10gigabitethernet1-1.core1.lon1.he.net (195.66.224.21) 54.160 ms 53.920 ms 53.912 ms | |
| 7 10gigabitethernet7-4.core1.nyc4.he.net (72.52.92.241) 120.625 ms 132.218 ms 120.766 ms | |
| 8 10gigabitethernet7-1.core1.ash1.he.net (184.105.213.93) 132.770 ms 132.786 ms 132.025 ms | |
| 9 10gigabitethernet1-2.core1.atl1.he.net (184.105.213.110) 147.666 ms 145.617 ms 138.051 ms |
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
| /* Reset */ | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| -o-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <cartridge_basiclti_link xmlns="http://www.imsglobal.org/xsd/imslticc_v1p0" | |
| xmlns:blti = "http://www.imsglobal.org/xsd/imsbasiclti_v1p0" | |
| xmlns:lticm ="http://www.imsglobal.org/xsd/imslticm_v1p0" | |
| xmlns:lticp ="http://www.imsglobal.org/xsd/imslticp_v1p0" | |
| xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation = "http://www.imsglobal.org/xsd/imslticc_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticc_v1p0.xsd | |
| http://www.imsglobal.org/xsd/imsbasiclti_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imsbasiclti_v1p0.xsd | |
| http://www.imsglobal.org/xsd/imslticm_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticm_v1p0.xsd | |
| http://www.imsglobal.org/xsd/imslticp_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticp_v1p0.xsd"> |
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
| // ==UserScript== | |
| // @name Panopto Wider Columns | |
| // @namespace http://replay.aston.ac.uk | |
| // @description Makes left column wider | |
| // @include http://replay.aston.ac.uk/Panopto/Pages/Sessions/* | |
| // ==/UserScript== | |
| GM_addStyle(".leftcolumn { width: 504px; !important; }"); | |
| GM_addStyle(".rightcolumn { margin-left: 504px; !important; }"); |