Skip to content

Instantly share code, notes, and snippets.

@lfuelling
lfuelling / README.md
Last active February 11, 2024 20:30
Webstorm / IntelliJ Typescript React Arrow Function Template

Webstorm / IntelliJ Typescript React Arrow Function Template

This is a IntelliJ/WebStorm live template that can be used to easily create a new arrow function component.

How to use

  1. Go to the WebStorm/IntelliJ settings
  2. Open the Live Template editor
  3. Add a new template to the "React" section
  4. Add the contents of content.tsx to the content field
@lfuelling
lfuelling / DimensionLockingTableCell.tsx
Created June 20, 2021 17:27
If you use react-beautiful-dnd and are struggling with Atlassians prehistoric example code (wtf does @flow even mean, who still writes class components??) you might find this example component helpful. If you use this in a draggable row instead of td tags, this will make the table keep its dimensions when dragging.
import React, {FunctionComponent} from "react";
type TableCellProps = {
children: unknown
}
const DimensionLockingTableCell: FunctionComponent<TableCellProps> = ({children}) => {
const ref = React.useRef<HTMLTableDataCellElement>(null);
@lfuelling
lfuelling / PRIVACY.md
Created April 7, 2020 22:01
Data privacy statements for MeshTalk

Privacy

This app is a messenger and thus has to connect to the internet to send and receive messages. The content of each message is only tranferred encrypted. The server the messages are send to has no way of decrypting any messages in a reasonable amount of time because there are no cleartext keys stored on the server.

The only type of key stored on the server are chat keys in handshakes. Those are encrypted with a user's key which is never transferred at all so the server also has no way to decrypt those chat keys.

Since users can set their own server in the settings, the developers of the app can't make any statement regarding the transport layer encryption used to connect to the server.

Aside from that, this app does not connect to the internet or collect any data on it's own.

@lfuelling
lfuelling / PRIVACY.md
Created February 9, 2020 02:13
Generic Data Privacy Statement For Offline Apps On Google Play

Privacy

This app does not connect to the internet or collect any data on it's own.

The exception of this is preferences the user sets or values the user enters. Those will be stored on the device and might get backuped to Google if this is configured. The backup has to be configured in the Android System settings.

This statement does not cover functionality that is provided by Google (eg. the PlayStore analytics).

@lfuelling
lfuelling / keybase.md
Last active May 7, 2020 14:58
Keybase Confirmation

I deleted keybase because it was aquired by zoom.

Money quote:

Ultimately Keybase's future is in Zoom's hands, and we'll see where that takes us.

@lfuelling
lfuelling / halcyon.conf
Last active July 13, 2019 12:52
"jUsT uPlOaD AnD rUn iT"
<VirtualHost *:80>
ServerName {{ halcyon_domain }}
Redirect permanent / https://{{ halcyon_domain }}/
Redirect permanent (.*) https://{{ halcyon_domain }}/
</VirtualHost>
<VirtualHost *:443>
ServerName {{ halcyon_domain }}
@lfuelling
lfuelling / showCows.sh
Created July 13, 2019 11:33
See all the available cows on your system!
#!/bin/bash
cowsay -l | xargs -n 1 | tail -n +5 | while read line; do cowsay -f $line $line && sleep 1; done
@lfuelling
lfuelling / mac.sh
Last active April 25, 2018 23:33
macOS initial config
#!/usr/bin/env bash
# mac.sh — Based on: https://mths.be/macos
# Close any open System Preferences panes, to prevent them from overriding
# settings we’re about to change
osascript -e 'tell application "System Preferences" to quit'
# Ask for the administrator password upfront
sudo -v
@lfuelling
lfuelling / spectre.c
Created January 8, 2018 23:57 — forked from ErikAugust/spectre.c
Spectre example code
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */
#endif
@lfuelling
lfuelling / Dockerfile
Last active February 9, 2017 22:00
dradis-ce Dockerfile (alpha)
FROM ruby:2.2
##
# Docker image for Dradis-ce.
# This is NOT the final version!
##
MAINTAINER Lukas Fülling ([email protected])
# Install dependencies using apt