Skip to content

Instantly share code, notes, and snippets.

View 369gtech's full-sized avatar
💭
How can I help you?

Steven Mcleod 369gtech

💭
How can I help you?
View GitHub Profile
import './App.css';
import {useEffect, useState} from 'react'
function App() {
const [orig, setOrig] = useState("")
const [redact, setRedact] = useState("")
const [guess, setGuess] = useState("")
const [guessCt, setGCt] = useState(0)
const [qa, setQA] = useState({q: "What is foo(3, 4)?", a: "5"})
const [aGuess, setAG] = useState("")
const blurCode = (str) => {
@beaucarnes
beaucarnes / keep_alive.py
Created December 10, 2020 15:42
Python Server for Discord Bot
from flask import Flask
from threading import Thread
app = Flask('')
@app.route('/')
def home():
return "Hello. I am alive!"
def run():
@jhnferraris
jhnferraris / hyper.js
Created July 3, 2018 10:38 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
@coco-napky
coco-napky / hyper.js
Created March 8, 2017 23:21
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',