YAML notes
- Superset of JSON. No literal tab for indentation. The indentation level can be one or more spaces.
- The difference between single quotes and double quotes is that in double quotes you can use escapes, i.e.,
\t
,\n
- YAML supports multiple documents, and compliant parsers will recognize each set of dashes as the beginning of a new one
- YAML documents in a stream may be preceded by ‘directives’ composed of a percent sign (%) followed by a name and space-delimited parameters
- Common to use JSON Schema to validate, e.g., patternProperties, additionalProperties, anyOf
--- # These dashes indicate the start of a new YAML document
key: value
boolean: true
single quotes: 'have ''one'' escape pattern'
# Notice that strings don't need to be quoted. However, they can be.
however: 'A string, enclosed in quotes.'
# Multiple-line strings can be written either as a 'literal block' (using |). This is particularly helpful when defining shell commands
# a 'folded block' (using '>'): all newlines will be replaced with a single space
literal_block: |
This entire block of text will be the value of the 'literal_block' key,
with line breaks being preserved.
The literal continues until de-dented, and the leading indentation is
stripped.
Any lines that are 'more-indented' keep the rest of their indentation -
these lines will be indented by 4 spaces.
# Sequences (equivalent to lists or arrays) look like this
# (note that the '-' counts as indentation):
a_sequence:
- Item 1
- Item 2
- 0.5 # sequences can contain disparate types.
- Item 4
- key: value
another_key: another_value
-
- This is a sequence
- inside another sequence
- - - Nested sequence indicators
- can be collapsed
# Since YAML is a superset of JSON, you can also write JSON-style maps and
# sequences:
json_map: {"key": "value"}
json_seq: [3, 2, 1, "takeoff"]
# YAML also has a handy feature called 'anchors', which let you easily duplicate
# content across your document. Both of these keys will have the same value:
anchored_content: &anchor_name This string will appear as the value of two keys.
other_anchor: *anchor_name
# Anchors can be used to duplicate/inherit properties
base: &base
name: Everyone has same name
# The regexp << is called Merge Key Language-Independent Type. It is used to
# indicate that all the keys of one or more specified maps should be inserted
# into the current map.
foo:
<<: *base
age: 10
# Strings and numbers aren't the only scalars that YAML can understand.
# ISO-formatted date and datetime literals are also parsed.
datetime: 2001-12-15T02:59:43.1Z
datetime_with_spaces: 2001-12-14 21:59:43.10 -5
date: 2002-12-14
# enforce a newline to be kept
fold_some_newlines: >
a
b
c
d
e
f
# enter nulls with a tilde or the unquoted null string literal.
foo: ~
bar: null
#To save the last character, add a plus to the fold or block operators.
# if the value ends with whitespace, like a newline, YAML will preserve it. To strip the character, use the strip operator.,i.e., - instead of +
bar: >+
this is not a normal string it
spans more than
one line
see?
d: !!float 123 # also a float via explicit data type prefixed by (!!)
e: !!str 123 # a string, disambiguated by explicit type
f: !!str Yes # a string via explicit type
Radical Candor Notes
- Challenging people is often the best way to show them that you care when you’re the boss. Caring personally about people even as you challenge them will build the best relationships of your career.
- Central difficulty of management: buidling a trusting relationship
- The emotional labor is not just part of the job; it’s the key to being a good boss
- “You need to do that in a way that does not call into question your confidence in their abilities but leaves not too much room for interpretation … and that’s a hard thing to do. I don’t mind being wrong. And I’ll admit that I’m wrong a lot. It doesn’t really matter to me too much. What matters to me is that we do the right thing.”
- Implicit with candor is that you’re simply offering your view of what’s going on and that you expect people to offer theirs. If it turns out that in fact you’re the one who got it wrong, you want to know
- You have to accept that sometimes people on your team will be mad at you. In fact, if nobody is ever mad at you, you probably aren’t challenging your team enough. The key, as in any relationship, is how you handle the anger. When what you say hurts, acknowledge the other person’s pain. Don’t pretend it doesn’t hurt or say it “shouldn’t” hurt—just show that you care. Eliminate the phrase “don’t take it personally” from your vocabulary—it’s insulting. Instead, offer to help fix the problem.
- The hardest part of building this trust is inviting people to challenge you, just as directly as you are challenging them.” You have to encourage them to challenge you directly enough that you may be the one who feels upset or angry.
- If we have the data about what works, let’s look at the data, but if all we have are opinions, let’s use yours.
- Challenging people directly takes real energy—not only from the people you’re challenging but from you as well. So do it only for things that really matter. A good rule of thumb for any relationship is to leave three unimportant things unsaid each day.
- I don’t have to spend a lot of time getting to know a person or building trust before offering Radically Candid guidance. In fact, a great way to get to know somebody and to build trust is to offer Radically Candid praise and criticism
- The secret to winning, he said, is to point out to great players what they could have done better, even when they have just won a game. Especially when they have just won a game.
- Start by asking for criticism, not by giving it. Don’t dish it out before you show you can take it
- If a person is bold enough to criticize you, do not critique their criticism. If you see somebody criticizing a peer inappropriately, say something. But if somebody criticizes you inappropriately, your job is to listen with the intent to understand and then to reward the candor. Just as important as soliciting criticism is encouraging it between your team members.
- The notion of a “right” ratio between praise and criticism is dangerous, because it can lead you to say things that are unnatural, insincere, or just plain ridiculous. Sandwich techique does not work well with experienced - may erode trust
- “Hey, Alex, your fly is down. I always appreciate when people point it out to me when I’ve done the same thing. I hope you don’t mind my mentioning it.”
- “Yes, and it was your job to convince me I was wrong and you failed!”
- Do not use someone else’s name or authority to get a point across.
- If, on the other hand, you can listen to the criticism and react well to it, both trust and respect will follow.
- One technique is to count to six before saying anything else, forcing them to endure the silence. The goal is not to be a bully but to insist on a candid discussion—to make it harder for the person to say nothing than to tell you what they’re thinking.”
- Remind yourself going in that no matter how unfair the criticism, your first job is to listen with the intent to understand, not to defend yourself.
- A common concern that people raise about giving feedback is “What if I’m wrong?” My answer is that you may very well be wrong. And telling somebody what you think gives them the opportunity to tell you if you are
- “situation behavior impact” to help leaders be more precise and therefore less arrogant when giving feedback. This simple technique reminds you to describe three things when giving feedback: 1) the situation you saw, 2) the behavior (i.e., what the person did, either good or bad), and 3) the impact you observed.
- impromptu guidance really, truly is something you can squeeze in between meetings in three minutes or less. If you give it right away in between meetings, you will not only save yourself a subsequent meeting but also deliver the guidance in less time than it would take you to schedule the subsequent meeting. And the quality of your guidance will be much better.
- When you try to soften the blow by saying, “Don’t take it personally,” you are in effect negating those feelings. It’s like saying, “Don’t be sad,” or “Don’t be mad.” Part of your job as a boss (and as a human being) is to acknowledge and deal with emotional responses, not to dismiss or avoid them
- In which Radical Candor trumps political BS is to never let one person on your team talk to you about another behind their back. It feels like you’re being empathetic to listen, but actually you’re just stirring the political pot. Instead, insist that they talk directly to each other, without you. Hopefully, they’ll work it out.
Ruby/Rails/Rspec keywords
Rspec
- xdescribe
- shared_examples
- expect { }.to raise_error
- it_behaves_like
- create_list
- raise_error
- expect_any_instance_of
- have_key
- be_nil
- be_successful
- include
- shared_context
Rake
- task
- TaskArguments.new
- Task[].execute
Rails
- ”«-SQL” block
- around_action/before_action
ActiveRecord
- .connection.execute
- .update!
- .find_by
- .pluck
Ruby
- raise/rescue
- .to_i
- .uniq
- .present?
- .nil?
- .blank?
- .to_h
- .deep_symbolize_keys
- .map(&:func)
- .map(&:to_sym)
- .merge
- .with_indifferent_access
def print_phrase(&block)
block.call
end
# the methods in ruby can take only one block
print_phrase { puts "Hello from block!" }
def print_phrase(amount, &block)
amount.times.each do |x|
yield
end
end
def print_phrase
puts yield
end
print_phrase { "Example phrase" }
On CSS Flexbox
- The flexbox layout is direction-agnostic as opposed to the regular layouts (block which is vertically-based and inline which is horizontally-based).
- Flexbox layout is most appropriate to the components of an application, and small-scale layouts, while the Grid layout is intended for larger scale layouts.
- Replaces float and positioning in most cases
Concepts
- main axis: The main axis of a flex container is the primary axis along which flex items are laid out. Beware, it is not necessarily horizontal; it depends on the flex-direction property
- main size: A flex item’s width or height, whichever is in the main dimension, is the item’s main size. The flex item’s main size property is either the ‘width’ or ‘height’ property, whichever is in the main dimension.
- main-start and main-end: The flex items are placed within the container starting from main-start and going to main-end.
- Similar properties for “cross” instead of “main”
Properties for the Parent (flex container)
- display: This defines a flex container; inline or block depending on the given value. It enables a flex context for all its direct children,i.e., display: flex;
- flex-direction: This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Default: row
- flex-wrap: By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property.
- nowrap (default): all flex items will be on one line
- wrap: flex items will wrap onto multiple lines, from top to bottom.
- justify-content
- flex-start (default): items are packed toward the start of the flex-direction
- left: items are packed toward left edge of the container, unless that doesn’t make sense with the flex-direction, then it behaves like start.
- start: items are packed toward the start of the writing-mode direction.
- center: items are centered along the line
- space-between: items are evenly distributed in the line; first item is on the start line, last item on the end line
- space-around:
- space-evenly: items are distributed so that the spacing between any two items (and the space to the edges) is equal.
- align-items: This defines the default behavior for how flex items are laid out along the cross axis on the current line. Think of it as the justify-content version for the cross-axis (perpendicular to the main-axis).
- align-content: This aligns a flex container’s lines within when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis.
Properties for the Children (flex items)
- flex-shrink: by default will allow item to shrink when the container is nowrap and cannot fit items on a single line
- flex-basis: auto — in this case the browser looks to see if the items have a size. If the items don’t have a size then the content’s size is used as the flex-basis
- flex-grow: flex items can grow along the main axis from their flex-basis. This will cause the item to stretch and take up any available space on that axis, or a proportion of the available space if other items are allowed to grow too.
- flex: This is the shorthand for flex-grow, flex-shrink and flex-basis combined. Most common format you will see
- Setting flex: initial resets the item to the initial values of Flexbox. This is the same as flex: 0 1 auto. In this case the value of flex-grow is 0, so items will not grow larger than their flex-basis size. The value of flex-shrink is 1, so items can shrink if they need to rather than overflowing. The value of flex-basis is auto. Items will either use any size set on the item in the main dimension, or they will get their size from the content size.
- Using flex: auto is the same as using flex: 1 1 auto; everything is as with flex:initial but in this case the items can grow and fill the container as well as shrink if required.
- Using flex: none will create fully inflexible flex items. It is as if you wrote flex: 0 0 auto. The items cannot grow or shrink but will be laid out using flexbox with a flex-basis of auto.
React/JS notes
useMemo
Motification: cache the expesive computation executed at rendering. Note that it is still a function at rendering time, so starndard limitations, e.g., side-effect, apply
Reduce re-rendering
cache the funcational component, so that when the parent components changes but the props to the child remains same, we useMemo
on the child so it does not re-render in this case. Note comparing the props is by reference only
However, if the prop has a callback function passed in, most likely, this function will be regenerated when the parent re-rendered (even with the the same params). In this case, we can put the callback in the useCallback
to prevent child re-rendering
How does react render works when the state changes
When render
is called, it returns a new virtual DOM. We compute which real dom is changed by diffing the virutal dom recursively (tag, data, and children properties), mark the changed node as dirty, and then render the real dom
Async-await
- On seeing
await
, the control will be yielded back to the caller ofawait
. Without await, async will run synchrounously - Async functions always return a promise. If the return value of an async function is not explicitly a promise, it will be implicitly wrapped in a promise.
Context
Motiviation: share global data amount component tree nodes
If you only want to avoid passing some props through many levels, component composition is often a simpler solution than context, but moving more complexity higher in the tree makes those higher-level components more complicated and forces the lower-level components to be more flexible than you may want.
React.createContext: When React renders a component that subscribes to this Context object it will read the current context value from the closest matching Provider above it in the tree.
The defaultValue argument is only used when a component does not have a matching Provider above it in the tree. This default value can be helpful for testing components in isolation without wrapping them.
useEffect
Common side effects
- Mutations
- subscriptions
- timers
- logging
- async tasks. By definition, this should/does not block the browser from updating the screen
The function passed to useEffect is going to be different on every render. This is intentional. In fact, this is what lets us read the count value from inside the effect without worrying about it getting stale. Every time we re-render, we schedule a different effect, replacing the previous one.
JS keywords
- Window.localStorage
Good company cultures I can reuse
Amazon’s Leadership Principles
- Although leaders pay attention to competitors, they obsess over customers
- They act on behalf of the entire company, beyond just their own team. They never say “that’s not my job.”
- As we do new things, we accept that we may be misunderstood for long periods of time.
- They seek diverse perspectives and work to disconfirm their beliefs.
- Many decisions and actions are reversible and do not need extensive study. We value calculated risk taking.
- They are vocally self-critical, even when doing so is awkward or embarrassing
- are skeptical when metrics and anecdote differ. No task is beneath them
Netflix Culture
- You only say things about fellow employees you say to their face
- We have no bell curves or rankings or quotas such as “cut the bottom 10% every year.” That would be detrimental to fostering collaboration, and is a simplistic, rules-based approach we would never support. We focus on managers’ judgment through the “keeper test” for each of their people: if one of the members of the team was thinking of leaving for another firm, would the manager try hard to keep them from leaving? Those who do not pass the keeper test (i.e. their manager would not fight to keep them) are promptly and respectfully given a generous severance package so we can find someone for that position that makes us an even better dream team
- Ultimately, your economic security is based on your skills and reputation, not on your seniority at one company. At Netflix, you learn a lot working on hard problems with amazing colleagues, and what you learn increases your market value. Knowing that other companies would quickly hire you if you left Netflix is comforting. We see occasional outside interviewing as healthy, and encourage employees to talk with their managers about what they learn in the process.
- Picking up the trash is the metaphor for taking care of problems, small and large, and never thinking “that’s not my job.” We don’t have rules about picking up the real or metaphoric trash. We try to create a sense of ownership so that this behavior comes naturally.
Sorted set problems
Example problems
On bridge and cut vertices
Example problems
- Redundant Connection
- Critical Connections in a Network
-
- Redundant Connection II
On Eulerian path/cycle
Example problems
On elevator pitch
Dos and don’ts
- Goal is to attract more attenion, not convincing people to hire you upfront
- Around 30 secs ~ 80 words. No need to recap the entire history. Focus on what matters most
- SLOW DOWN. To fix it, record your speech, but avoid the trap of over-practice. That makes it sound unnatural
- Structure
- Who you are, and your background
- What you do, and your unique selling propostition, i.e., what can you bring to the team
- What you want to do/Your goals. What you are looking for
- Omit negative/dislike areas
- Use terms based on target audience. Use different pitches for different audiences
My technical elevator pitch
As a backend engineer, I have architected and maintained systems that serve > 20m users and > 1k TPS. I was part of the team that build the leading payment app in Japan from the very beginning, and my code processes billions of dollars each month. I am also the system architect that increased the throughput of this app by a factor of 3. I am excited to work with top engineers to deliver new impacts in the fintech domain or with high traffic systems.
How to answer behavioral questions
STAR Method
- One or two sentences per STAR. Easy to have too long/detailed answers when you are stressed
- 45-60 secs/120-150 words answer. Too short it doesn’t cover enough details. Too long it becomes rambling
- After the high level STAR, ask the interviewer if need to provide more details
- Situtation: Scene and details of example. Make things as measurable as possible, as the interviewer lacks the context of your mind image.
- Task/Goal/Role: your role/job/goal in the situation. Don’t mistake this for Action
- Action: What YOU did to achieve the goal. Not what YOUR TEAM did, or what you WOULD do.
- Result: need to emphaize on the (ideally measurable) impact of your action. Often this was not done enough by candidates
- Focus on facts and avoid comment/conclusions. If you really need to include comment/conclusions, use the eval from the third party, not yourself.
Tell me about a time you took a risk and failed.
- Defind failure definition upfront: not meeting expectation/goal/highest standards(maybe)
- Try not to spend too much time setting the stage, and get to the punch line quickly
- Start with the situation, and explain why it was challenging. Then go into what you specifically did to try and rectify it
- Wrap up with your lessons learned, ideally with postive impacts of this learning to future events
Tell me about a mistake you’ve made.
- How did you handle it?
Tell me a time where you disagreed with your manager
- Disagree and commit. the bulk of your answer should be talking about how you delivered successfully in spite of not being on board with the initial decision
- Decision was made after conflict, doesn’t matter which side won
- Be clear about what you don’t agree with and offer alternatives
- When I disagree and was wrong, it is because of unknown unkowns. Known unkowns would mean i didn’t do due diligence
- Would be nice to define “right/wrong” but probably too much detail to cover in 1 min
Describe a time when you struggled to build a relationship with someone important.
- How did you eventually overcome that?
Tell me about a time you were under a lot of pressure.
- What was going on, and how did you get through it?
Give me an example of a time when you were able to successfully persuade someone to see things your way at work.
Describe a time when you saw some problem and took the initiative to correct it rather than waiting for someone else to do it.
Tell me a time you had received a negative feedback
- Explain a situation where you improved your performance after receiving constructive criticism.
- Talk about how you listened and made changes when a boss or client critiqued your work.
- It can also be insightful to describe a time when your work was unfairly criticized, and how you were able to rebuff the criticism without making anyone look bad.
- Do not make the mistake of going into excessive detail about any work slip-ups—instead, focus on your positive reaction to criticism.
Editorial: LC premium set 4
Good for whiteboarding
- 1246. Palindrome Removal
- Sliding Puzzle
- Shortest Common Supersequence
- Pour Water
- Shortest Way to Form String
- Design In-Memory File System
- Palindrome Pairs
- Recover a Tree From Preorder Traversal
- Count Different Palindromic Subsequences
Word Squares
- Brute force TLE
Max Chunks To Make Sorted II
- My gut feeling was incorrect
Critical Connections in a Network
- What if we want to find articulation points?
Cherry Pickup
- Took me too long
String Transforms Into Another String
- Multiple attempts
Editorial: LC premium set 3
Good for whiteboarding
- 1059. All Paths from Source Lead to Destination
- Stepping Numbers
- Minimum Window Subsequence
- Lowest Common Ancestor of a Binary Tree IV
Campus Bikes II
- Backtracking gives TLE
Binary Tree Vertical Order Traversal
- O(n) time
Minimum Knight Moves
- Optimization condition
Verify Preorder Sequence in Binary Search Tree
- O(1) extra space
Number Of Corner Rectangles
- My gut feeling gives TLE
IP to CIDR
- Took me too long
Editorial: LC premium set 2
Good for whiteboarding
- Longest Line of Consecutive One in Matrix
- Mutliple solutions
- Bomb Enemy
- Closest Binary Search Tree Value II
- Add Bold Tag in String
- 3Sum Smaller
- Insert into a Sorted Circular Linked List
- Binary Tree Longest Consecutive Sequence II
Rearrange String k Distance Apart
- Took me too long
LFU Cache
- Solve it with LL
Check If a String Is a Valid Sequence from Root to Leaves Path in a Binary Tree
- My optimization was wrong
Candy Crush
- Official solution is cleaner than mine
Tree Diameter
- Multiple solutions
Editorial: LC premium set 1
Good for whiteboarding
On FFT
Original video
- Eval a polynomical A(x) at x0 : Horner’s rule
- Mutlply two polys:
- Closed form at O(n^2) naively -> O(nlogn) possible
- Equivalent to convolution of vectors A * reverse(B) - inner products of all possible shifts
- Poly representations:
- Samples for n points with all distince xs.
- Convert between this and coefficient form in O(nlogn)
- Sampling n points takes O(n^2) in total
- A sequence of n roots
- Samples for n points with all distince xs.
- Eval A(x) for x in X: D&C by even/odd i
- A(x) = A_even(x^2) + x * A_odd(x^2)
- Derive the recursion and cost => draw the recursion tree and we see it is still n^2
- Square a number on the unit circle on the complex plane
- FFT is the d&c algo for DFT (coefficent to sample form)
- Fast poly multiplicatin: FFT(A) * FFA(B) and then do inverse FFT
- Similar techique
Editorial: Coding set 18
Good for whiteboarding
- Number of Sets of K Non-Overlapping Line Segments
- Repeated String Match
- Spiral Matrix III
- Find And Replace in String
- Online Election
- Previous Permutation With One Swap
- Minimum Number of Days to Make m Bouquets
- Vowel Spellchecker
- Number of Nodes in the Sub-Tree With the Same Label
Check If Word Is Valid After Substitutions
- First attempt TLE
Mini Parser
- Corner cases
Stamping The Sequence
- My optimization was wrong
Largest Merge Of Two Strings
- My optimization was wrong
Remove Zero Sum Consecutive Nodes from Linked List
Editorial: Coding set 17
Good for whiteboarding
- Maximum XOR of Two Numbers in an Array
- Map Sum Pairs
- Find the Longest Substring Containing Vowels in Even Counts
- Diagonal Traverse II
- Remove Sub-Folders from the Filesystem
- Course Schedule IV
- Number of Subsequences That Satisfy the Given Sum Condition
- Search Suggestions System
- Number of Good Leaf Nodes Pairs
- Maximum Score from Performing Multiplication Operations
- Correct a Binary Tree
Shopping Offers
- First attempt TLE
Maximum Number of Events That Can Be Attended
- My gut feeling was wrong
Shortest Unsorted Continuous Subarray
- First attempt WA
Path with Maximum Probability
- First attempt TLE
Editorial: Coding set 16
Good for whiteboarding
- Sequential Digits
- Stone Game II
- Maximum Subarray Sum with One Deletion
- 1202. Smallest String With Swaps
- Reverse Substrings Between Each Pair of Parentheses
- Greatest Sum Divisible by Three
- Count Number of Nice Subarrays
- Most Profit Assigning Work
- Minimum Cost Tree From Leaf Values
- Filling Bookcase Shelves
- Delete Columns to Make Sorted II
- 3Sum With Multiplicity
Can I Win
- My algo was wrong
Most Stones Removed with Same Row or Column
- How to prove it works?
[Number of Closed Islands] (https://leetcode.com/submissions/detail/403350247/)
- My optimization was wrong
Editorial: Coding set 15
Good for whiteboarding
- Find Eventual Safe States
- Insert Interval
- Regions Cut By Slashes
- Convert to Base -2
- 935. Knight Dialer
- Guess Number Higher or Lower II
- Adding Two Negabinary Numbers
- 1296. Divide Array in Sets of K Consecutive Numbers
Minimum Area Rectangle
- First attempt got TLE
- Multiple solutions
Last Stone Weight II
- My gut feeling was wrong
1124. Longest Well-Performing Interval
- My algo was wrong