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
{ | |
"AL": { | |
"name": "Alabama", | |
"capital": "Montgomery", | |
"lat": "32.361538", | |
"long": "-86.279118" | |
}, | |
"AK": { | |
"name": "Alaska", | |
"capital": "Juneau", |
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
<template> | |
<f7-page name="about"> | |
<nav-bar page-title="About" :root-view="rootView"></nav-bar> | |
<f7-block-title>About My App</f7-block-title> | |
<f7-block strong> | |
<p>Fugiat perspiciatis excepturi, soluta quod non ullam deleniti. Nobis sint nemo consequuntur, fugiat. Eius perferendis animi autem incidunt vel quod tenetur nostrum, voluptate omnis quasi quidem illum consequuntur, a, quisquam.</p> | |
<p>Laudantium neque magnam vitae nemo quam commodi, in cum dolore obcaecati laborum, excepturi harum, optio qui, consequuntur? Obcaecati dolor sequi nesciunt culpa quia perspiciatis, reiciendis ex debitis, ut tenetur alias.</p> | |
</f7-block> | |
<f7-block> |
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 | |
$converter = new img2ansi(); | |
$converter->run(); | |
class img2ansi | |
{ | |
private $_image; | |
private $_colors_array = array( | |
"black" => array(0, 0, 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
version: '2' | |
services: | |
grafana: | |
container_name: grafana | |
image: grafana/grafana | |
volumes: | |
- ${DOCKER_HOME}/grafana/data:/var/lib/grafana | |
- ${DOCKER_HOME}/grafana/config:/etc/grafana | |
influxdb: |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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
Szechuan Sauce | |
1/2 cup water | |
1/2 cup white vinegar | |
1/2 cup sugar | |
1/2 cup soy sauce | |
1 tbs apple cider vinegar | |
1/2 tsp sesame seed oil | |
1/4 tsp garlic powder | |
1/4 tsp onion powder |
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
{ | |
"bip": "172.18.0.1/24" | |
} |
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 React, { Component } from 'react'; | |
import { Line } from 'react-chartjs-2'; | |
import Utils from '../../utils'; | |
import Config from '../../config'; | |
const brandPrimary = '#20a8d8'; | |
const brandSuccess = '#4dbd74'; | |
const brandInfo = '#63c2de'; | |
const brandDanger = '#f86c6b'; |
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 | |
$settings_base_dir = '/Users/exonintrendo'; | |
$network_interface = 'ppp0'; | |
if (file_exists("$settings_base_dir/.deluge_starter.lock")) { | |
log_msg("Lock file exists. Exiting."); | |
exit; | |
} |
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 | |
class VPNNetMonitoring extends Primer\Console\Command\BaseCommand | |
{ | |
private $vpnInterface = 'ppp0'; | |
public function configure() | |
{ | |
$this->setName('netmon:transmission'); | |
$this->setDescription("Monitoring the necessary network interface to bind all Transmission traffic through"); |