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
<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> |
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
#!/bin/sh | |
while [ true ]; do | |
echo "Sorry!"; | |
done |
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 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(); |
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
using System; | |
namespace System | |
{ | |
internal static class KNAWLEDGE | |
{ | |
internal static bool GARAGE(bool p, bool q) | |
{ | |
return Books > Lambo; | |
} |
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
{ | |
foo: 'bar' | |
} |
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
/* eslint-disable */ | |
import filmData from './filmData'; | |
const devTools = /./; | |
devTools.toString = function() { | |
this.opened = true; | |
}; | |
const linesPerFrame = 14; |
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
// 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. |
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
{ | |
"env": { | |
"browser": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": "airbnb", |
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 { 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'}); |
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 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); |
NewerOlder