Skip to content

Instantly share code, notes, and snippets.

View Tymek's full-sized avatar

Tymoteusz Czech Tymek

View GitHub Profile
@Tymek
Tymek / useNavigationLock.ts
Last active May 25, 2023 22:38
Next.js block navigation on unsaved changes
import { useEffect, useState } from 'react';
import { useRouter } from 'next/router';
/** Ask for confirmation before changing page or leaving site.
*
* @see https://git.io/JOskG
*/
const useNavigationLock = (
isEnabled = true,
warningText = 'You have unsaved changes – are you sure you wish to leave this page?',
@Tymek
Tymek / headless-pi.sh
Last active March 8, 2021 20:21
Headless Raspbian setup – WiFi and SSH
#!/bin/bash
clear
echo ""
echo -e "\e[44mHEADLESS RASPBIAN\e[0m"
echo "WiFi & SSH setup"
echo ""
echo "Available partitions:"
lsblk -e7
echo ""
@Tymek
Tymek / sortImagesByAspectRatio.py
Last active January 27, 2021 23:04
Sort images by aspect ratio with Python and exiftool
#!/usr/bin/env python3
import sys
import os
import glob
import subprocess
import multiprocessing as mp
import subprocess
# change this
inputDir = "./input"
@Tymek
Tymek / magnus.tsx
Created November 6, 2020 09:20
Magnus tsx but prettier
import * as React from "react";
import { StyleSheet, SafeAreaView } from "react-native";
import {
Div,
ThemeProvider,
Text,
Button,
Input,
Icon,
Image,
@Tymek
Tymek / tricky-but-important.js
Created July 27, 2020 16:20
tricky-but-important.js
typeof (() => { return })()
@Tymek
Tymek / machine.js
Last active May 21, 2020 21:53
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@Tymek
Tymek / rule.js
Last active December 28, 2019 20:38
Auth0 rule for JWT Hasura roles
function (user, context, callback) {
// console.log('context', context);
const namespace = "https://hasura.io/jwt/claims";
const roles = (context.authorization || {}).roles || [];
const claims = {
'x-hasura-default-role': 'user',
'x-hasura-allowed-roles': [
'anonymous',
'user',
@Tymek
Tymek / compose.log
Last active July 22, 2019 20:14
FusionAuth Docker
Attaching to fusionauth_fusionauth_1, fusionauth_db_1, fusionauth_search_1
fusionauth_1 | mkdir: cannot create directory '/usr/local/fusionauth/fusionauth-app/apache-tomcat/../../logs': Permission denied
fusionauth_1 | 22-Jul-2019 19:29:14.550 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin [SetPropertiesRule]{Server} Setting property 'port' to '${fusionauth.management.port}' did not find a matching property.
fusionauth_1 | 22-Jul-2019 19:29:15.444 WARNING [main] org.apache.catalina.startup.SetAllPropertiesRule.begin [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'port' to '${fusionauth.http.port}' did not find a matching property.
fusionauth_1 | 22-Jul-2019 19:29:15.451 WARNING [main] org.apache.catalina.startup.SetAllPropertiesRule.begin [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'redirectPort' to '${fusionauth.https.port}' did not find a matching property.
fusionauth_1 | 22-Jul-2019 19:29:15.846 WARNING [main] org.apache.catalina.startup
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
allow-hotplug ens4
iface ens4 inet dhcp
# "Failover"
auto ens3:0
@Tymek
Tymek / unusedActionTypes.js
Last active May 2, 2019 10:51
Find unused action types in Redux stores. no eslint rule for that :| easy to miss during actionTypes refactoring
#!/usr/bin/env node
const fs = require('fs')
const isWin = process.platform === "win32";
const findCmd = isWin ? 'dir /s *store.js' : 'find src -name "*store.js"'
const exec = require('child_process').exec
const findStores = () => new Promise((resolve, reject) => {
exec(