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
<opml version="2.0"> | |
<head> | |
<title>Feeds from profiles followed by simon-macdonald (extracted by rss-is-dead.lol)</title> | |
<dateCreated>2025-03-03T21:03:24.210Z</dateCreated> | |
</head> | |
<body> | |
<outline type="rss" text="The Breakroom" xmlUrl="https://blog.iconfactory.com/feed/" description="A blog for the Iconfactory" htmlUrl="https://blog.iconfactory.com/" language="en-US"/> | |
<outline type="rss" text="Liss is More" xmlUrl="https://www.caseyliss.com/rss" description="Posts to Liss is More" htmlUrl="https://www.caseyliss.com/" language="en"/> | |
<outline type="rss" text="Liss is More" xmlUrl="https://www.caseyliss.com/rss-alternate" description="Posts to Liss is More" htmlUrl="https://www.caseyliss.com/" language="en"/> | |
<outline type="rss" text="@stuffbreaker.bsky.social - Burton Smith" xmlUrl="https://bsky.app/profile/did:plc:pefubtxqc5svtvsds725qgx3/rss" description="Fun-loving coder and speaker. I love web development, web components, and design systems. Creator of kickstand-ui. I work @microsoft |
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
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 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
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 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
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 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 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 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
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 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
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 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
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 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
'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 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
const leftPad = require('left-pad'); | |
function main(args) { | |
const name = args.name || 'World'; | |
return { payload: `Hello, ${leftPad(name, 30, ".")}!` }; | |
} | |
global.main = main; |
NewerOlder