Daily Weekly Monthly

Daily Shaarli

All links of one day in a single page.

04/13/17

Note: Problemas con el purto 80

Muestra los procesos que usen el puerto 80

   lsof -i :8081 

Cuando lo encuentres matalo de la siguiente manera:

   kill -9 <PID> 
Note: React native menu without animations

    _configureScene(route){
        switch (route.name) {
            case 'CONTENT_VIEW':
                return Navigator.SceneConfigs.HorizontalSwipeJump
                break;
            case 'PUBLIC_FEED':
                return {
                    ...Navigator.SceneConfigs.HorizontalSwipeJump,
                    gestures: {
                        pop: {},
                    },
                }
                break;
        }
    };

    render() {
        return (
            <Navigator
                ref={ ref => this.navigator = ref }
                initialRoute={ { name: 'LOGIN_FORM' } }
                configureScene={ this._configureScene }
                renderScene={(route, navigator) => {