Skip to content

Instantly share code, notes, and snippets.

View dotted's full-sized avatar

Bo Fjord Jensen dotted

  • Denmark
  • 06:55 (UTC +01:00)
View GitHub Profile
@bparadie
bparadie / react-native.d.ts
Last active January 5, 2017 09:11
Incomplete react-native.d.ts, requires react.d.ts from DefinitelyTyped
declare module "react-native" {
import * as React from 'react';
import {ComponentClass, ReactType, ReactNode, ReactElement} from 'react';
export * from 'react';
/**
* Represents the completion of an asynchronous operation
* @see lib.es6.d.ts
@luisfaceira
luisfaceira / converter.sh
Created September 13, 2011 11:07
Oneliner to convert svn:ignore into .gitignore
svn propget -R svn:ignore | grep -v "^$" | awk '{print "mkdir " $1 " & echo \"" $3 "\" > " $1 "/.gitignore & svn add " $1 "/.gitignore"}' | /bin/sh