Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"| /** | |
| * Wix/react-native-calendars with drag and drop | |
| * created by: anthony lloveras | |
| * email: [email protected] | |
| */ | |
| import React, { useState } from 'react'; | |
| import faker from 'faker'; | |
| import { Calendar } from 'react-native-calendars'; | |
| import { |
| expo init $1 | |
| cd $1 | |
| yarn add @types/expo eslint eslint-config-react-native-wcandillon --dev | |
| mv App.js App.tsx | |
| curl -O https://gist.githubusercontent.com/wcandillon/10f40b913f1c63f357169b97473f9eb2/raw/45c677856ae512cbb8db41308de72d149fded5b4/tsconfig.json | |
| curl -O https://gist.githubusercontent.com/wcandillon/f734fb532bffec0abc436749dd46c4bf/raw/c33de2df4b4fb4dec0b6f44e6aa1ceb5d7004141/.eslintrc |
| // @flow | |
| type ResolvedScalar = string | number | boolean | null; | |
| type ResolvedValue = | |
| | ResolvedScalar | |
| | Array<ResolvedValue> | |
| | {[key: string]: ResolvedValue}; | |
| type ResolverFunction = (...args: Array<any>) => ResolvedValue; | |
| export type ResolverMap = { |
Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"| # this original one uses values returned from 'brew info' | |
| brew list --formula | xargs -n1 -P8 -I {} \ | |
| sh -c "brew info {} | egrep '[0-9]* files, ' | sed 's/^.*[0-9]* files, \(.*\)).*$/{} \1/'" | \ | |
| sort -h -r -k2 - | column -t | |
| # faster alternative using 'du' | |
| du -sch $(brew --cellar)/*/* | sed "s|$(brew --cellar)/\([^/]*\)/.*|\1|" | sort -k1h |
| package edu.marshall.genomics.lims.entities; | |
| import java.io.Externalizable; | |
| import java.io.IOException; | |
| import java.io.ObjectInput; | |
| import java.io.ObjectOutput; | |
| import javafx.beans.property.IntegerProperty; | |
| import javafx.beans.property.SimpleIntegerProperty; | |
| import javafx.beans.property.SimpleStringProperty; |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/persistence | |
| http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" | |
| version="1.0"> | |
| <!-- derby --> |
| alias ng="npm list -g --depth=0 2>/dev/null" | |
| alias nl="npm list --depth=0 2>/dev/null" |
| package br.com.triadworks.controller.relatorios.jasper; | |
| import java.io.ByteArrayOutputStream; | |
| import java.sql.Connection; | |
| import java.util.Map; | |
| import javax.sql.DataSource; | |
| import net.sf.jasperreports.engine.JRException; | |
| import net.sf.jasperreports.engine.JRExporter; | |
| import net.sf.jasperreports.engine.JRExporterParameter; | |
| import net.sf.jasperreports.engine.JasperCompileManager; |