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
<template> | |
<div class="bg-slate-200"> | |
<h1 class="text-3xl" v-html="getFieldWithLanguageFallback('headline')"></h1> | |
<div v-html="getFieldWithLanguageFallback('content')"></div> | |
</div> | |
</template> | |
<script setup lang="ts"> | |
const { locale } = useI18n({ inheritLocale: true }) |
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
# .ssh/config | |
Host tunnel-notflip | |
Hostname tunnel.notflip.be | |
User root | |
IdentityFile ~/.ssh/id_rsa | |
RemoteForward 20000 localhost:8000 | |
ServerAliveInterval 30 | |
ServerAliveCountMax 3 | |
# .zshrc (or .bashrc) |
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
FROM php:7.4-fpm-alpine | |
ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/ | |
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \ | |
install-php-extensions imagick | |
RUN cd | |
RUN wget https://github.com/google/fonts/archive/master.zip | |
RUN unzip master.zip | |
RUN cp -rvf fonts-master /usr/share/fonts |
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": { | |
"theme": "short" | |
}, | |
"basics": { | |
"name": "Miguel Stevens", | |
"label": "Web Developer & Digital Creative", | |
"email": "[email protected]", | |
"phone": "+32 483 02 99 47", | |
"summary": "No better way to introduce yoursel then to sum up your values! These are mine: Adventurousness, Competitiveness, Creativity, Curiosity, Freedom, Fun, Originality, Friendship, Happiness, Humor, Respect, Ambition, Design, Beauty, Knowledge, Risk, Courage", |
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
"content_scripts": [ | |
{ | |
"matches": [ | |
"https://read.amazon.com/*", | |
"file:///*" | |
], | |
"js": [ | |
"js/content.js" | |
], | |
"run_at": "document_start" |
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
<?php | |
interface rule | |
{ | |
public function validates(int $number): bool; | |
public function replace(): string; | |
} | |
class IsEvenRule implements Rule | |
{ |
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
#!/usr/bin/env python3 | |
import spidev | |
import time | |
import struct | |
spi = spidev.SpiDev() | |
spi.open(0,0) | |
spi.max_speed_hz=100000 | |
deadzone = 20 |
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
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
country=BE | |
network={ | |
ssid="Ssid" | |
psk="Password" | |
key_mgmt=WPA-PSK | |
} |
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
"users": [ | |
"user1": { | |
"id": "user1", | |
"username": "Notflip" | |
} | |
] | |
"categories": [ | |
"category1": { | |
"name": "Productivity", |
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
$grid-breakpoints: ( | |
xs: 0, | |
sm: 576px, | |
md: 768px, | |
lg: 992px, | |
xl: 1200px | |
) !default; | |
$spacer: 20px !default; | |
$spacers: ( |
NewerOlder