View gist:e93a8921ed8308fd63a4755d44d89b54
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
javascript:{const googleDocIdForYou = window.location.pathname.split('/')[3];const imgtag = `<img src="https://drive.google.com/uc?id=${googleDocIdForYou}" />`;prompt("Copy This HTML:", imgtag);};void(0) |
View node-mailer.js
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
const nodemailer = require('nodemailer'); | |
const transporter = nodemailer.createTransport({ | |
service: 'gmail', | |
auth: { | |
type: 'OAuth2', | |
user: 'example@gmail.com', | |
clientId: 'XXX', | |
clientSecret: 'XXX', | |
refreshToken: 'XXX' |
View hyper settings
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
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks | |
fontFamily: 'Inconsolata, Monaco, Consolas, "Courier New", Courier', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(248,28,229,0.8)', |
View scribe*:weather.controller generateWeather: currentWeather.json
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
[ | |
{ | |
"time":0, | |
"forecast":{ | |
"lowTemp":63, | |
"highTemp":95, | |
"highRH":82, | |
"lowRH":48, | |
"stormType":"multiCellLineNS", | |
"stormStartEstimate":"morning" |
View scribe*:weather.controller topOff: hourlyWeather:.json
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
[ | |
{ | |
"temp":64, | |
"time":0, | |
"rh":77 | |
}, | |
{ | |
"temp":67, | |
"time":3600000, | |
"rh":75 |
View scribe*:weather.controller backFill: hourlyWeather.json
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
[ | |
{ | |
"temp":64, | |
"time":0, | |
"rh":77 | |
}, | |
{ | |
"temp":67, | |
"time":3600000, | |
"rh":75 |
View gist:dbff2d8ec505a7b8e7a8ea0e61a4a0ec
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
[ | |
{ | |
"temp":64, | |
"time":0, | |
"rh":77 | |
}, | |
{ | |
"temp":67, | |
"time":3600000, | |
"rh":75 |
View scribe*:weather.controller trackedStorm.json
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
{ | |
"duration":4740000, | |
"cells":[ | |
{ | |
"wind":6, | |
"cell_duration":1500000, | |
"cell_precipitation_rate":0.6, | |
"cell_solid":0, | |
"cell_hook":0, | |
"cell_delay":0, |
View scribe*:weather.controller storm.json
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
{ | |
"duration":4740000, | |
"cells":[ | |
{ | |
"wind":6, | |
"cell_duration":1500000, | |
"cell_precipitation_rate":0.6, | |
"cell_solid":0, | |
"cell_hook":0, | |
"cell_delay":0 |
View scribe*:weather.controller hourlyWeather.json
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
[ | |
{ | |
"temp":64, | |
"time":0, | |
"rh":77 | |
}, | |
{ | |
"temp":67, | |
"time":3600000, | |
"rh":75 |
NewerOlder