最新发布第12页
iOS 其它相关知识-Stewed Noodles 资源

iOS 其它相关知识

版本管理 Xcode 快捷键 添加 emoji:Command + Control + Space 提交代码:Command + Option + C 显示或隐藏左侧导航窗口:Command + 0 显示或隐藏预览画布:Command + Option + Return
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri1年前
0290
What is an actor and why does Swift have them? 什么是 actor,为什么 Swift 有它们?-Stewed Noodles 资源

What is an actor and why does Swift have them? 什么是 actor,为什么 Swift 有它们?

Swift’s actors are conceptually like classes that are safe to use in concurrent environments. This safety is made possible because Swift automatically ensures no two pieces of cod...
SUSAR 上传错误-Stewed Noodles 资源

SUSAR 上传错误

时间格式 严重事件发生时间格式 2024/01/03或者 NA,不能是其它格式,比如 2024-01-03。 Excel 单元格换行 Excel 单元格中,不能出现换行。 单元格出现换行 转归列 转归所在的列为单选,选项出...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri6个月前
0290
Day 20 - 贪吃蛇(上)-Stewed Noodles 资源

Day 20 – 贪吃蛇(上)

设置游戏屏幕 from turtle import Screen screen = Screen() # 设置屏幕大小 screen.setup(width=600, height=600) # 设置背景颜色 screen.bgcolor('black') # 设置标题 screen.title('贪吃蛇')...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0280
Who decides which actor code runs on? 谁决定在哪个 actor 代码上运行?-Stewed Noodles 资源

Who decides which actor code runs on? 谁决定在哪个 actor 代码上运行?

One common confusion with actors comes in deciding exactly where code runs, because just adding @MainActor and hoping for the best is rarely good enough.与 Actor 的一个常...
Windows 部署 Ollama-Stewed Noodles 资源

Windows 部署 Ollama

下载 Ollama在 https://ollama.com/download/ 页面下载,系统对应的 Ollama 程序。部署 Ollama安装 Ollama双击 Ollama 的程序,即可进行 Ollama 的安装。修改环境变量Ollama 的默认模型存储路径...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0270
How to create and use AsyncStreams to return buffered data 如何创建和使用 AsyncStreams 返回缓冲数据-Stewed Noodles 资源

How to create and use AsyncStreams to return buffered data 如何创建和使用 AsyncStreams 返回缓冲数据

AsyncStream and AsyncThrowingStream can be thought of a bit like continuations that can send back multiple values, but also like an AsyncSequence that is a...
Emby 套件设置 HTTP 网络代理-Stewed Noodles 资源

Emby 套件设置 HTTP 网络代理

文件位置 /var/packages/EmbyServer/scripts/start-stop-status。 start-stop-status 文件 代码内容,如下 case '$1' in start) if [ -f $PID_FILE ] && kill -0 '$(cat $PID_FILE)'; t...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri6个月前
0270
Day 5 - 循环-Stewed Noodles 资源

Day 5 – 循环

for 循环 for 循环的基本语法,如下所示 for item in list_of_items: # do something to each item 示例代码 fruits = ['Apple', 'Peach', 'Pear'] for fruit in fruits: print(fruit) # Apple ...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0260
Day 8 - 函数参数-Stewed Noodles 资源

Day 8 – 函数参数

有参函数 带有输入参数的函数即为有参函数,有参函数的基本语法 # 函数定义 def <function name>(param1, param2,...): # Do this with param1, param2,... # 函数调用 <function name>(a...
jiulinxiri的头像-Stewed Noodles 资源烩之面大会员jiulinxiri2年前
0260