2025-08-31
要提高超出,第一要培训,让大家成为大佬;第二要激励,要给钱。
脑力劳动不是工厂流水线,设定 kpi 就能搞定,绩效的评定指标和效用没有那么明显。
2025-08-30
chatgpt 是什么时候流行的,感觉现在的大模型满天飞
Anthropic PBC is an American artificial intelligence (AI) startup company founded in 2021. Anthropic has developed a family of large language models (LLMs) named Claude. According to the company, it researches and develops AI to “study their safety properties at the technological frontier” and use this research to deploy safe models for the public.[5][6]
Anthropic was founded by former members of OpenAI, including siblings Daniela Amodei and Dario Amodei.[7] In September 2023, Amazon announced an investment of up to $4 billion, followed by a $2 billion commitment from Google in the following month.
2025-08-29
短短几句话,讲了一个很悲伤的故事
Eric A. Meyer has been working with the web since late 1993 and is an internationally recognized expert on the subjects of HTML, CSS, and web standards. A widely read author, he was technical lead at Rebecca’s Gift, a 501(c)(3) non-profit organization dedicated to providing healing family vacations after the death of a child; and was, along with Jeffrey Zeldman, co-founder of the web conference series An Event Apart (2005–2021).
https://meyerweb.com/eric/
2025-08-27
穿“低胸装”的女孩子喜欢“手捂胸口”到底有没有毛病?
动不动捂胸口,搞得大家很尴尬。
https://news.qq.com/rain/a/20250212A06F8F00
2025-08-26
要懂 simd 要看什么书籍?
SIMD (pronounced “sim-dee”) is short for Single Instruction/Multiple Data which is one classification of computer architectures. SIMD allows one same operation to be performed on multiple data points resulting in data level parallelism and thus performance gains — for example, for 3D graphics and video processing, physics simulations or cryptography, and other domains.
https://developer.mozilla.org/en-US/docs/Glossary/SIMD
2025-08-17
我们有一个数组 ` [5,1,6] `,我们要生成所有的子组合 ` [ [ 5 ], [ 5, 1 ], [ 5, 1, 6 ], [ 5, 6 ], [ 1 ], [ 1, 6 ], [ 6 ] ] `,针对任意数组,该如何求出它的所有子组合呢?
标题:想了一个简单的面试题
内容来自曾小乱的blog:https://zengyuxin.com/i-came-up-with-a-simple-interview-question/
2025-08-16
金庸说贾宝玉的性对象比韦小宝多,经过我的研究,曹雪芹写明的只有袭人一个,可见金庸之胡诌
2025-08-15
duff device
达夫设备设备是一段非常巧妙,看起来非常诡异的c代码,它可以很大的提高程序执行的效率(本文将试验),达夫设备的来源我就不说了,我们来分析一下。
达夫设备是考虑到我们一般用for或者while循环的时候,如果执行循环内容本身用不了多少时间,那么时间将被主要消耗在每次循环的比较语句上边。
事实上比较语句是有很大优化空间的,假设你要循环1000次,结果你从第一次开始就不断的比较是否达到上界,这是很徒劳的。
达夫这个哥们利用了switch语句的跌落行为设计了达夫设备。
https://www.cnblogs.com/zhangte/p/5185530.html
2025-08-14
2025-08-10
这个优先队列使用数组存储。下面的代码是一个最大(不管是现实世界还是计算机的世界,什么是大什么是小,都是可以定义的)堆的实现。
基于堆的优先队列,出队,入队都是 logn 级别的时间复杂度。
提供 heapify 的实现。
2025-08-10 改动
优化了之前版本的实现,将 leftChildIndex/rightChildIndex/parentIndex 作为函数提取了出来,语义更明确;支持 comparator 的对比函数,实现最小或最大堆。
标题:简易优先队列(heap) js 版
内容来自曾小乱的blog:https://zengyuxin.com/js-priority-queue/
2025-08-08
What is Tail Recursion
Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call.
https://www.geeksforgeeks.org/dsa/tail-recursion/
2025-08-07
window.navigator.connection.downlink 网速查询
我们还可以通过一些 H5 的先进 API 去实现,例如这里我们可以使用的是window.navigator.connection.downlink 去查询,但是正如你所知道的是,这类 API 都是一副德性,即老生常谈的兼容性问题,所以我们一般都是作为一种预备的手段,通过能力检测,能用就用它,不能用就通过别的方法。而且需要注意 downlink 的单位是 mbps ,转化成 KB/S 的公式是
navigator.connection.downlink * 1024 / 8
乘 1024 可以理解,为什么后面要除 8 呢?这是因为 mbps 里的 b 指的是 bit(比特),KB/s 里面的 B 指的是 Byte(字节),1 字节 (b)=8 比特 (bit),所以需要除个 8
https://www.cnblogs.com/penghuwan/p/11366446.html
2025-08-06
中文技术文档写作风格指南
技术文档中应使用精练的语言。建议作者在完成初稿后再通篇读一遍文档,将文中所有对表达意思没有明显作用的字、词、句删去,在不影响表达效果的前提下把文案长度减到最短。具体要求有:
禁止啰嗦冗长
禁止逻辑混乱
同一文档中勿重复表达同一事物
尽量用主动时态,尤其要阐述清楚主语和宾语
https://zh-style-guide.readthedocs.io/zh-cn/latest/%E8%AF%AD%E8%A8%80%E9%A3%8E%E6%A0%BC/%E7%AE%80%E6%B4%81%E6%B8%85%E6%99%B0.html
2025-08-05
我之前对 okrs 的理解有点偏差
“OKR” stands for Objectives and Key Results. OKRs are an effective goal-setting and leadership tool for communicating what you want to accomplish and what milestones you’ll need to meet in order to accomplish it. OKRs are used by some of the world’s leading organizations to set and enact their strategies. In this article we’ll define an OKR, look at how they’re used and provide some examples of OKRs.
https://www.whatmatters.com/faqs/okr-meaning-definition-example
2025-08-04
卖房子需要缴纳哪些税费?
https://www.sohu.com/a/917656466_121118718
2025-08-03
契税方面,将现行享受1%低税率优惠的面积标准由90平方米提高到140平方米,并明确北京、上海、广州、深圳4个城市可以与其他地区统一适用家庭第二套住房契税优惠政策。调整后,在全国范围内,对个人购买家庭唯一住房和家庭第二套住房,只要面积不超过140平方米的,统一按1%的税率缴纳契税。
2025-08-02
重新学习一下主谓宾,定状补
例3:为了学更多知识,我每天早上骑自行车去图书馆读书。
上例中主语是“我”,谓语是“读”,宾语是“书”。句中“为了学更多知识”说明了“读书”的目的,这种说明动作目的的状语叫作目的状语;“每天早上”说明了动作“去图书馆”的时间,我们称这种说明动作时间的状语为时间状语。“骑自行车”说明了“去图书馆”的方式,我们称这种说明动作方式的状语为方式状语。“去图书馆”说明“读”这个动作的地点 ,我们称这种说明动作地点的状语为地点状语。
https://zhuanlan.zhihu.com/p/38766759