Daily Weekly Monthly

Daily Shaarli

All links of one day in a single page.

June 18, 2015

phpmaster | PHP Sessions

comment gérer les sessions en PHP ?

[JAVA] How to convert List to Set (ArrayList to HashSet)

Convert List to Set

Set set = new HashSet(list);

Convert Set to List

List list = new ArrayList(set);