Skip to content

Instantly share code, notes, and snippets.

View SebastianDevelops's full-sized avatar
💭
Always Learning

Sebastian Van Rooyen SebastianDevelops

💭
Always Learning
View GitHub Profile
@SebastianDevelops
SebastianDevelops / script.js
Created July 16, 2024 09:47
Inspection required js
This file has been truncated, but you can view the full file.
(function() {
var $gwt_version = "2.9.0";
var $wnd = window;
var $doc = $wnd.document;
var $moduleName, $moduleBase;
var $strongName = '52393A496726E0E76254DB975DD54BA5';
var $stats = $wnd.__gwtStatsEvent ? function(a) {
return $wnd.__gwtStatsEvent(a);
}
: null;

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@SebastianDevelops
SebastianDevelops / index.html
Created February 7, 2022 19:29
JavaScript Calculator
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Javascript Calculator</title>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>