This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| ci = commit | |
| co = checkout | |
| cm = checkout master | |
| cb = checkout -b | |
| st = status -sb | |
| sf = show --name-only | |
| lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30 | |
| incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u}) | |
| outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| clear all; clc; | |
| % --------- Parâmetros do usuário | |
| fileName = 'Ensaio 1.txt'; | |
| timeRange = [0, 3]; | |
| acceptableError = 0.01; | |
| data = readtable(fileName, 'ReadVariableNames', true, 'Delimiter', 'tab'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package equipe.protheus.guiderobot.utils; | |
| import android.app.Activity; | |
| import android.os.Build; | |
| import android.os.Bundle; | |
| import android.os.CountDownTimer; | |
| import android.speech.tts.TextToSpeech; | |
| import android.speech.tts.UtteranceProgressListener; | |
| import android.support.annotation.NonNull; | |
| import android.util.Log; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package equipe.protheus.guiderobot.utils; | |
| import android.content.Context; | |
| import android.view.GestureDetector; | |
| import android.view.MotionEvent; | |
| import android.view.View; | |
| /** | |
| * Created by Asafe on 14/04/2017. | |
| */ |