Skip to content

Instantly share code, notes, and snippets.

View LetMyPeopleCode's full-sized avatar

Greg Bulmash LetMyPeopleCode

View GitHub Profile
@LetMyPeopleCode
LetMyPeopleCode / openapitest.yml
Last active May 25, 2023 20:49
OpenAPI 3.0 definition for Postman ToDo API Quickstart
openapi: 3.0.0
info:
title: My ToDo API
description: Create, read, edit, and complete tasks.
version: 0.1.0
servers:
- url: http://localhost:8080
description: Development server
variables:
port:
@LetMyPeopleCode
LetMyPeopleCode / gistish.txt
Created November 2, 2020 18:03
This is a test Gist
What should go here?
@LetMyPeopleCode
LetMyPeopleCode / firstpost.js
Last active June 14, 2020 22:11
A bit of sample code for testing visual appearance
function thisIsSomeCode(argument) {
const thought = "Will this be properly highlighted?";
console.log(thought);
}
const yes_I_can_edit = true;