Skip to content

Instantly share code, notes, and snippets.

View loopDelicious's full-sized avatar
🌵

Joyce Lin loopDelicious

🌵
View GitHub Profile
---
# UPDATE THIS SECRET BEFORE APPLYING
apiVersion: v1
kind: Secret
metadata:
name: ddclient-secret
data:
ddclient.conf: |
protocol=cloudflare, \
zone=meowsergirl.com, \
---
# The main bit: the Deployment of our container.
apiVersion: apps/v1
kind: Deployment
metadata:
name: ddclient
spec:
replicas: 1
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
@loopDelicious
loopDelicious / index.js
Created May 15, 2020 20:11
Create a `/spacetasks` route using the `GET` method to retrieve a list of chores for the space station
app.get("/spacetasks", (req, res, next) => {
res.json([
"wash the spaceship",
"clean the space kitchen",
"look at the stars",
"repair my space suit"
])
})
var fs = require('fs'),
Converter = require('swagger2-postman2-converter');
function handleConversion(originalFileName, newFileName) {
// read the local swagger file
var swaggerObject = JSON.parse(
fs.readFileSync(originalFileName, 'utf8')
);
@loopDelicious
loopDelicious / script.js
Created August 28, 2017 19:41
Example of writing to a local file
var express = require('express');
var fs = require('fs');
var bodyParser = require('body-parser');
var app = express();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json()); // Body parser use JSON data
app.post('/launches', function(req, res) {