This file contains hidden or 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 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>Courses for exchange at EUC</title> | |
</head> |
This file contains hidden or 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>WebP Test</title> | |
<style> | |
body { | |
display: flex; |
This file contains hidden or 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
<?php | |
@ini_set('display_errors', 1); | |
function dd(...$any) | |
{ | |
foreach ($any as $var) { | |
var_dump($var); | |
} | |
die(); |
This file contains hidden or 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
interface FloatingLabelConstructor { | |
fieldContainerClass: string; | |
activeFieldClass: string; | |
} | |
class FloatingLabel { | |
private fields: NodeListOf<HTMLDivElement>; | |
private className: string; | |
constructor({ fieldContainerClass, activeFieldClass } = {} as FloatingLabelConstructor) { |
This file contains hidden or 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
window.addEventListener( | |
'DOMContentLoaded', | |
(): void => { | |
const container: HTMLDivElement = document.querySelector( | |
'[data-instagram]' | |
); | |
if (!container) { | |
console.log('No Instagram container found'); | |
return; |
This file contains hidden or 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
#lang plai | |
(define-type FWAE | |
[num (n number?)] | |
[add (lhs FWAE?) (rhs FWAE?)] | |
[sub (lhs FWAE?) (rhs FWAE?)] | |
[with (name symbol?) (named-expr FWAE?) (body FWAE?)] | |
[id (name symbol?)] | |
[fun (param symbol?) (body FWAE?)] | |
[app (fun-expr FWAE?) (arg-expr FWAE?)] |
This file contains hidden or 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>PLACEHOLDER</title> | |
<link href="https://fonts.googleapis.com/css?family=Mali:200" rel="stylesheet" type="text/css"> | |
<style> | |
html, body { | |
height: 100%; |
This file contains hidden or 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
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| Pagination Language Lines | |
|-------------------------------------------------------------------------- | |
| | |
| The following language lines are used by the paginator library to build |
This file contains hidden or 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>{text_here}</title> | |
<style> | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; |
This file contains hidden or 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
<template> | |
<div> | |
<h2>Timetable Generator</h2> | |
<div class="bar"> | |
<input type="text" placeholder="start" v-model="startTime" /> | |
<input type="text" placeholder="end" v-model="endTime" /> | |
<input type="text" placeholder="length" v-model="length" /> | |
<input type="number" placeholder="number" v-model="slots" /> |