Skip to content

Instantly share code, notes, and snippets.

View rlemon's full-sized avatar
🍋
Hanging around.

Robert Lemon rlemon

🍋
Hanging around.
  • Dryer Moisture Systems Inc.
  • Kitchener, Ontario. Canada.
View GitHub Profile
@rlemon
rlemon / index.html
Created January 28, 2021 03:46 — forked from vineeth-pappu/index.html
Pure CSS Cyberpunk 2077 Buttons 😎
<button class="cybr-btn">
Cyber<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Cyber_</span>
<span aria-hidden class="cybr-btn__tag">R25</span>
</button>
<button class="cybr-btn">
Buttons<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Buttons_</span>
<span aria-hidden class="cybr-btn__tag">R25</span>
</button>
#!/bin/sh
while [ true ]; do
echo "Sorry!";
done
@rlemon
rlemon / hangman.js
Created September 6, 2019 14:33 — forked from kendfrey/hangman.js
hangman
"use strict";
const words = require("./words.json");
const faces = [":grin:", ":smile:", ":grinning:", ":slight_smile:", ":neutral_face:", ":slight_frown:", ":worried:", ":persevere:", ":tired_face:", ":dizzy_face:", ":skull:"];
module.exports = class Hangman
{
constructor()
{
this.guesses = new Set();
using System;
namespace System
{
internal static class KNAWLEDGE
{
internal static bool GARAGE(bool p, bool q)
{
return Books > Lambo;
}
{
foo: 'bar'
}
@rlemon
rlemon / film.js
Created December 21, 2018 16:30
ascii starwars. data from https://www.asciimation.co.nz/
/* eslint-disable */
import filmData from './filmData';
const devTools = /./;
devTools.toString = function() {
this.opened = true;
};
const linesPerFrame = 14;
@rlemon
rlemon / file.js
Created September 25, 2018 18:21
// get your dependancies
// read up on ES modules or CJS modules.
// but this here is CJS modules
const express = require('express');
const http = require('http');
const path = require('path');
const app = express(); // create your express app
const server = http.createServer(app); // create your server, and pass it the app as its options, this will let express use that servers incoming and outgoing channels.
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "airbnb",
import { Router } from 'express';
const router = Router();
router.get('/users', (err, req, res, next) => {
res.json(someshit);
});
router.get('/activities', (err, req, res, next) => {
res.json({message: 'look at all the room we have'});
const headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
};
fetch('/ws-auth', {
credentials: 'same-origin',
method: 'POST',
headers,
body: `fkey=${fkey().fkey}&roomid=17`
}).then(res => res.json()).then(connect);