https://docs.google.com/document/d/1tJpXu53DKFWEhHHbOs7bkmCJ9q5m3VG40OqhoAppW5U/edit?usp=sharing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
#ifdef OJ | |
template <typename T> void __print(const T &x) { cerr << x; } | |
template <typename T, typename U> void __print(const pair<T,U> &x) { cerr << "("; __print(x.first); cerr << ", "; __print(x.second); cerr << ")"; } | |
template <typename T> void __print(const vector<T> &v) { cerr << "["; for (size_t i = 0; i < v.size(); ++i) __print(v[i]), cerr << (i+1==v.size()?"":", "); cerr << "]"; } | |
template <typename T> void __print(const vector<vector<T>> &v) { cerr << "[\n"; for (auto &r : v) cerr << " ", __print(r), cerr << "\n"; cerr << "]"; } | |
template <typename T> void __print(const set<T> &s) { cerr << "{"; for (auto it = s.begin(); it != s.end(); ++it) __print(*it), cerr << (next(it)==s.end()?"":", "); cerr << "}"; } | |
template <typename T> void __print(const unordered_set<T> &s) { __print(set<T>(s.begin(), s.end())); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Define some colors for better output | |
GREEN='\033[0;32m' | |
RED='\033[0;31m' | |
NC='\033[0m' # No Color | |
echo -e "${GREEN}Starting development environment setup...${NC}" | |
# 1. Update the package list |
There are a number of good introductory SQL resources available for free and online. There are also some paid resources which I recommend for beginners, that are very effective, and well worth expensing in my opinion.
A couple of notes:
- I haven’t used all of these resources, but they come with strong recommendations around the web or myself/my peers.
- You absolutely don’t need to use every single resource. Find a couple that work for you, and go to town.
- You can always reach out to me if you have questions. I always paste this online when people are new to asking very technical questions – it’s not meant to be snarky – it's a gentle guide on how to compose your questions and gather necessary resources in order to best give technical people the information needed to get a quick/effective response: http://www.mikeash.com/getting_answers.html
- The original Coursera
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 0; | |
font-family: Arial, sans-serif; | |
background-color: #1f1f1f; | |
color: #eee; | |
} | |
.app { | |
display: flex; | |
flex-direction: column; |
Video Link: Apache Kafka Crash Course | What is Kafka?
- Knowledge
- Node.JS Intermediate level
- Experience with designing distributed systems
- Tools
- Node.js: Download Node.JS
- Docker: Download Docker
- VsCode: Download VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fact(num): | |
if(num==0 or num==1): | |
return 1 | |
else: | |
return num*fact(num-1) | |
def nablaFunction(dataset__fx): | |
if(len(dataset__fx)==1): | |
return | |
iterations = len(dataset__fx) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.gradient-text { | |
background-image: linear-gradient(45deg, #ff00cc, #3333ff); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.freecodecamp.org/news/context-api-in-react/ |
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
Create free AWS Account at https://aws.amazon.com/
I would be creating a t2.medium ubuntu machine for this demo.
NewerOlder