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
#include <esp8266.h> | |
#include "cgiwifi.h" | |
#include "config.h" | |
#include "mqtt.h" | |
#ifdef MQTTCLIENT_DBG | |
#define DBG_MQTTCLIENT(format, ...) os_printf(format, ## __VA_ARGS__) | |
#else | |
#define DBG_MQTTCLIENT(format, ...) do { } while(0) | |
#endif |
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 logging | |
import subprocess | |
import time | |
import sys | |
import win32con | |
import win32gui_struct | |
import os | |
try: | |
import winxpgui as win32gui | |
except ImportError: |
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
'use strict'; | |
var gulp = require('gulp'), | |
util = require('./utils'), | |
url = require('url'), | |
browserSync = require('browser-sync'), | |
proxy = require('proxy-middleware'); | |
var config = require('./config'); |
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
package org.kraven.repository; | |
import org.kraven.domain.DeviceData; | |
import org.springframework.data.jpa.repository.JpaSpecificationExecutor; | |
/** | |
* Spring Data JPA repository for the DeviceData entity. | |
*/ | |
@SuppressWarnings("unused") | |
public interface DeviceDataRepository extends JpaRepository<DeviceData,Long>, JpaSpecificationExecutor<DeviceData> { |
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
'use strict'; | |
var gulp = require('gulp'), | |
argv = require('yargs').argv, | |
tap = require('gulp-tap'); | |
var config = require('./config'); | |
module.exports = { | |
setProperty: setProperty, |
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
FROM phusion/baseimage:latest | |
ARG GO_SHA256=fb26c30e6a04ad937bbc657a1b5bba92f80096af1e8ee6da6430c045a8db3a5b | |
ENV GOLANG_VERSION=1.11.4 \ | |
GOPATH=/root/go \ | |
GOROOT=/usr/local/go | |
RUN apt-get update \ | |
&& apt-get install -y build-essential git-core wget curl zip vim ca-certificates |
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
Rclone Prometheus memory stats |
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
<# | |
The command to run, built from the raw link of this gist | |
Win+R | |
iexplore http://boxstarter.org/package/url?<RAW GIST LINK> | |
OR (if you don't like the way the web launcher force re-installs everything) |
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: ConfigMap | |
metadata: | |
name: cf-ddns-updater | |
namespace: kube-system | |
labels: | |
app.kubernetes.io/name: cf-ddns-updater | |
app.kubernetes.io/instance: cf-ddns-updater | |
data: |
OlderNewer