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 { apiConfig, routes, utils, config } = it; | |
const { info, servers, externalDocs } = apiConfig; | |
const { _, require, formatDescription } = utils; | |
const server = (servers && servers[0]) || { url: "" }; | |
const descriptionLines = _.compact([ | |
`@title ${info.title || "No title"}`, | |
info.version && `@version ${info.version}`, |
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
type: grid | |
cards: | |
- type: gauge | |
entity: sensor.lr_carbon_filter_days_left | |
min: 0 | |
max: 30 | |
severity: | |
green: 15 | |
yellow: 7 | |
red: 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
import { BrowserModule } from '@angular/platform-browser'; | |
import { ComponentFactoryResolver, DoBootstrap, Injector, NgModule } from '@angular/core'; | |
import { ReactiveFormsModule } from '@angular/forms'; | |
import { createCustomElement, NgElementConfig } from '@angular/elements'; | |
import { FirstComponent } from './components/first/first.component'; | |
import { SecondComponent } from './components/second/second.component'; | |
const entryComponents = [ | |
FirstComponent, |
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
Remove-Item alias:gc -force | |
Remove-Item alias:gp -force | |
function gs { | |
git status $args | |
} | |
function gd { | |
git diff $args | |
} |