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
$navy: #001f3f; | |
$blue: #0074d9; | |
$aqua: #7fdbff; | |
$teal: #39cccc; | |
$olive: #3d9970; | |
$green: #2ecc40; | |
$lime: #01ff70; | |
$yellow: #ffdc00; | |
$orange: #ff851b; | |
$red: #ff4136; |
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
<div class="paper"> | |
Howdy | |
</div> |
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 /L %i IN (0,1,255) DO ping -n 1 192.168.10.%i >>c:\ipaddresses.txt |
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
<!-- JS file https://gist.github.com/elmarti/ae2a7c4de77da46d6080e8641323a11c --> | |
<template name="JustGage"> | |
{{getGageGraph}} | |
<div id="{{gage.id}}" class="{{gage.class}}" style="width:{{size.width}}; height:{{size.height}}"></div> | |
</template> | |
<!-- whateverPage is the page that where you will put the graph --> | |
<template name="whateverPage"> | |
{{>JustGage yourCustomHelper}} | |
</template> |
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
//RTCPeerConnection | |
window.RTCPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || | |
window.webkitRTCPeerConnection || window.msRTCPeerConnection; | |
//getUserMedia | |
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || | |
navigator.mozGetUserMedia || navigator.msGetUserMedia; | |
//SessionDescription | |
window.SessionDescription = window.RTCSessionDescription || window.mozRTCSessionDescription || | |
window.webkitRTCSessionDescription || msSessionDescription; |
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
start cmd.exe | |
TITLE LocalCMD | |
setlocal | |
path=c:\;%path% | |