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
| This will be used to store a logo |
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
| gmail.com |
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
| blueprint: | |
| name: Cast to Google Hub | |
| description: Cast a lovelace view to a Google Hub. This tries to bypass the 10 min | |
| timeout for the picture frame by re-casting every 9 min | |
| domain: automation | |
| input: | |
| player: | |
| name: Google Hub | |
| description: Google Hub or Chromecast device to cast to | |
| selector: |
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
| hello world |
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
| # Name Version Build Channel | |
| _libgcc_mutex 0.1 main | |
| backcall 0.2.0 py_0 | |
| blas 1.0 mkl | |
| ca-certificates 2020.7.22 0 | |
| certifi 2020.6.20 py37_0 | |
| cudatoolkit 10.1.243 h6bb024c_0 | |
| decorator 4.4.2 py_0 | |
| freetype 2.10.2 h5ab3b9f_0 | |
| intel-openmp 2020.2 254 |
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
| # Name Version Build Channel | |
| _libgcc_mutex 0.1 main | |
| backcall 0.2.0 py_0 | |
| blas 1.0 mkl | |
| ca-certificates 2020.7.22 0 | |
| certifi 2020.6.20 py37_0 | |
| cudatoolkit 10.1.243 h6bb024c_0 | |
| decorator 4.4.2 py_0 | |
| freetype 2.10.2 h5ab3b9f_0 | |
| intel-openmp 2020.2 254 |
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
| model = dict( | |
| type='CascadeRCNN', | |
| pretrained='open-mmlab://msra/hrnetv2_w32', | |
| backbone=dict( | |
| type='HRNet', | |
| extra=dict( | |
| stage1=dict( | |
| num_modules=1, | |
| num_branches=1, | |
| block='BOTTLENECK', |
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.scrollTo(0, 0) | |
| var bodyRect = document.body.getBoundingClientRect(); | |
| var items = Array.prototype.slice.call( | |
| document.querySelectorAll('*') | |
| ).map(function(element) { | |
| var rect=element.getBoundingClientRect(); | |
| return { | |
| element: element, | |
| include: (element.tagName === "BUTTON" || element.tagName === "A" || (element.onclick != null) || window.getComputedStyle(element).cursor == "pointer"), |
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
| import numpy as np | |
| import pandas as pd | |
| from itertools import product | |
| from functools import reduce | |
| ACTIONLIST = { | |
| 0: 'skip', | |
| 1: 'draw' | |
| } |
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
| sudo -i | |
| # create mountpoints for the EFI partitions of the harddisk and USB | |
| # Note that your USB device might have a different reference (but generally something like /dev/sdX1) | |
| mkdir /mnt/bootusb | |
| mkdir /mnt/bootdisk | |
| mount /dev/sda1 /mnt/bootusb | |
| mount /dev/mmcblk1p1 /mnt/bootdisk | |
| # Remove the existing bootloader from the hard drive |
NewerOlder