Your Coding Teacher
379 subscribers
10 links
Coding, software engineering & #bitcoin technologies. I'll make you a better thinker, not just a better developer | Ex
Amazon, Senior DevOps @eBay
Download Telegram
Some developers think that writing convoluted code makes them look smart.

Writing simple code that reads easily and is easy to understand is what takes real skill.
5 JavaScript interview questions

What is Scope?
What does the new keyword do?
What are the falsy values in JavaScript?
What is an IIFE, what is the use of it?
What's the value of this in JavaScript?
"Around computers it is difficult to find the correct unit of time to measure progress.
Some cathedrals took a century to complete.
Can you imagine the grandeur and scope of a program that would take as long?"
- Alan J. Perlis
"Smart" one-liners also have to be maintained
"Simplicity is a great virtue but it requires hard work to achieve it and education to appreciate it. And to make matters worse: complexity sells better."
- Edsger W. Dijkstra
4 JavaScript interview questions

What's the difference between var, let and const keywords?
What is the difference between Implicit and Explicit Coercion?
What is Object Destructuring?
What does "use strict" do?
Be accountable for your ideas

Especially the "good" ones
Containers 101

- Containers makes it easy to package and run an app in an isolated environment
- Docker is the most popular container engine
- Kubernetes (k8s) is used to orchestrate containers
- Some public clouds provide fully-managed k8s engines, like GKE or EKS
"It depends" is the answer to all good software engineering questions

The good software engineer should know on what it depends
Spin locks

- Thread synchronization mechanism
- Similar to mutex
- Instead of blocking by sleeping, the process is blocked by spinning (waits doing nothing) till it can acquire the lock
- Should be held only for short, since the CPU can't do anything else while it's waiting
4 Main NoSQL data models:

- Column: Tables, rows and flexible columns. Ex: Cassandra, HBase, DynamoDB
- Document: Semi-structured data. Ex: Linkedin profiles stored in MongoDB
- Key-value. Similar to a hash table. Ex: Redis, memcached
- Graph. Ex: Twitter follow in Neo4J
In a Linux filesystem, an inode is a data structure that stores information about a file: type, permissions, where in the disk the data is located, etc.

Inodes are identified by numbers in an inode table.
"Computer Science is no more about computers than astronomy is about telescopes"
- Edsger W. Dijkstra
Linear hashing is a hash table algorithm that permits incremental hash table expansion.
File descriptors are >= 0 integers that the kernel uses to identify the files that a process is accessing.

When a file is opened/created, the kernel returns a file descriptor, used to read/write the file.

Ex: ls > f.txt -> Redirect stdout (file descriptor 1) to a file
Unix pipes cheatsheet

a | bPipe: connect output from a to input of b
< redirect standard input from file

> redirect standard output to file
2> redirect standard error to file

>> append standard output to file
2>> append standard error to file
Why backend VS frontend?

Think of them as your primary and secondary strenghts

Combining of both is the most entrepreneurial

- HTML
- CSS
- JavaScript
- Python + Django
- MySQL/MongoDB
- Some Linux

You can launch full websites on your own with a stack similar to this.
PHP (Personal Homepage) developed by Rasmus Lu Dorf in 1995

It is mostly used in web development. WordPress is written in PHP

<!DOCTYPE html>
<html>
<body>

<h1>Example PHP page</h1>

<?php echo "Hello World!"; ?>

</body>
</html>
The execute permission bit for a directory is often called the search bit, because if you want to open a file by name, you need to have execute permission in each directory in the pathname, e.g. /home/username

This is different from read permission: list content of a directory
Similar GCP/AWS services

- Compute Engine ~ Elastic Compute Cloud
- Kubernetes Engine ~ Elastic Kubernetes/Container Service
- App Engine ~ Elastic Beanstalk
- Cloud Functions ~ Lambdas
Check if there's a root-to-leaf path such that the sum of all the along the path equals a given sum.

bool f(Node* r, int sum) {
if(!r) return false;
if(!r->left && !r->right && sum == r->val) return true;
return f(r->left, sum - r->val) || f(r->right, sum - r->val);
}