Skip to content

Instantly share code, notes, and snippets.

View casperboone's full-sized avatar

Casper Boone casperboone

View GitHub Profile
@casperboone
casperboone / 1_tiny_likert.py
Last active May 4, 2021 11:01
Tiny Likert Plots
import plotly.graph_objects as go
import numpy as np
from slugify import slugify
from results.process_input import process_intro, process_questions_intro
from results.report import color
def tiny_likert(answers):
fig = go.Figure([
@casperboone
casperboone / app--Notifications--InvoicePaidNotification.php
Created November 11, 2016 21:26
Laravel Pushover Notifications - Basic Setup Example
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use NotificationChannels\Pushover\PushoverChannel;
use NotificationChannels\Pushover\PushoverMessage;
class InvoicePaidNotification extends Notification