Skip to content

Instantly share code, notes, and snippets.

View MoOx's full-sized avatar
:shipit:
Freelance React / React Native Expert, Cross-platform fanboy (native, web...)

Max Thirouin MoOx

:shipit:
Freelance React / React Native Expert, Cross-platform fanboy (native, web...)
View GitHub Profile
@MoOx
MoOx / @react-native-community__netinfo_v4.x.x.js
Last active June 9, 2021 09:05
react native netinfo flow types (should be on flow-typed but I am too lazy to make tests)
declare module '@react-native-community/netinfo' {
declare export type StateType =
| 'none'
| 'unknown'
| 'cellular'
| 'wifi'
| 'bluetooth'
| 'ethernet'
| 'wimax'
| 'vpn'
@MoOx
MoOx / test.md
Last active April 19, 2018 20:42
Voiceover test to check if case change something

I am not yelling. I AM NOT YELLING.

is there any difference? Is ThErE aNy DiFfERENCE?

React Native lets you build mobile apps using only JavaScript. It uses the same design as React, letting you compose a rich mobile UI from declarative components.

REACT NATIVE LETS YOU BUILD MOBILE APPS USING ONLY JAVASCRIPT. IT USES THE SAME DESIGN AS REACT, LETTING YOU COMPOSE A RICH MOBILE UI FROM DECLARATIVE COMPONENTS.

@MoOx
MoOx / react-ui-kit-comparator.md
Last active April 16, 2020 20:36
Matrix of existing React ui kit (more than 200 download/week, more than 200 stars)
@MoOx
MoOx / .txt
Created October 4, 2017 06:13
Verifying that "_moox_.id" is my Blockstack ID. https://onename.com/_moox_
@MoOx
MoOx / README.md
Last active May 11, 2023 13:59
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
@MoOx
MoOx / link.re
Last active April 11, 2018 03:10
@MoOx
MoOx / README.md
Created September 19, 2017 15:21
Keybase github proof

Your username on Github: MoOx Please publicly post the following Gist, and name it keybase.md

Keybase proof

I hereby claim:

  • I am moox on github.
  • I am moox (https://keybase.io/moox) on keybase.
  • I have a public key ASDqDbkch-cnPEc4XlbDhaYbLywxshF_E0wDNfUBz7GLIAo
@MoOx
MoOx / index.js
Created September 11, 2017 04:55
requirebin sketch
var unified = require('unified');
var markdown = require('remark-parse');
var remark2rehype = require('remark-rehype');
var slug = require('rehype-slug');
var link = require('rehype-autolink-headings');
var raw = require('rehype-raw');
var stringify = require('rehype-stringify');
const input = `## Test
[link](href)
@MoOx
MoOx / fb-watchman.js
Created May 24, 2017 04:53
fb-watchman flow interface
export type Watch = {}
export type CommandResponse = {
watch: Watch,
relative_path: string,
}
export type Subscription = {
expression: Array<string | [ string, string ]>,
fields: Array<string>,