- O que são Progressive Web Apps?
- A selection of Progressive Web Apps
- Web Application Manifest Sample
- Web Starter Kit - a workflow for multi-device websites
- Web Starter Kit - a workflow for multi-device websites (Boilerplate)
- Your first Progressive Web App
- Progressive Web Apps: Escaping Tabs Without Losing Our Soul
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
package com.riofrotas.core.util; | |
import java.lang.reflect.Array; | |
import java.text.ParseException; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.Date; | |
import java.util.Iterator; | |
import java.util.LinkedHashSet; |
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.mkyong.com/hibernate/hibernate-criteria-examples/ | |
http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/querycriteria.html#querycriteria-narrowing | |
http://stackoverflow.com/questions/8895208/sqlalchemy-how-to-filter-date-field | |
http://stackoverflow.com/questions/9420418/hibernate-query-by-example-with-date | |
https://docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/filters.html | |
https://gist.github.com/davide-romanini/921328 | |
http://grepcode.com/file/[email protected][email protected]@org$hibernate$jpa$internal$EntityManagerFactoryImpl.java |
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
Spring + JSF | |
http://stackoverflow.com/questions/6827752/whats-the-difference-between-component-repository-service-annotations-in | |
https://www.mkyong.com/jsf2/jsf-2-0-spring-integration-example/ | |
https://papweb.wordpress.com/2011/07/29/spring-mvc-3-jsf-2-with-maven-2-and-tomcat/ | |
http://javabeat.net/spring-annotations-component/ | |
http://stackoverflow.com/questions/18387993/spring-jsf-integration-how-to-inject-a-spring-component-service-in-jsf-managed | |
http://www.mkyong.com/spring3/spring-3-and-jsr-330-inject-and-named-example/ | |
Spring Data | |
https://geowarin.github.io/using-spring-data-jpa-in-a-java-se-environment-and-run-tests-with-dbunit.html |
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
Spring security | |
http://projects.spring.io/spring-security/ | |
https://github.com/spring-projects/spring-security | |
Guides | |
http://docs.spring.io/spring-security/site/docs/current/guides/html5 | |
Reference | |
http://docs.spring.io/spring-security/site/docs/4.1.1.RELEASE/reference/htmlsingle/ |
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
headless x hexagonal x Ports & Adapters | |
https://css-tricks.com/learning-cope-microservices/ | |
http://fideloper.com/hexagonal-architecture | |
http://alistair.cockburn.us/Hexagonal+architecture | |
universal language (typically JSON). | |
programming x declarative grammar (json) | |
reactive functional | |
https://github.com/xgrommx/rx-book |
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 | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install software-properties-common -y | |
sudo apt-get install python-software-properties -y | |
sudo apt-get install build-essential -y |
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
http://stackoverflow.com/questions/14866228/combining-grid-search-and-cross-validation-in-scikit-learn | |
http://scikit-learn.org/stable/auto_examples/model_selection/grid_search_digits.html | |
http://scikit-learn.org/stable/modules/grid_search.html | |
http://machinelearningmastery.com/how-to-tune-algorithm-parameters-with-scikit-learn/ | |
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
http://www.astroml.org/sklearn_tutorial/index.html |
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
# Source from: http://sachithdhanushka.blogspot.com.br/2013/09/learning-curve-generator-for-learning.html | |
# http://scikit-learn.org/stable/auto_examples/model_selection/plot_validation_curve.html | |
# http://scikit-learn.org/stable/modules/learning_curve.html | |
# http://scikit-learn.org/stable/auto_examples/model_selection/plot_learning_curve.html | |
# http://scikit-learn.org/stable/modules/generated/sklearn.learning_curve.learning_curve.html#sklearn.learning_curve.learning_curve | |
# http://scikit-learn.org/stable/modules/learning_curve.html | |
# http://www.astroml.org/sklearn_tutorial/practical.html | |
# http://stats.stackexchange.com/questions/95797/how-to-split-the-dataset-for-cross-validation-learning-curve-and-final-evaluat | |
# https://github.com/fernandojunior/udacity-machine-learning-nanodegree/blob/master/projects/boston_housing/boston_housing.ipynb | |
from sklearn.naive_bayes import GaussianNB |