Batman animated and JL viewing order.
Canon 1:
- Batman: mask of Phantasm *
- Batman and Mr. Freeze: SubZero
- Batman: Mystery of Batwoman
Canon 2: If you plan to watch Justice league too then refer JL canon #2
- Son of Batman
- Batman vs Robin
Batman animated and JL viewing order.
Canon 1:
Canon 2: If you plan to watch Justice league too then refer JL canon #2
SRE/DevOps Challenge | |
Overview | |
This challenge will test the following skills: | |
Kubernetes orchestration | |
CI systems | |
REST APIs | |
Scripting | |
Monitoring | |
Allow at least 3 hours to complete each part. |
Hash: A message digest which is generated from a text and can't reproduce from a different text
Hashing: Producing message digest when given a text
- one input - one output
- can't reproduce input from output
- modidfing input means change in hash
Hashing funtion(Hash Algorithm): A function that can be used to map out data of random size to data of fixed size. Some hashing algorithms are MD4, SHA(Secure Hash Algorithm, SHA-1(160 Bits), SHA-2(256 Bits))
export const checkStatus = response => { | |
if ( | |
response.status >= 200 && | |
response.status < 300 | |
) { | |
return response; | |
} | |
return response.json().then(json => { | |
return Promise.reject({ | |
status: response.status, |
#hook for initializing react google analytics | |
useEffect(() => { | |
initGA(Config.googleTrackingGAID); | |
if ( | |
window.performance && | |
performance.navigation.type === performance.navigation.TYPE_NAVIGATE | |
) { | |
PageView(); | |
} | |
history.listen(location => { |
##Map Reduce
Map/Reduce Library partitions the input data into M pieces of typically 16-64 MB.
True.
If there are M partitions of the input, there are M map workers running simultaneously.
False. There are generally less worker nodes than partitions.