Skip to content

Instantly share code, notes, and snippets.

View fcavalcantirj's full-sized avatar

Felipe Cavalcanti fcavalcantirj

  • Rio de Janeiro, RJ
View GitHub Profile
@fcavalcantirj
fcavalcantirj / copyAndRename.bat
Created March 14, 2018 18:34
Simple batch file to copy folder (with subfolders) and it's content's to another location!!! Windows version
@ECHO OFF
title Copiar arquivos de uma pasta para outra pasta, renomeando
SET FROM="C:\Users\meta\Documents\Georgea"
SET TO="C:\Users\meta\Documents\Felipe"
echo copiando arquivos da origem %FROM% para %TO%
echo d | xcopy C:\Users\meta\Documents\Georgea C:\Users\meta\Documents\Felipe /e /y /f
pause
@fcavalcantirj
fcavalcantirj / kmzToKmL.sh
Last active May 15, 2017 21:54
Bash Script that takes series of kmz files and convert to shapeFiles using ogr2ogr lib.
#!/bin/bash
#******************************************************************************
#
# Name: kmzToKmL.sh
# Project: fretamento
# Purpose: Convert series of kmz files into shapeFiles
# Author: FCavalcanti, BraveInvestments
# Requirements: Make sure ogr2ogr is installed and available on path
# Usage: chmod +x kmzToKmL.sh && ./kmzToKmL.sh
admin
1 cria empresas (brave)
2 cria frota (n brave)
cria vehículos / linhas / trajetos / viagens
3 cria schedule (n brave)
um motorista vai operar um vehículo de uma linha (trajeto e viagem pré definidos)
4 cria grupos (n brave)
ּ_בּ
בּ_בּ
טּ_טּ
כּ‗כּ
לּ_לּ
מּ_מּ
סּ_סּ
תּ_תּ
٩(×̯×)۶
٩(̾●̮̮̃̾•̃̾)۶
/**
* Copyright 2013-2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule invariant
*/
import CountDownClock from 'react-countdown-clock'
import { emit } from '../garupa'
const {createClass, createFactory} = React
const {div} = React.DOM
const countDownTimer = createFactory(CountDownClock)
const CountDownTimer = createClass({
displayName: 'CountDownTimer',