Skip to content

Instantly share code, notes, and snippets.

<style>
.flowbox-container h2 {
font-size: 30px;
font-family: "KwantumSansWebBold", "KwantumSansWebBook", Arial, sans-serif;
margin-bottom: 10px;
display: none;
}
.flowbox-container h3 {
font-family: "KwantumSansWebBook", Arial, sans-serif;
<script>
// Container div the flowbox needs to be rendered in
const containerId = "#js-flowbox-flow";
// Flowbox flow key
const key = "2vkzHCHySqi_6a0Fn5ZmLA";
const loadScript = () => {
(function (d, id) {
if (!window.flowbox) {
var f = function () {
@SimonHaasnoot
SimonHaasnoot / .js
Last active December 29, 2020 10:21
window.onload = function () {
const hasMaakwijze = document.documentElement.innerText.indexOf("Maakwijze") > 0;
const hasMultipleBlockWraps = document.querySelectorAll(".block-wrap").length > 1;
if (!hasMaakwijze || !hasMultipleBlockWraps) {
const blockWrapElements = document.querySelectorAll(".block-wrap");
const cartHasProducts = document.querySelector('.main-cart .products .product');
if (blockWrapElements && blockWrapElements[1]) {
blockWrapElements[1].style.display = "none";
[ClaimType] nvarchar(max) NULL,
[ClaimValue] nvarchar(max) NULL,
[RoleId] nvarchar(450) NOT NULL,
CONSTRAINT [PK_AspNetRoleClaims] PRIMARY KEY ([Id]),
CONSTRAINT [FK_AspNetRoleClaims_AspNetRoles_RoleId] FOREIGN KEY ([RoleId]) REFERENCES [AspNetRoles] ([Id]) ON DELETE CASCADE
);
info: Microsoft.EntityFrameworkCore.Database.Command[20101]
Executed DbCommand (2ms) [Parameters=[], CommandType='Text', CommandTimeout='30']
CREATE TABLE [event_locations] (
[EventId] int NOT NULL,
package io.gameoftrades.studentNN;
import io.gameoftrades.model.Wereld;
import io.gameoftrades.model.kaart.*;
import io.gameoftrades.model.lader.WereldLader;
import io.gameoftrades.model.markt.Handel;
import io.gameoftrades.model.markt.HandelType;
import io.gameoftrades.model.markt.Handelswaar;
import io.gameoftrades.model.markt.Markt;
tiles:
# wall tile
'1':
posSet:
'0':
x: 0-11
y: 0
'1':
x: 0-11
y: 11
@SimonHaasnoot
SimonHaasnoot / arduinoSpel.ino
Created December 16, 2015 19:33
ArduinoBinairSpel.ino
int led1 = 8;
int led2 = 9;
int led3 = 10;
int led4 = 11;
int led5 = 13;
int button = 4;
int buttonState = LOW;
int lastButtonState = LOW;
package com.company;
import java.util.Scanner;
/**
* Created by Simon on 11-12-2015.
*/
public class PhoneKeyPad {