Skip to content

Instantly share code, notes, and snippets.

View franky47's full-sized avatar

François Best franky47

View GitHub Profile
@franky47
franky47 / feeds.md
Created May 30, 2020 12:27
My favourite tech blogs RSS feeds
@franky47
franky47 / typescriptreact.json
Last active December 9, 2020 07:52
VSCode Snippets for Next.js + ChakraUI components
{
"Create functional component": {
"prefix": "fct",
"body": [
"export interface ${1:Component}Props {",
"",
"}",
"",
"export const ${1:Component}: React.FC<${1:Component}Props> = ({ ...props }) => {",
" return (",
@franky47
franky47 / use100vh.js
Created January 11, 2020 07:44
React hook to fix the 100vh issue on mobile Chrome and Safari
import React from 'react';
import { useWindowSize } from 'react-use';
// 100vh is broken on mobile (Chrome, Safari):
// https://chanind.github.io/javascript/2019/09/28/avoid-100vh-on-mobile-web.html
export default function use100vh() {
const ref = React.useRef();
const { height } = useWindowSize();
@franky47
franky47 / rfc-styles.js
Created November 26, 2019 13:34
Make RFCs easier to read
document.querySelector('.content').setAttribute("style", "margin:0 auto;font-size:16px;line-height:1.4;color:#333")
@franky47
franky47 / useDerivedState.ts
Last active May 21, 2019 06:20
React useDerivedState hook
import React from 'react'
const useDerivedState = <T>(derive: () => T, deps: any[]): T => {
const [value, setValue] = React.useState<T>(derive)
React.useEffect(() => {
setValue(derive())
}, deps)
return value
}

upperoi

Unsplash practical progressively enhanced responsive optimised images

Unsplash has the best free pictures out there.

However, their delivery is painful if you want to follow all the best practices:

  • Optimised images, to avoid sending useless bytes over the wire
  • Responsive to deliver the right image for the right screen size
@franky47
franky47 / .zprofile
Created February 3, 2019 12:51
System status MOTD for Raspberry Pi (with ZSH)
# Inspiration: https://www.raspberrypi.org/forums/viewtopic.php?t=23440
let upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)"
let secs=$((${upSeconds}%60))
let mins=$((${upSeconds}/60%60))
let hours=$((${upSeconds}/3600%24))
let days=$((${upSeconds}/86400))
UPTIME=`printf "%d days, %dh %dm %ds" "$days" "$hours" "$mins" "$secs"`
# get the load averages
@franky47
franky47 / list-of-lists.md
Created January 11, 2019 08:18
List of lists
@franky47
franky47 / interesting-web-services.md
Last active June 1, 2023 16:06
Interesting web services

Interesting web services

A semi-curated list of SaaS, platforms and web-based tools for software development.

Analytics

  • Chiffre - End-to-end encrypted analytics (shameless plug)
  • Matomo - Self-hostable alternative to Google Analytics

Cartography

@franky47
franky47 / hosts
Last active December 7, 2018 08:05
Block undesired web services from even resolving their DNS
# Block Facebook IPv4
0.0.0.0 www.facebook.com
0.0.0.0 facebook.com
0.0.0.0 login.facebook.com
0.0.0.0 www.login.facebook.com
0.0.0.0 fbcdn.net
0.0.0.0 www.fbcdn.net
0.0.0.0 fbcdn.com
0.0.0.0 www.fbcdn.com
0.0.0.0 static.ak.fbcdn.net