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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>A simple clock</title> | |
</head> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
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
{ | |
"font_type": { | |
"label": "Font", | |
"type": "fontpicker", | |
"value": "Fredoka One" | |
}, | |
"barBackground": { | |
"label": "BG Color", | |
"type": "colorpicker", | |
"value": "#43342e" |
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
// ************************************************************************************** | |
// This is Javascript for Adobe Photoshop CC | |
// Copyright (c) 2018 Live2D inc. | |
// This software is released under the MIT License. | |
// https://opensource.org/licenses/mit-license.php | |
// | |
// 「*」(アスタリスク)が付いていないレイヤーセットを結合 | |
// 更新 2019/04/04 クイックマスクモードになっていると結合できない問題を解消 | |
// ************************************************************************************** | |
(function (){ |
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
// create a bookmark and use this code as the URL, you can now toggle the css on/off | |
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3 | |
javascript: (function() { | |
let domStyle = document.getElementById('domStylee'); | |
if (domStyle) { | |
document.body.removeChild(domStyle); | |
return; | |
} | |
domStyle = document.createElement("style"); | |
domStyle.setAttribute('id', 'domStylee'); |
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 i2c = require('i2c'); | |
var sudo = require("sudo"); | |
var address = 0x04; //FLORA Board device address | |
var wire = new i2c(address, {device: '/dev/i2c-1'}); //Begin I2C connection with FLORA board | |
//Scan networks every 5 seconds | |
setInterval(ScanForNetwork, 5 * 1000); | |
function ScanForNetwork() { | |
iwlistScan(function(err, results){ |