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
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 |
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
echo " __ __ __ __ ___ __ __ __ __ __ _____ __ " | |
echo "/ / \(_ _) /| / |__)|_ |__)/ \ (_ |_ | / \|__) " | |
echo "\__\__/__) /__ | / | \ |__| \__/ __)|__ | \__/| " | |
echo | |
echo | |
# $1 - github username | |
# $2 - name of COS217 template repo | |
# $3 - name of your private github repo |
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
<!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()"> |
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
<meta name="viewport" content="width=device-width, initial-scale=1"> |
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
// 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; |
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
# 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 |
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
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 |
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
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); |
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
body { | |
display: flex; | |
/*horizontal center*/ | |
justify-content: center; | |
/*vertial center*/ | |
align-items: center; | |
/*center body*/ |
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
file_name=$1 | |
echo Compiling $file_name... | |
javac $file_name | |
echo Successfully compiled $file_name. | |
echo Executing $file_name... | |
shift | |
java ${file_name%%.java} $@ |