This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
tools:context=".MainActivity"> | |
<Button | |
android:id="@+id/btProximo" |
This file contains 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
#! /usr/bin/env python3 | |
import cv2 | |
import numpy as np | |
from pathlib import Path | |
import argparse | |
############################################################################### | |
# CONSTANTS | |
DEBUG = False |
This file contains 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
# library | |
library(ggplot2) | |
# create a dataset | |
specie=c(rep("sorgho" , 3) , rep("poacee" , 3) , rep("banana" , 3) , rep("triticum" , 3) ) | |
condition=rep(c("normal" , "stress" , "Nitrogen") , 4) | |
value=abs(rnorm(12 , 0 , 15)) | |
data=data.frame(specie,condition,value) | |
# Grouped |
This file contains 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
CursoCpp: Setup do Ambiente | |
=== | |
> Link para este tutorial: [CursoCpp: Setup do Ambiente](https://stackedit.io/viewer#!url=https://gist.github.com/rbbernardino/26adae18ce8e2d31db906edb216f5495/raw/CursoCpp_Setup_do_Ambiente) | |
> Short url: **https://goo.gl/xDbbPx** | |
Introdução | |
----- | |
Criei esse documento para guiar vocês na configuração do sistema para escrever e compilar códigos C++ com Visual Studio Code e sincronizar com um repositório Git no BitBucket. | |
**Acessem a nossa pasta compartihada: https://goo.gl/KQ9uKY ** |