Be Me in Real Life

做自己,笑不羁

最近白嫖了Oracle的服务器,准备折腾玩一玩,第一件事就是先搭梯子。

刚开始用了https://github.com/V2RaySSR/Trojan这里的一键安装脚本,因为以前用这个在谷歌云服务器上成功搭建过,而且整个过程非常丝滑,没有遇到太大的问题。(现在推荐这个仓库https://github.com/atrandys/trojan的脚本,执行命令bash -c "$(curl -fsSL https://raw.githubusercontent.com/atrandys/trojan/master/trojan_mult.sh)"即可,后面我会讲原因)

没想到的是,这次的搭建成了我近2、3天噩梦的开始,遇到过无数问题。本来文章想起名叫搭建Trojan坑记,但是看到这么多问题,感觉还是用“”比较合适😅

阅读全文 »

Chapter 4:

Vulnerability holds weight only when it’s communicated unconditionally.

Chapter 7: The Three Fundamentals

Part III Honest Living

Chapter 8 Demographics

LifeStyle Choices

Age, Money and Looks

They do matter, but not equally significant for an individual.(Women
who tend to value only good looks tend to be women who have only good looks.)

The more money/successful/looks you have, the less attractive behavior you need. vice versa.

Race and the Foreigner Effect

Foreigner will have more polarization.

Chances are, minority women respond more to people who are the same race.

More controversial your races are, more polarization you will have. If you behave totally different from stereotypes, you will have the largest amount of attraction.

Social Proof

When we see many other people valuing something, we will unconsciously value it ourselves.

a sort of Scenario Confidence

阅读全文 »

开篇

“单词”的概念很模糊:

  1. 词族算一个还是多个词?

​ work;worked;working;worker;workman;…

  1. 复合词是否算新词?
  2. 同一个词,不同词性、含义是否算多个词?

以词族算,native speaker一般需要掌握17000-20000个单词

词汇量5000是个分水岭,分为2个阶段:

  • 5000内的单词使用频率高,词义多,重点在掌握不同含义,否则会造成哑巴英语
    • right是“对”,away是“远离”,right away 是“立即,马上”
    • air conditioner 和hair conditioner体现不同含义

这部分单词最核心的学习任务,是培养用这些英语单词进行思维的能力,只有这样才能实现流利的英语交流和具备优秀的阅读能力。

  • 5000以外的单词频率低,含义少,更适合死记硬背roting
阅读全文 »

下划线代表连读

C4T1S1

trips

travel

to arrange(不是tour range)

what are the times normally = whatar the times

fixed 不是fix,后面有一个停顿/小声音s或d

leave at 8:30 a.m. (吞音,发音leavet或leave a) 不是leave in、leaved

return at 6 p.m.(吞音,发音return a)

fairly(不是very

I saw it this morning(吞音it)

interested 不是interest,后面有一个停顿/小声音d或interesd(t吞音变d)

with full refund 不是which will refund

what visits are planned for this term?=what visit sr planned…

term不是town

I‘ve already = I forready

where’s the option visit= where the(注意是/ði/不是/ðə/)

well worth a visit(不是well worth visit it

thanks for all that = thank /θɔ/ that

have a word with my assistants

thank you very much for all your help= … foo your hel …

阅读全文 »

Common greeting

- Thank you!

  1. - You’re welcome.
  2. - No problem.
  3. - No worries.
  4. - Don’t mention it.
  5. - My pleasure.
  6. - Anytime.
  7. - It was the least I could do.
  8. - Glad to help.
阅读全文 »

为了减少切换线程的开支,提前创建好多个线程。

  • 空间换时间,浪费服务器的硬件资源,换取运行效率.
  • 池是一组资源的集合,这组资源在服务器启动之初就被完全创建好并初始化,这称为静态资源.
  • 当服务器进入正式运行阶段,开始处理客户请求的时候,如果它需要相关的资源,可以直接从池中获取,无需动态分配.
  • 当服务器处理完一个客户连接后,可以把相关的资源放回池中,无需执行系统调用释放资源.
阅读全文 »

1.目标

  1. 了解epoll反应堆设计思想
  2. 了解线程池思想以及能看懂线程池实现源码
  3. 掌握tcp和udp的优缺点和使用场景
  4. 说出udp服务器通信流程
  5. 说出udp客户端通信流程
  6. 独立实现udp服务器代码
  7. 独立实现udp客户端代码
  8. 熟练掌握本地套接字进行本地进程通信

本文整理自CSDN
C++基础知识归纳(1)-大厂必备八股文篇

const作用

常引用

常对象

常成员函数(调用限制:常对象->常成员函数->常成员函数)

extern和static(作用域限制)

运算符重载

单目运算符重载为?

双目重载为?

=、[]只能重载成员函数,<<、>>只能重载为友元函数。

(主要区别在于是否访问参数对象的private成员)

内存分配方式

栈、

堆、

全局静态区、

常量区、

代码区

阅读全文 »

服务器多种模式:

  • 阻塞循环(多进程、多线程)

  • 循环轮询

  • 多路I/O复用(转接)技术

    多路I/O复用(转接)主要有select和epoll。其中select是跨平台API,windows就是用这种;epoll高效但仅支持在linux下使用。

释义和不同技术的区别:

https://www.zhihu.com/question/32163005

IO 多路复用是什么意思?

阅读全文 »
0%