how to solve it - G. Polya http://ift.tt/1vg8hhi

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

how to solve it - G. Polya
http://ift.tt/1vg8hhi


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

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

http://ift.tt/2dWr7Ha

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/2fpBkkJ
via LifeLong Community

On Designing and Deploying Internet-Scale Services http://ift.tt/2efVBVB...

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

On Designing and Deploying Internet-Scale Services
http://ift.tt/1jCo5dt
http://ift.tt/2cQ7wxu


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

Eventually Consistent http://ift.tt/QOjN1a https:/...

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/2fjZUDA
via LifeLong Community

Gotchas with Scala Mutable Collections and Large Data Sets http://ift.tt/2edtK8x...

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

Gotchas with Scala Mutable Collections and Large Data Sets
http://ift.tt/2f9uG2S


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

Redis Cookbook http://ift.tt/2er7EBp http://ift.tt/1sFdzlp...

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/2ePDOtb
via LifeLong Community

Set different notification sound for some apps Most wanted features for Android - Some apps are most...

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

Set different notification sound for some apps
Most wanted features for Android

- Some apps are most important for users such as trading, messaging etc.


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

IDEA-162937 Show error/warnings in current window in editor's left side bar - match the line exactly...

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

IDEA-162937 Show error/warnings in current window in editor's left side bar - match the line exactly
http://ift.tt/2enOI6I


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

ConcurrentHashMap in Java 8 http://ift.tt/2e7dg4J...

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

ConcurrentHashMap in Java 8
http://ift.tt/2euM7GW
http://ift.tt/1EpUZCw
http://ift.tt/2euJPro

ConcurrentHashMap<String, MyClass> m =
new ConcurrentHashMap<String, MyClass>(8, 0.9f, 1);

public void mergeValue_jdk8(String word, int occurrence) {
wordMap.merge(word, occurrence, (key, value) -> wordMap.getOrDefault(key, 0) + value);
}

ConcurrentHashMap<String, Integer> wordMap = new ConcurrentHashMap<String, Integer>(16, 0.9f, 1);
wordMap.merge(word, occurrence, (key, value) -> wordMap.getOrDefault(key, 0) + value);
wordMap.reduceValues(1,(count1,count2) -> count1+count2);



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

Jackson JsonFilter http://ift.tt/2euMi4U http...

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/2e7bLTS
via LifeLong Community
Please Visit: http://ift.tt/1ajReyV

<T extends Comparable<? super T>> void sort( List<T> list )
http://ift.tt/2e9IjPr


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

Difference between extends and super In generic collections - get-put principle http://ift.tt/A9YG5h...

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

Difference between extends and super In generic collections
- get-put principle
http://ift.tt/2e2iVJH
http://ift.tt/U366RH



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

Jersey¹s Entity Filtering - only return fields clients need http://ift.tt/2e6P5Fr...

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

Jersey¹s Entity Filtering - only return fields clients need
http://ift.tt/1h5B0j3
http://ift.tt/1LOAokK
http://ift.tt/2ddtEfK


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

Data Consistency Primer http://ift.tt/1OcUnL4 https://cloudant.com/...

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/2dYSmC5
via LifeLong Community