Vue social login

Screenshot from 2019-10-09 01-00-27

Hi guys,

I started studying Vue.js a few weeks ago and I decided to build an opensource project to help other people to learn and learn with others that contribute to the project.

That is a simple project that has just two pages: login and home building with Vue.js, Bulma, FirebaseFirebase and PWA.

The login page is showing for the first time the user accesses the system and provides three authenticator mechanism. The user can log in with Google or Facebook accounts (Instagram is not working).

Once the user login the system will show the “home” with the user profile picture and name.

If you want to learn about or contribute with the project access the project on Github

You can also access the demo page here.

Thank you

Instalando Nodejs no Ubuntu

Para instalar o Nodejs no Ubuntu, primeiramente faça download do pacote em https://nodejs.org/download/.
Assim que o download for concluído, descompacte-o em um diretório desejado.
Em seguida iremos instalar algumas bibliotecas necessárias para a instalação do Nodejs, para isso execute o comando:

sudo apt-get install g++ curl libssl-dev apache2-utils

Continue reading “Instalando Nodejs no Ubuntu”

Android Studio no Ubuntu

Instalar o Android Studio no Ubuntu, é uma tarefa bem simples. Basta fazer download da ferramenta no link e descompactar o pacote no diretório de sua preferencia quando o download for concluído.

Logo em seguida, execute o o setup do Android Studio em: <local de instalação>/bin/studio.sh

Obs: Se durante a execução o erro “Unable to run mksdcard SDK tool” for obtido, execute o seguinte comando, para resolver:

Continue reading “Android Studio no Ubuntu”

Arduino Nano R3 no Ubuntu: Erro no upload do Sketch

Essa semana chegou o Arduino nano que acabei de comprar. E quando fui fazer o “hello world” (piscar led) para ver se estava tudo ok, obtive a seguinte mensagem de erro:

can’t open device “/dev/ttyUSB0”: Permission denied

Pesquisando, descobri que é preciso adicionar o usuário ao grupo “dialout” e dar permissão de leitura e escrita na porta.

Executei os seguintes comandos no terminal, e funcionou perfeitamente:

sudo adduser &lt;user name&gt; dialout
sudo chmod a+rw /dev/ttyUSB0

Installando Django no Ubuntu

Neste post iremos ver os passos para instalação de uns dos frameworks web mais populares do Python. Estou falando do Django. Obviamente, por ser um framework desenvolvido para a linguagem Python, ter o Python instalado é pré-requisito para a utilização do Django.

Como estamos falando de um passo a passo para instalação no sistema operacional Ubuntu, isto não é um problema, pois a maioria das distribuições Linux (para não dizer todas) já vem com o Python previamente instalada.

Para checar se o Python esta instalado/configurado corretamente em seu sistema execute o seguinte comando no terminal: Continue reading “Installando Django no Ubuntu”

A commum Angular error: “Module X is not available!”

This error often occurs when you declare a dependency on a module that Angular can’t locate it, whether by wrong module name or the module (JS file) not loaded.

Modulo “X” is not available!

These are the steps you must check if you got the error:

  1. Check if the file in which this module is define has been loaded (via <script src=”…”> for exemple);
  2. Check if the name of the module is declared correctly in: creation and dependencies files;

See also: https://docs.angularjs.org/error/$injector/nomod

Create a website or blog at WordPress.com

Up ↑