TGTGInsighttelegram intelligenceLIVE / telegram public index
← () => "翠楼屋"

TGINSIGHT SIMILAR POSTS

查找相似内容

Source channel @lambdaexpression · Post #301 · 1月26日

DN42 access 本服务为那些无法轻松访问自身网络的用户以及希望体验 dn42 但又不想承担维护自有网络成本的用户提供 dn42 连接 默认情况下,地址从/96地址块中分配,如果您希望租用独立的/96前缀或更大的地址空间,请按照联系方式联系我 所有公开的PoP均已屏蔽来自中国境内的 IP 地址。如果您确实需要dn42 access,请与我联系并提供合理的理由 该服务由AS4242423377提供 - - - - - - - The service provides DN42 connectivity to members who cannot easily access their own networks, as well as to those who would like to explore DN42 without the overhead of maintaining their own network. By default, addresses are allocated from a /96 block. If you wish to lease a dedicated /96 prefix or a larger address space, please contact me using the methods provided in the contact information. All publicly accessible PoP are blocked for IPs originating from within China. DN42 access from within China is not publicly available. If you genuinely require access, please contact me and provide a valid justification. Hosted by AS4242423377. Policy 本服务需要花费时间和金钱才能运行,但为了您的利益,我们免费提供。使用本服务是一种特权,而非权利。您必须合理使用本服务,以确保其他用户也能继续享受同样的便利。任何滥用、误用或干扰服务或其他用户的行为都可能导致您的访问权限立即被暂停或终止。 滥用行为包括但不限于: - 过度使用资源 - 黑客攻击、病毒、木马等,或任何其他可能损害服务或对服务及其用户造成风险的干扰行为 - 传播可能导致民事或刑事责任的不良内容 - - - - - - - This service require real time and financial resources to operate, yet are provided free of charge for your benefit. Access to the services is a privilege, not a right. You must use the services responsibly and considerately to ensure that other users can continue to enjoy the same opportunities. Any misuse, abuse, or activities that disrupt the service or other users may result in immediate suspension or termination of access. Abuse could include, but is not limited to: - Excessive use of resources - Hacking, viruses, trojans etc or any other disruption that could harm or create risk to the services or its users - Distribution of objectional content that could create a civil or criminal liability PoP ## Toronto, Canada Prefix: fdb6:fc6a:e66c:724f:fad1:d2cf::/96 Zerotier: 4753cf475f65b0fb ## Los Angeles, USA coming soon #announcement#service

Results

找到 360 条相似帖子

搜索 #coding

当前筛选 #coding清除筛选
The Devs

@thedevs · Post #2026 · 2022/12/06 08:42

Advent of Code 2022, small programming puzzles for a variety of skill sets that can be solved in any programming language. #coding @thedevs https://thedevs.link/HxnXh2

Hashtags

The Devs

@thedevs · Post #1662 · 2020/01/16 17:16

Goodbye, clean code. #coding @thedevs https://kutt.it/e8ePSG

Hashtags

The Devs

@thedevs · Post #1450 · 2019/04/05 17:18

Name It, and they will come. #coding @thedevs https://kutt.it/emm4ZE

Hashtags

404 KIDS SEE GHOSTS (生产力之王版

@Isaiahsystem · Post #1408 · 2026/01/17 18:02

Claude Code/ Codex/ Antigravity 终极启动器 (iTerm2 版) 丝如滑。最近优化了 Keyboard Maestro 快速在 iTerm 中启动 Claude Code/ Codex 宏动作。(已放评论) 结合我的快捷键启动建议,双击 Command 键读取选中的文件或文件夹,通过 iTerm2 在 Claude Code 中打开该目录位置,如果没有选中内容则跳转到预设目录。这里好用的是如果识别到 iTerm2 窗口已经打开,则开启新的 Tab 窗口分栏进入 Claude Code 打开,默认 Cmd+T 直接打开默认窗口;Codex 双击 Option 键同理。 还有个双击 Ctrl 可以 Antigravity 中同样快捷获取路径打开 iTerm Claude Code cd 到对应目录。如果 Antigravity 未打开,双击 Ctrl 则先打开该该窗口。 相关链接: 1 Claude Code 终极启动器 2 目前我的顶级生产力启动器 3 iTerm2 #coding

Hashtags

Am Neumarkt 😱

@amneumarkt · Post #472 · 2023/04/28 06:26

#coding I had some discussions with serval people about writing good code during machine learning experimentation. Whenever it comes to the part of writing formal code, opinions diverge. So, should we write good code that is easy to read with typing and tests, even in experiments? The spirit of experimentation is fast and reliable. So naturally, the question comes down to what kind of coding style allows us to develop and run experiments, fast. My experience with running experiments is that we will never run the code just once. Instead, we always come back to it and run it with different configurations or parameters. In this circumstance, how good shall my code be? For typing and tests, I type most of my args but only write tests needed to develop and debug a function or class. - Typing is important because people spend time figuring out what to put in there as an argument for a function. With typing, it is much faster. - Here is an example for tests: If I need to know the shape of the tensor deep in a method of a class, I would spend some seconds writing a simple test that allows me to put breakpoints in the method to investigate inside. But, the above is a bit trivial. How about the design of the functions and classes? I suggest taking your time writing those that are repeated in every experiment. We will hit some ceiling in development speed real quick, if we always use the first and most naive design for these. In practice, I would say, design it twice and write it once. One such example is data preprocessing. When dealing with the same data and problems, data transformations are usually quite similar in each experiment but a bit different in details. Finding the patterns and writing some slightly generic functions would be helpful. There is always the risk of over-engineering. I prefer to improve things little by little. I might generalize a function a little bit in one experiment. And also, don't hesitate to throw away your code to rewrite. Rewriting will take little time, and it usually brings in improvements. That's my five cents on code quality for developing and running machine learning experiments.

Hashtags

🍘没有电鸡的广州大道南

@siubeng_store · Post #352 · 2023/01/27 14:53

#Coding 今天闲下来重构一下以前坏掉的 Bilibili 网页播放器增强插件,发现我在其他项目中通过 Vite 构建 userscript (如 Tampermonkey) 插件脚本的依赖项目引流到另一个项目:vite-plugin-monkey,试用了一下确实是更加好用,也提供了不同框架的脚手架,给零碎的小需求节省了不少时间(不要问我小需求为什么不直接写单文件 vanilla js 呢🤣)

Hashtags

Am Neumarkt 😱

@amneumarkt · Post #244 · 2021/07/13 10:41

#Coding I found a nice place to practice programming thinking. It is not as comprehensive as hackerrank/leetcode but these problems are quite fun. https://codingcompetitions.withgoogle.com/

Hashtags

笔记剪藏 | René's Notes

@renenotes · Post #95 · 2022/05/28 11:32

你要学会把代码和你自己分离,不要成为代码的拥有者。你要优化代码,便于其他人找到方法来修复错误和添加功能,把代码的控制权分散。因为你需要解放自己,继续去做下一个项目,否则你将永远无法脱身。 -- 《我编程20年的指导原则》 #Coding

Hashtags

椒盐豆豉剪报

@mtfront · Post #3300 · 2024/06/17 21:55

给 Hugo 博客的代码区块更换主题 Hugo 默认的深色代码块跟我的浅色博客主题不太搭,于是研究了一下给 syntax highlighter 换主题。拒绝所有事情无脑上 dark mode 保护视力从我做起! 论我为了拖延刷题都能干出什么无聊事儿,本来前两天随手改一下的事儿,现在变出了一整篇博客,都快要丧失非建站非折腾博主的荣誉称号了…… #blog#coding

Hashtags

123•••10•••20•••2930
上一页第 1/30 页下一页