Tuesday, March 31, 2020

TV Brasil Online


https://aovivo.club/assistir-tv-globo-ao-vivo-online-gratis-hd/
http://detran-br.com/globo-sp/#opcao2


Thursday, March 26, 2020

python pybind11



 for run https://github.com/ilastik/marching_cubes, we need to install pybind11
 alternative to test https://github.com/pmneila/PyMCubes

# prerequisites 
apt-get install cmake
pip3 install pytest

# Clone and build
git clone https://github.com/pybind/pybind11.git 
cd pybind11 
mkdir build 
cd build 
cmake .. 
sudo make install 
 

Wednesday, March 25, 2020

Local port to public access


[0] serveo
[1] ngrok https://dashboard.ngrok.com

Alternatives
[1] ngrok alternatives and comparison https://www.softwaretestinghelp.com/ngrok-alternatives/

[2] https://www.reddit.com/r/webdev/comments/ca634r/alternatives_to_serveo_for_localhost_tunneling/

Coffee Rust





Based on Deep Learning

[1] Deep Learning for Classification and Severity Estimation of Coffee Leaf BioticStresshttps://arxiv.org/pdf/1907.11561.pdf



Datasets Coffee Rust
[1] Coffe leaves https://github.com/esgario/lara2018/tree/master/classifier
[2] https://www.digipathos-rep.cnptia.embrapa.br/

Monday, March 09, 2020

cmake force g++ gcc version to use



$cmake -DCMAKE_CXX_COMPILER=g++-8  -DCMAKE_CC_COMPILER=gcc-8 ..

This command affec to next variables into CMakeLists.txt file
CMAKE_CXX_COMPILER_VERSION
CMAKE_CXX_COMPILER_ID


#Next lines doesn't works for me on this time.

set(CMAKE_C_COMPILER /usr/bin/gcc-8)
set(CMAKE_CXX_COMPILER /usr/bin/g++-8)

Firefox open multiple private window

    /opt/firefox/firefox-bin --profile $(mktemp -d) --private-window www.google.com www.bing.com