Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
BlazerYoo / bulma-setup.sh
Created April 1, 2023 04:11
Use bash script to set up node-sass for Bulma (adapted from https://bulma.io/documentation/customize/with-node-sass/)
echo 'MAKING BULMA DIRECTORY...'
mkdir bulma-sass
cd bulma-sass
echo $'\nSpecify entry point: sass/styles.scss'
echo $'\nINITIALIZING NPM PROJECT...'
npm init
echo $'\nINSTALLING DEPENDENCIES...'
npm install node-sass --save-dev
echo " __ __ __ __ ___ __ __ __ __ __ _____ __ "
echo "/ / \(_ _) /| / |__)|_ |__)/ \ (_ |_ | / \|__) "
echo "\__\__/__) /__ | / | \ |__| \__/ __)|__ | \__/| "
echo
echo
# $1 - github username
# $2 - name of COS217 template repo
# $3 - name of your private github repo
@BlazerYoo
BlazerYoo / index.html
Created August 2, 2022 21:19
tornado
<!DOCTYPE html>
<html>
<head>
<title>Chat application</title>
</head>
<body>
<div style="width:100%; padding: 20px; overflow-y: scroll;">
<div id="messages"></div>
<div style="padding-top: 20px;">
<form onsubmit="return sendMessage()">
<meta name="viewport" content="width=device-width, initial-scale=1">
// Credits: https://www.geeksforgeeks.org/how-to-get-the-full-url-in-expressjs/
const express = require('express');
const app = express();
const PORT = 3000;
app.get('*', function (req, res) {
const protocol = req.protocol;
const host = req.hostname;
const url = req.originalUrl;
# uncomment if you get no picture on HDMI for a default "safe" mode
#hdmi_safe=1
# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
#disable_overscan=1
# uncomment the following to adjust overscan. Use positive numbers if console
# goes off screen, and negative if there is too much border
#overscan_left=16
javascript:function enableContextMenu(aggressive = true) { void(document.ondragstart=null); void(document.onselectstart=null); void(document.onclick=null); void(document.onmousedown=null); void(document.onmouseup=null); void(document.body.oncontextmenu=null); enableRightClickLight(document); if (aggressive) { enableRightClick(document); removeContextMenuOnAll('body'); removeContextMenuOnAll('img'); removeContextMenuOnAll('td'); } } function removeContextMenuOnAll(tagName) { var elements = document.getElementsByTagName(tagName); for (var i = 0; i < elements.length; i++) { enableRightClick(elements[i]); enablePointerEvents(elements[i]); } } function enableRightClickLight(el) { el || (el = document); el.addEventListener('contextmenu', bringBackDefault, true); } function enableRightClick(el) { el || (el = document); el.addEventListener('contextmenu', bringBackDefault, true); el.addEventListener('dragstart', bringBackDefault, true); el.addEventListener('selectstart', bringBackDefault, true); el.addEventListener('c
function enableContextMenu(aggressive = true) {
void(document.ondragstart=null);
void(document.onselectstart=null);
void(document.onclick=null);
void(document.onmousedown=null);
void(document.onmouseup=null);
void(document.body.oncontextmenu=null);
enableRightClickLight(document);
if (aggressive) {
enableRightClick(document);
@BlazerYoo
BlazerYoo / center.css
Last active July 20, 2022 20:07
Center all content in HTML
body {
display: flex;
/*horizontal center*/
justify-content: center;
/*vertial center*/
align-items: center;
/*center body*/
@BlazerYoo
BlazerYoo / j.sh
Last active October 20, 2021 03:20
Compile and execute Java programs with one command
file_name=$1
echo Compiling $file_name...
javac $file_name
echo Successfully compiled $file_name.
echo Executing $file_name...
shift
java ${file_name%%.java} $@