Linux Kernel overview and useful links
Linux Kernel overview Useful Links Kernel archives page. Kernel source on github.
Read more...
Angular1.X user forgot password flow using REST API
Forgot password flow using angularJS and Java People usually have a lot of different passwords for a lot of different websites and online services, forgetting a password is a very common thing and almost every...
Read more...
maven - On build Exclude specific folders from being packaged on a WAR file
How to avoid packaging unwanted folders on a java WAR file You must use the maven-war plugin to enable this feature: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>testAppWebParent</artifactId> <groupId>io.guilhebl.test</groupId> <version>1.0.0</version> <relativePath>../testAppWebParent/pom.xml</relativePath> </parent> <artifactId>testApp</artifactId> <packaging>war</packaging>...
Read more...
How to write a good resume 1. Be objective Recruiters don't have all day to read huge texts or huge resumes, probably they're dealing with tons of resumes per day and eventually will have to...
Read more...
Integrating angularjs and jquery with requirejs
index.html First of all, in your index page, you will have to load requireJS script and point it your main configuration file like: <!--requireJS --> <script data-main="js/main" src="lib/requirejs/require.js"></script> after that its time to configure requireJS...
Read more...
Typical Database model domain for User
SQL scripts A typical User domain model must have a clean separation between each table and what they're supposed to store according to each table's entity responsibility. It is not really good to have the...
Read more...
How to get a Date in the Future in Java
How to get Date in Future In java the best way to get date in future is using Calendar object from java SE API: Calendar calendar = Calendar.getInstance(); Date now = calendar.getTime(); calendar.add(Calendar.DATE, 30); Date...
Read more...
Concept of Lambda expressions Lambda expressions enable you to treat functionality as method argument, or code as data. in this post we're using an example of using Lambda expression in order to define a standard...
Read more...