Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am fgbs on github.
  • I am fgbs (https://keybase.io/fgbs) on keybase.
  • I have a public key ASDMKppLA1IdHRJUUr58B17Fl4jq7JcKPBrOTbEbQVonQgo

To claim this, I am signing this object:

'use strict'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { Table, Menu, Icon, Segment, Input } from 'semantic-ui-react'
import capitalize from 'lodash/capitalize'
import flatten from 'lodash/flatten'
import orderBy from 'lodash/orderBy'
import debounce from 'lodash/debounce'
@fgbs
fgbs / DataTable.ts
Created November 28, 2017 16:52 — forked from cschmidli/DataTable.ts
Semantic UI Data Table Component
import * as React from 'react';
import * as hash from 'object-hash';
import {
TableProps,
Table,
TableBody,
TableCell,
TableFooter,
TableHeaderCell,
@fgbs
fgbs / DataTable.ts
Created November 28, 2017 16:52 — forked from cschmidli/DataTable.ts
Semantic UI Data Table Component
import * as React from 'react';
import * as hash from 'object-hash';
import {
TableProps,
Table,
TableBody,
TableCell,
TableFooter,
TableHeaderCell,
@fgbs
fgbs / gist:cbc1e805b5972b9f0a191413b5a74b85
Created December 24, 2016 03:49
java docker container
FROM fgbs/base
MAINTAINER Felipe Barros <felipe.barros@gmail.com>
# env's
ENV DEBIAN_FRONTEND noninteractive
ENV JAVA_HOME /usr/lib/jvm/java-8-oracle
# use oracle's java vm
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
apt-get update && \
@fgbs
fgbs / gist:f502ab2e8809d79e9db320e606cd4a36
Created December 24, 2016 03:48
base docker container
FROM phusion/baseimage:latest
MAINTAINER Felipe Barros <felipe.barros@gmail.com>
# env's
ENV DEBIAN_FRONTEND noninteractive
ENV TZ America/Santiago
# grab gosu for easy step-down from root
ENV GOSU_VERSION 1.9
RUN set -x \