This file contains 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
/** | |
* Marlin 3D Printer Firmware | |
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] | |
* | |
* Based on Sprinter and grbl. | |
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or |
This file contains 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 React from 'react' | |
export default class MySampleComponent extends React.Component { | |
render() { | |
return <h1> Hello Nate, Welcome to {this.props.name}</h1>; | |
} | |
} |
This file contains 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
{ | |
"host": "[[YOUR HA LOCAL IP FROM ROUTER]]", | |
"port": 1883, | |
"ring_topic": "ring", | |
"hass_topic": "hass/status", | |
"mqtt_user": "[[MQTT USER FROM HA]]", | |
"mqtt_pass": "[[MQTT USER PW]]", | |
"ring_user": "", | |
"ring_pass": "" | |
} |
This file contains 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
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: helloweb | |
labels: | |
app: hello | |
spec: | |
selector: | |
app: hello | |
tier: web |
This file contains 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
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: helloweb | |
labels: | |
app: hello | |
spec: | |
selector: | |
app: hello | |
tier: web |
This file contains 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["webpackJsonp"] = window["webpackJsonp"] || []).push([["orders-orders-module"],{ | |
/***/ "./src/app/orders/order-list/order-list.component.css": | |
/*!************************************************************!*\ | |
!*** ./src/app/orders/order-list/order-list.component.css ***! | |
\************************************************************/ | |
/*! no static exports found */ | |
/***/ (function(module, exports) { | |
module.exports = "" |
This file contains 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
for(var o="myname",a=[1,2,3,4,5,6],e=0;e<6;e++)console.log(a[e]); |
This file contains 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
var index,longvariable="myname",longArray=[1,2,3,4,5,6] for(index=0;6>index;index++)console.log(longArray[index]) |
This file contains 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
var longvariable = "myname" | |
var longArray = [1,2,3,4,5,6] | |
//some comment about functionality perhaps? | |
for(var index = 0; index < 6; index++){ | |
console.log(longArray[index]); | |
} |
This file contains 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
var syncDep; | |
/** | |
assume this is a expensive(ish) HTTP call. | |
*/ | |
function getLottery() { | |
return new Promise((resolve, reject) =>{ | |
setTimeout(function() { | |
syncDep = [1,22,34,56,5]; | |
resolve(syncDep); |
NewerOlder