This whitepaper provides a technical overview of how Ubuntu Core with full disk encryption and secure boot can be implemented in IoT devices to provide protection in data sensitive scenarios. #IoT#securitybit.ly/2TMg6ht#IoT#Security
Uber’s Observability team built a robust, scalable metrics and alerting pipeline to detect, mitigate, and notify engineers of issues as they occur. ubere.ng/2TuMmWw
Given a collection of Intervals,merge all the overlapping Intervals.
For example:
given [1,3], [2,6], [8,10], [15,18]
return [1,6], [8,10], [15,18]
#Google#interview#questionscodingpill.com
Coinbase system design interview:
Design a messaging application similar to Slack. It needs to support:
- direct messages between two or more participants
- channels
- notifications
- seen message indicators
- file sharing
#coinbase#engineering#system#design#interview
Implement the following interface
Cache {
set(key, value, timeout) {
// stores the (key, value) pair in the cache
// until timeout seconds have passed
}
get(key) {
// returns the value associated with the key
// if exists and is not expired.
}
}
#Google#onsite