Skip to content

Instantly share code, notes, and snippets.

@olwe1
olwe1 / icon.js
Created May 28, 2020 16:13 — forked from evansiroky/icon.js
Mocking children components with Jest - does this make sense?
import React from 'react'
export default class Icon extends React.Component {
render () {
const {type, className} = this.props
return (
<i
className={`fa fa-${type} fa-fw ${className}`}
{...this.props}
@olwe1
olwe1 / README.md
Last active February 10, 2022 15:03 — forked from julianxhokaxhiu/README.md
Enable autodiscover AirPlay Client support on Arch Linux ( like on macOS )

Enable autodiscover AirPlay Client support on Arch Linux ( like on macOS )

Step 1

Install required dependencies

$ pacman -S avahi pulseaudio-zeroconf pulseaudio-rtp

Step 2

@olwe1
olwe1 / Dockerfile
Last active December 19, 2019 19:21
Dockerfile funkwhale arm architecture
FROM arm32v7/alpine:3.10
MAINTAINER thetarkus
#
# Installation
#
ARG arch=armhf
RUN \