jueves, 27 de enero de 2022

Generate gRPC client for dart (flutter) with protoc-gen-dart on macOS

 First: install flutter

Second: install the protoc-gen-dart plugin

dart pub global activate protoc_plugin


Third: Add symlink to dart cache dir in bin

dart pub global activate protoc_plugin


The protoc-gen-dart must be in the following path:

$HOME/.pub-cache/bin/protoc-gen-dart

You need to add the compiler to path

export PATH="${PATH}:${HOME}/.pub-cache/bin"

miércoles, 22 de septiembre de 2021

SonarQube mac installation

1- Run:

brew install sonar

brew install sonar-scanner


Add to bash_profile

nano  ~/.bash_profile

And paste:

export SONAR_VERSION=4.6.2.2472_1

export SONAR_HOME="/usr/local/Cellar/sonar-scanner/${SONAR_VERSION}/libexec"

export SONAR="${SONAR_HOME}/bin"

export PATH="${SONAR}:${PATH}"



launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.sonarqube.plist


http://localhost:9000

miércoles, 14 de julio de 2021

Download any apk from play store

He probado trés páginas y esta es la mejor

 https://androidappsapk.co/

https://m.apkpure.com/es/apkpure/com.apkpure.aegon

https://apps.evozi.com/apk-downloader

martes, 27 de abril de 2021