How to Write Secure Code http://ift.tt/1ivLWEy http://ift.tt/Mxm7uJ...

Please Visit: http://ift.tt/1ajReyV

How to Write Secure Code
http://ift.tt/1ivLWEy
http://ift.tt/2bicrV2


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/2f5Gi53
via LifeLong Community

Scalability Principles http://ift.tt/2eAmw17 http://ift.tt/gEA7C8...

Please Visit: http://ift.tt/1ajReyV



from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/2fsWmuJ
via LifeLong Community

headMap, tailMap, descendingMap, NavigableMap, SortedMap TreeMap

Please Visit: http://ift.tt/1ajReyV

headMap, tailMap, descendingMap, NavigableMap, SortedMap
TreeMap<Integer, Integer> map = new TreeMap<>();

map.put(1, 1);
map.put(2,2);
map.put(3,3);
map.put(4,4);

map.put(5,5);

final NavigableMap<Integer, Integer> headMap = ((NavigableMap<Integer, Integer>) map.headMap(3)).descendingMap();

for(Integer i: headMap.values())
{
System.out.println(i);
}

System.out.println("----");
for(Integer i: map.tailMap(3).values())
{
System.out.println(i);
}

SortedMap
NavigableMap extends SortedMap

NavigableMap:
NavigableMap<K,V> headMap(K toKey, boolean inclusive);
SortedMap<K,V> headMap(K toKey); // why not return NavigableMap?

public interface SortedMap<K,V> extends Map<K,V> {
SortedMap<K,V> headMap(K toKey);


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/2ejuf0b
via LifeLong Community

System Design - Learning from Existing Products http://ift.tt/2eg2ntC...

Please Visit: http://ift.tt/1ajReyV

System Design - Learning from Existing Products
http://ift.tt/2eDQke0
System Design - Summary
http://ift.tt/2eKdKwe
System Design - Learning from Open Source and the Internet
http://ift.tt/1LunkB7
System Design Practices
http://ift.tt/2dYrqkP


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/2fGxdRw
via LifeLong Community

Achieving Rapid Response Times in Large Online Services - Jeff Dean https://www.youtube.com/watch?v=...

Please Visit: http://ift.tt/1ajReyV

Achieving Rapid Response Times in Large Online Services - Jeff Dean
https://www.youtube.com/watch?v=1-3Ahy7Fxsc
http://ift.tt/1wOE0dO
http://ift.tt/YkqEU4


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/2ejPFxh
via LifeLong Community

Needle in a haystack: efficient storage of billions of photos http://ift.tt/1OTTZ1B...

Please Visit: http://ift.tt/1ajReyV

Needle in a haystack: efficient storage of billions of photos
http://ift.tt/1uworXL
http://ift.tt/2etgQTR


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/2etgBIz
via LifeLong Community