首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏我是业余自学C/C++的

    Pointer and the C++ Philosophy

    Object-oriengted programming differs from traditional procedural programming in that OOP emphasizes making decisions during runtime instead of during compile time. Runtime means while a program is running,and compile time means when the compiler is puttin

    47210发布于 2018-05-28
  • 来自专栏蓝里小窝

    阅读笔记 | The Design Philosophy of the DARPA Internet Protocols

    The design philosophy of the DARPA Internet Protocols[J/OL].

    42140编辑于 2023-10-15
  • 来自专栏企鹅号快讯

    2017年互联网中你不知道的小程序战略布局

    从战略的角度来分析,小程序带来的变革主要体现在以下三个方面: 使小程序适用于更多应用情景 PHILOSOPHY 小程序的推出,能够使经营者通过网络渠道来对接用户的低频长尾需求,其中有许多实用频率较低的服务或产品 更加完善腾讯数据库 PHILOSOPHY 阿里XX曾经提出,在今后的发展中,大数据的重要地位将愈加凸显,一直以来,阿里XX和腾讯在数据方面都占据绝对优势地位,其中阿里XX在消费者数据上领先,腾讯则在社交数据方面见长 使其他实力型企业的发展面临挑战 PHILOSOPHY 小程序极大地丰富了微信的实用场景,其中有很多场景需要用户进行线上交易操作,从而使微信支付的应用更为普遍,这使阿里支付的发展面临挑战,从根本来说,支付功能的实现

    70580发布于 2018-01-15
  • 来自专栏CreateAMind

    Suggested Education for Future AGI Researchers

    Reasoning, Glenn Shafer, Judea Pearl Machine Learning Machine Learning, Peter Flach Philosophical Logic Philosophy Miller Philosophy of Science Philosophy of Science: The Central Issues, 2/E, J. A. Reasoning, Glenn Shafer, Judea Pearl Machine Learning Machine Learning, Peter Flach Philosophical Logic Philosophy Miller Philosophy of Science Philosophy of Science: The Central Issues, 2/E, J. A.

    56720发布于 2018-07-24
  • 来自专栏AI学习笔记

    拒绝无效内卷!用QClaw打造打工人专属"情绪-生存-睡眠"Agent

    于是,EmoBin(情绪垃圾桶) 的设计目标很明确: 功能模块 输入 处理逻辑 输出 毒舌接收 用户的纯文本吐槽 情感分析+脏话过滤 确认接收情绪 哲学升华 标记为"philosophy" 提取核心矛盾 - "保存到素材库" → 将内容追加到本地markdown文件 ## 参数 - content: 用户的原始吐槽内容(必需) - mode: 处理模式,可选"philosophy"或"rap"(默认 philosophy) - intensity: 毒舌强度等级1-5(用于Rap生成时的攻击性调节) ## 示例 用户输入:"吐槽 这个需求又要改,产品经理是不是觉得时间不是成本? ", "rap"] = "philosophy", intensity: int = 3): """ QClaw消息入口函数 当用户在微信发送"吐槽 xxx"时被触发 " 根据模式处理 if mode == "philosophy": result = processor.to_philosophy(content, emotion_data

    54921编辑于 2026-04-15
  • 来自专栏授客的专栏

    Python 基于xml.etree.ElementTree实现XML对比

    ></book> <book name="python programming" price="10" ></book> </class> <class name="<em>philosophy</em> "> <rangk>2</rangk> <year>unknown</year> <book name="A little history of <em>philosophy</em> ></book> <book name="python programming" price="10" ></book> </class> <class name="<em>philosophy</em> <year>unknown</year> <addr>other addr</addr> <book name="A little history of philosophy

    1.2K10编辑于 2022-12-13
  • 来自专栏Listenlii的生物信息笔记

    微生物领域名言(3)Everything is everywhere的历史

    Studies in History and Philosophy of Science Part C: Studies in History and Philosophy of Biologicaland

    4.1K41发布于 2020-11-03
  • 来自专栏Dance with GenAI

    AI批量将英文参考文献中的图书和杂志分开

    Hayek, “The Legal and Political Philosophy of David Hume”, Il Politico, vol. 28, no. 4, (1963)” “James Hayek, “The Legal and Political Philosophy of David Hume”, Il Politico, vol. 28, no. 4, (1963)” 以上4个单元格内容都是有字符串

    52000编辑于 2024-11-13
  • 来自专栏Hadoop实操

    Hadoop已死,Hadoop万岁

    在某些方面,“Hadoop哲学”是数据架构,Ken Thompson著名的Unix Philosophy是软件开发。 Eric Raymond在著名的Art of Unix Programming一书中阐述的17条Unix规则,许多也适用于这个领域: Unix Philosophy https://en.wikipedia.org /wiki/Unix_philosophy Art of Unix Programming https://en.wikipedia.org/wiki/Unix_philosophy#cite_note -11 17 Rules for Unix https://en.wikipedia.org/wiki/Unix_philosophy#Eric_Raymond's_17_Unix_Rules 1.模块化原则

    1.7K20发布于 2019-09-16
  • 来自专栏科学Sciences

    数据(Data)和信息(Information)常识(1)(2)

    the form of electricalsignals and recorded on magnetic, optical, or mechanical recording media.) ②哲学(Philosophy (mid 17th century (as a term in philosophy): from Latin, noun, pluralof datum.) 1.4 义项(Items): ①一条信息

    2K20发布于 2020-04-21
  • 来自专栏coldPlayer的前端专栏

    TypeScript类型守卫

    Student类型 if('study' in val){ console.log(val.study) }}getInfo({ name: 'student', study: "Philosophy " });//打印结果为Philosophy,因为传参中含有study属性,所以走了第二个判断2、typeof-类型分类场景下的身份确认为什么用typeof做类型守卫呢?

    1.1K30编辑于 2023-11-20
  • 来自专栏前端到底怎么学好来

    【TypeScript】TS类型守卫(八)

    Student类型 if('study' in val){ console.log(val.study) }}getInfo({ name: 'student', study: "Philosophy " });//打印结果为Philosophy,因为传参中含有study属性,所以走了第二个判断2、typeof-类型分类场景下的身份确认为什么用typeof做类型守卫呢?

    43210编辑于 2023-11-28
  • 来自专栏技术综合

    React学习相关资料

    pshrmn/a-simple-react-router-v4-tutorial-7f23ff27adf https://reacttraining.com/react-router/web/guides/philosophy

    44330发布于 2020-08-25
  • 来自专栏机器之心

    佛罗里达国际大学计算机系吴彦钊课题组招收全奖博士

    优秀本科生与硕士生申请,对于特别优秀的申请人可以放宽专业限制; 其他详细要求参考:https://www.cis.fiu.edu/academics/degrees/graduate/doctor-of-philosophy-in-computer-science :https://www.cis.fiu.edu/ 申请方式  申请网站:https://www.cis.fiu.edu/academics/degrees/graduate/doctor-of-philosophy-in-computer-science

    67230编辑于 2023-03-29
  • 来自专栏python3

    python和anaconda的区别

    Python has a design philosophy that emphasizes code readability, notably using significant whitespace

    3.7K20发布于 2020-01-03
  • 来自专栏软件方法

    DDD浮夸,Eric Evans开了个坏头

    Although it has never been formulated clearly, a philosophy has emerged as an undercurrent in the object community, a philosophy I call domain-driven design.

    1K50编辑于 2022-03-01
  • 来自专栏yeedomliu

    深度工作准则1——工作要深入

    禁欲主义哲学(Monastic Philosophy)的深度工作日程安排 唐纳德·克努特因为在计算机科学领域的多项创新而闻名,其中尤为重要的是开发出严谨的算法分析方法。 双峰哲学(Bimodal Philosophy)的深度工作日程安排 划时代的心理学家、思想家卡尔·荣格隐居小石屋期间,荣格每天早上都会将自己锁在一个房间里,不受干扰地写作。 节奏哲学(Rhythmic Philosophy)的深度工作日程安排 节奏哲学。这种哲学认为轻松启动深度工作的最好方法就是将其转化成一种简单的常规习惯。 新闻记者哲学(Journalistic Philosophy)的深度工作日程安排 在《聪敏人》筹划出版那几年里,我的叔叔约翰·保罗·纽波特也在纽约做记者工作,恰好和艾萨克斯同租了一套夏季海滨度假房。

    63010发布于 2019-09-29
  • 来自专栏FreeBuf

    攻防最前线:ATT&CK模型解读

    MITRE ATT&CK™: Design and Philosophy. https://www.mitre.org/sites/default/files/publications/pr-18-0944 -11-mitre-attack-design-and-philosophy.pdf 3.

    3.9K10发布于 2020-12-08
  • 来自专栏Reinvent Data Science

    PyMilvus 与 Embedding 模型集成

    Intelligence,' proposing the Turing Test as a criterion of intelligence, a foundational concept in the philosophy Intelligence,' proposing the Turing Test as a criterion of intelligence, a foundational concept in the philosophy

    1.6K10编辑于 2024-07-10
  • 来自专栏素质云笔记

    ChineseWiki︱百万中文维基百科词条下载与整理

    zhwiki-20180301-pages-articles-multistream.xml.bz2文件,然后先用wiki_parser.py将其进行解析,变成以下格式: === 词源 === 英语词语Philosophy 内容级别 内容 标记 1级标题 【政治学】 1 2级标题 == 历史 == 2 3级标题 === 古典时期 === 3 4级标题 ==== 古典时期 ==== 4 平行关系 * 知识论 5 正文 英语词语Philosophy

    6.7K31发布于 2019-05-26
领券