Skip to content

Instantly share code, notes, and snippets.

View LotuxPunk's full-sized avatar
💾
Backup your saves !

Clément Vandendaelen LotuxPunk

💾
Backup your saves !
View GitHub Profile
CREATE DATABASE IF NOT EXISTS `adopteunepoubelle`;
USE `adopteunepoubelle`;
-- Check docs
-- https://dev.mysql.com/doc/refman/8.0/en/create-table-check-constraints.html
SET FOREIGN_KEY_CHECKS = 0;
DROP TABLE IF EXISTS `category`;
DROP TABLE IF EXISTS `discount`;
DROP TABLE IF EXISTS `language`;
function calculateFuel() {
let anotherVehicle = "yes";
const mpg = 4.54609;
do {
let carsMPG = prompt('Please enter your vehicles average fuel consumption (MPG): ', 0);
let journeyLength = prompt('Please enter the milage of your trip to college per day: ', 0);
let fuelcostPerLitre = prompt('Please enter the amount you pay for fuel per litre: ', 0);
---- Minecraft Crash Report ----
WARNING: coremods are present:
Regeneration Sound Handler (Regeneration-1.12.2-1.5.7B.jar)
MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.2.210.jar)
IvToolkit (IvToolkit-1.3.3-1.12.jar)
CTMCorePlugin (CTM-MC1.12.2-0.3.3.22.jar)
Contact their authors BEFORE contacting forge
// Everything's going to plan. No, really, that was supposed to happen.
[
{
"n": "Baubles",
"v": "1.5.2",
"f": "Baubles-1.12-1.5.2.jar",
"a": "Azanor",
"u": "http://www.minecraftforum.net/topic/2535073-baubles",
"m": "944dec4ef3fbfd4d498d94a7047af201"
},
{
@LotuxPunk
LotuxPunk / tardisOSV1.lua
Last active January 15, 2019 13:45
Better than ever
--By LotuxPunk
--Variables
local y = 0
--Screen stuff
function resetScreen()
term.clear()
term.setTextColor(colors.cyan)
y = 0
end