理解C++中引用的底层实现s # Type Safety in Programming Languages # Statically v. dynamically v. strongly v. weakly typed languages # Elixir in the Type System Quadrant
# Typing: dynamic vs. static and weak vs. strong—Programming fundamentals
what b = 100
value Type: store Direct value; a = b; a ddress-> [100]
reference Type: store Indirect value: address, offset…; a = b; a address-> [b address]
question:
reference type vs pointer type; reference type have many forms;reference type = {pointer Type, reference type}
关于人生的随想,想到什么写什么
大脑是一个程序 大脑和代码运行机制是一样的,都是根据输入产生输出:function(x)=y;
只是我们大脑这个程序是在不断升级中,对同一输入可能会有不同输出;
in 1990 f(x) =y1; in 2000 f(x) =y2; y1 != y1'
幸福没有最优解; 幸福的算法是否有最优解呢? 在同样硬件配置(物质精神条件)是有最优解,但现实中每个人硬件配置千差万别,酷睿i9上的幸福算法不适合奔腾486电脑上;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 function HappinessCaculate(event) { let HappinessValue = 100; // 长期幸福感受 let shortTermHappinessList = ["糖", "烟", "酒", "游戏", "性", "其他"] // 短期快乐但有害长期幸福 let LongTermHappinessList = ["学习", "锻炼", "工作", "其他"] // 有益于长期幸福 if (shortTermHappinessList.
ariticl state: TOOD
在整个繁杂的科学计算机, 是由一些基本的编程思想构建起来的, 编程思想,一个简单的定义就是
处理问题的方法论;
容器,微服务…各种牛逼技术日新月异,但各种技术最终追求的目标是一致的: 1. 更快; 2. 更强; 3. 更易维护拓展; 基于这些共同目标, 编程思想最终会殊途同归;
多路复用(multiplex)思想 是什么: 同时处理好几个任务(数据流);
如何做:
多个执行实体并行处理 多核操作系统; 负载均衡器(nginx) 单个执行体,并发处理, 任务流(数据流)切割成N个单位; 单核多线程 http2; strategy:
多个执行实体: 每个执行实体分配的机会 round-robin(轮询); 2. 单个执行实体: 每块任务流(数据流)权重 高内聚,低耦合;; 由面向对象编程首创,可以推广到微服务里;
expand/shrink strategy incremental: 递增的 use case: operation will block a long time absoulte: 全量 use case: operation won’t block a long time; convention over configuration; do less configuration;
decrase the developer’s decision;
time and space time: the amount of time it task
Addition using Bitwise Operations
float binary represent integer vs float
integer: for n>0 { n = n%2 }: Get remainder circularly 1: 00 00 00 00
float: for n>0{ n= GetFloatPart(n*2) }: get decimal circularly 0.75 : 0.11
float binary represent maybe ultimate; 0.1= (0.00011…0011)
IEEE 754 a standard for represent float value;
[sign 1bit][exponent 11bit][float 52bit]
a = (-1)^sign *2^(exponent-1023)(float);
2.1= 10.00011…0011 = (-1)^0 * 2^ 1024-1023)(00011..0011)
compare float
what is solve how to transimit data in a LAN, which work closely with pyhsical layer detail 1. divide data into ethernet frame 2. transmit data to the device through medium
Ethernet frame [ mac header 14 byte] [[source mac][target mac] [type]][payload] [checksum]
trasmission mtu max transmission unit; range: 64-1518bytes;
switch
Algebra 使用 符号代替 数字;x + 1 = 0; 研究如何解函数; Geometry 微积分 1. 数的类型; 实数 Real numbers
有理数 rational number: N/M;(理性的,无限循环) 无理数 irrational number: π,e(无限不循环) 虚数: imaginary number
不存在的数,我们的假想; √-1 = ±i;
set;