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
function isNakedDay() { | |
const now = new Date(); | |
const year = now.getFullYear(); | |
const start = new Date(year, 3, 24, -14, 0, 0).getTime() / 1000; | |
const end = new Date(year, 3, 24, 36, 0, 0).getTime() / 1000; | |
const z = now.getTimezoneOffset() * 60; | |
const currentTime = now.getTime() / 1000 - z; | |
return currentTime >= start && currentTime <= end; | |
} |
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
export default function PageLaout ({ html, state }) { | |
const { attrs = {} } = state | |
const { mobileBreakpoint = '40rem', desktopBreakpoint = '60rem' } = attrs | |
return html` | |
<style> | |
:host { | |
min-height: 100vh; | |
display: grid; | |
grid-template-areas: | |
'header' |
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 path = require('path') | |
const { readFileSync } = require('fs') | |
exports.handler = async function http (req) { | |
let here = path.dirname('.') | |
let postsFilePath = path.join(here, 'rss.xml.br') | |
let posts = readFileSync(postsFilePath, 'binary') | |
console.log(posts.length) |
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 Meg from 'megalodon' | |
const { default: generator } = Meg | |
// switch to your mastodon server | |
const BASE_URL = 'https://mastodon.online/' | |
const access_token = process.env.MASTODON_TOKEN | |
export async function handler (event) { | |
const {title, link, description} = JSON.parse(event.Records[0].Sns.Message) |
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
function owenv() { | |
bold=$(tput bold) | |
normal=$(tput sgr0) | |
switches="" | |
space=$1 | |
case "$space" in | |
"cloudshell") | |
host=runtime.adobe.io | |
key=<api key> |
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 fetch = require('node-fetch'); | |
const credentials = require('./credentials'); | |
module.exports = async function(context, req) { | |
if (req.query.searchTerm || (req.body && req.body.searchTerm)) { | |
const searchTerm = req.query.searchTerm || | |
req.body.searchTerm; | |
let url = `http://api.wolframalpha.com/v2/query?input=${searchTerm}&appid=${ | |
credentials.wolfram | |
}`; |
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 fetch = require('node-fetch'); | |
const credentials = require('./credentials'); | |
module.exports = async function(context, req) { | |
if (req.query.searchTerm || (req.body && req.body.searchTerm)) { | |
const searchTerm = req.query.searchTerm || | |
req.body.searchTerm; | |
let url = `https://www.googleapis.com/language/translate/v2?key=${ | |
credentials.google | |
}&source=en&target=fr&q=${searchTerm}`; |
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'; | |
const Hapi = require('hapi'); | |
const Joi = require('joi'); | |
const fetch = require('node-fetch'); | |
const credentials = require('./credentials'); | |
const server = Hapi.server({ | |
host: '0.0.0.0', | |
port: 8000 |
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 leftPad = require('left-pad'); | |
function main(args) { | |
const name = args.name || 'World'; | |
return { payload: `Hello, ${leftPad(name, 30, ".")}!` }; | |
} | |
global.main = main; |
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
function main(args) { | |
return { payload: 'Hello world' }; | |
} | |
global.main = main; |
NewerOlder