-
Kapoor, A. (2019). Hands-on artificial intelligence for IoT: Expert machine learning and deep learning techniques for developing smarter IoT systems. Packt Publishing.
-
Minteer, A. (2017). Analytics for the Internet of Things (IoT): Intelligent analytics for your intelligent devices. Packt Publishing.
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
https://www.sympla.com.br/curso-de-inteligencia-artificial---school-of-ai-de-sao-paulo-040619-as-1830h__542758 |
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
alias ls="ls -G" | |
alias grep="grep --colour=auto" | |
git_status() { | |
untracked=$(git status | grep 'Untracked files' 2> /dev/null) | |
if [ -n "$untracked" ]; then | |
echo "☠" | |
else |
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
settings: -> | |
content: | |
text: @actions_content() | |
title: | |
text: " " | |
button: "×" | |
position: | |
my: "right center" | |
at: "left center" | |
show: |
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
describe "User acessing website", """ | |
In order to easy accessing process | |
As a user | |
I can use my facebook account to connect to the website""" do | |
context "When a user doesn't have a go2doc account" do | |
context "Acessing the registration process with facebook" do | |
before do | |
visit root_path | |
click_link "Facebook-login" |
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
Doctors update profile | |
In order to have an up to date public profile | |
As a doctor | |
I should be able to update my profile information | |
When a registered doctor login and access the edit profile page | |
and change his name, the name should be updated | |
and change his photo, the photo should be updated | |
and change his photo to a bigger than 2mb, the photo should not be changed | |
and change his password, the login authentication should work | |
and change his e-mail, the user e-mail should be changed too |
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
require 'rubygems' | |
require 'spork' | |
Spork.prefork do | |
# This file is copied to spec/ when you run 'rails generate rspec:install' | |
ENV["RAILS_ENV"] ||= 'test' | |
require File.expand_path("../../config/environment", __FILE__) | |
require 'rspec/rails' | |
require 'rspec/autorun' |
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
#!/bin/bash -x | |
# All grails versions are under /opt/ | |
# The directory /opt/grails is a symbolic link to some of the grails instalations | |
# GRAILS_HOME and PATH are configured to /opt/grails | |
# | |
# Then, the magic is only replacing the grails link dir to the one you want: | |
# | |
# $> use-grails 1.3.3 |