Adonais's notebook


  • Home

  • About

  • Tags

  • Categories

  • Archives

  • Search

[System Design] Data Partitioning

Posted on 2019-07-26 | In System Design , Data Partitioning |
Data PartioningData partitioning is a technique to break up a big database (DB) into many smaller parts. It is the process of splitting up a DB/table ...
Read more »

ood-basic

Posted on 2019-07-25 | In Object-Oriented Design , Basic |
Read more »

[System Design] Distributed System & Load Balancing

Posted on 2019-07-23 | In System Design , Load Balancer |
Key CharacteristicSREAM ScalibilityHorizontal Scaling Horizontal scaling means that you scale by adding more servers into your pool of resources . Exa ...
Read more »

[System Design] CS 75

Posted on 2019-07-22 | In System Design , CS 75 |
Lecture 0 HTTPIP AddressIPV4: X.X.X.X, X is from 0-255, so there are 256 ^ 4 = (2^8)^4 = 2 ^ 32 IPV4 addresses in total. We’re running out of them. IP ...
Read more »

[Python] Functional Programming

Posted on 2019-06-26 | In Language , Python , Function |
Higher-order FunctionA function can use another functions as arguments. This type of function is called Higher-order function. 1234def add(x, y, f): ...
Read more »

[System Design] Overview

Posted on 2019-06-24 | In System Design , Overview |
Resources A hub Basic Interview Preparation Harvard Web App Scalability for Dummies System Design Template Introduction to Architecturing systems fo ...
Read more »

[Python] Algorithm

Posted on 2019-06-20 | In Language , Python , Algorithm |
Binary Searchbisect: https://docs.python.org/3/library/bisect.html. Support for maintaining a list in sorted order without having to sort the list aft ...
Read more »

[Python] Advanced features

Posted on 2019-06-20 | In Language , Python , Advanced Features |
Slicing12345L[:10:2] # 前10个数,每两个取一个# [0, 2, 4, 6, 8]L[::5] # 所有数,每5个取一个# [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95 ...
Read more »

[Python] Function

Posted on 2019-06-20 | In Language , Python , Function |
ArgumentsSomething to be noticed when using default arguments. 123def add_end(L=[]): L.append('END') return L 1234567891011>>> add_end( ...
Read more »

[Python] Data Structure

Posted on 2019-06-20 | In Language , Python , Data Structure |
List123456789101112# listmyList = [1, 2, 3, True, 2]myList.append(item)myList.insert(i, item)myList.pop()myList.pop(i)myList.sort()myList.reverse()del ...
Read more »
1…678…14

Adonais0

140 posts
131 categories
112 tags
GitHub Twitter
© 2024 Adonais0
Powered by Hexo
|
Theme — NexT.Mist v7.8.0