I hereby claim:
- I am tribou on github.
- I am tribou (https://keybase.io/tribou) on keybase.
- I have a public key ASDsgDVP-VYtVCsr9SXI87f00QOWS-yHwnirWYsvX_kSnwo
To claim this, I am signing this object:
#!/bin/bash | |
# Activate a version of Node that is read from a text file via NVM | |
function use_node_version() | |
{ | |
local TEXT_FILE_NAME="$1" | |
local CURRENT_VERSION=$([ -n "$HAS_NVM" ] && nvm current) | |
local PROJECT_VERSION=$([ -n "$HAS_NVM" ] && nvm version $(cat "$TEXT_FILE_NAME")) | |
# If the project file version is different than the current version |
/** | |
* Sample React Native App | |
* https://github.com/facebook/react-native | |
* @flow | |
*/ | |
import React, { PureComponent } from 'react' | |
import { | |
Button, | |
Image, |
package com.example.myapp; | |
import android.app.Application; | |
import com.facebook.react.ReactApplication; | |
import cl.json.RNSharePackage; | |
import cl.json.ShareApplication; | |
import com.facebook.react.ReactNativeHost; |
# Add folder and filename to tab title | |
atom.workspace.observeTextEditors (editor) -> | |
if editor.getTitle() isnt "untitled" | |
sp = editor.getPath().split('/') | |
title = sp.slice(sp.length-2).join('/') | |
editor.getTitle = -> title | |
editor.getLongTitle = -> title | |
editor.emitter.emit "did-change-title", editor.getTitle() | |
atom.workspace.onDidOpen (event) -> |
#!/bin/bash | |
PKG=eslint-config-tribou | |
npm info "$PKG@latest" peerDependencies --json \ | |
| command sed 's/[\{\},]//g ; s/: /@/g' \ | |
| xargs npm install --save-dev "$PKG@latest" |
I hereby claim:
To claim this, I am signing this object:
import React, { Component } from 'react' | |
import css from './Header.css' | |
class Header extends Component { | |
componentDidMount () { | |
this._bindScroll() |
#!/bin/bash | |
touch /tmp/Recent.xyz | |
while true | |
do | |
echo "Checking again..." | |
wget -q https://apt.dockerproject.org/repo/dists/ubuntu-xenial/main/binary-amd64/InRelease -O /tmp/InRelease.xyz | |
if test /tmp/InRelease.xyz -nt Recent.xyz; then | |
mplayer /usr/share/sounds/ubuntu/stereo/phone-incoming-call.ogg |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta | |
charset="utf-8" | |
></meta> | |
<meta | |
name="viewport" | |
content="width=device-width, initial-scale=1, maximum-scale=1" |