最新发布第15页
Windows 部署 Ollama-Stewed Noodles 资源

Windows 部署 Ollama

下载 Ollama在 https://ollama.com/download/ 页面下载,系统对应的 Ollama 程序。部署 Ollama安装 Ollama双击 Ollama 的程序,即可进行 Ollama 的安装。修改环境变量Ollama 的默认模型存储路径...
XuX的头像-Stewed Noodles 资源烩之面大会员XuX2年前
0340
LLM 概述-Stewed Noodles 资源

LLM 概述

AI 技术名词 AI 中常见的技术名词如下 人工智能:AI - Artificial Intelligence 大语言模型:LLM - Large Language Model 自然语言处理:NLP - Natural Language Processing 机器学习:ML - Mac...
XuX的头像-Stewed Noodles 资源烩之面大会员XuX2年前
0340
Day 10 - 函数输出-Stewed Noodles 资源

Day 10 – 函数输出

单返回值 函数通过 return 关键字,进行函数的输出。 def function_name(input_parameter): <body of function that uses input_argument> return output 示例代码 def format_name(f_nam...
Day 18 - Turtle 与 GUI-Stewed Noodles 资源

Day 18 – Turtle 与 GUI

绘制正方形 利用turtle进行正方形的绘制 # 导入模块 import turtle for i in range(4): turtle.forward(100) turtle.left(90) my_screen = turtle.Screen() # 点击屏幕推出GUI界面 my_screen.ex...
ScrollViewReader-Stewed Noodles 资源

ScrollViewReader

Scroll View Reader 让你可以访问一个名为 scrollTo 的函数。通过这个函数,你可以通过自动滚动使滚动视图中的某个视图可见。 介绍 使用 ScrollViewReader 访问 scrollTo 函数,以便以编程方式...
XuX的头像-Stewed Noodles 资源烩之面大会员XuX1年前
0340
Release checklist  版本清单-Stewed Noodles 资源

Release checklist 版本清单

Sure, all your tests pass, but how can you make sure your app functions properly? Most large projects have a solution called a release checklist, and here I want to share mine wit...
XuX的头像-Stewed Noodles 资源烩之面大会员XuX1年前
340
php 8.2 安装fileInfo扩展-Stewed Noodles 资源

php 8.2 安装fileInfo扩展

在 Centos 7中安装 php 8.2 的 fileInfo 扩展,宝塔面板安装的过程中会出现错误 宝塔面板安装 fileInfo 报错 解决方法如下 # 打开目录 cd /www/server/php/82/src/ext/fileinfo/ # 生成编译配置...
Intent-Stewed Noodles 资源

Intent

Intent 是一个基本组件,它促进了应用程序不同组件之间以及不同应用程序之间的通信。Intent 用于请求同一应用内或由其它应用执行的操作,它们用于各种目的,例如启动Activity、启动服务、广播消...
XuX的头像-Stewed Noodles 资源烩之面大会员XuX9个月前
0340
State-Stewed Noodles 资源

State

当 State 改变时,Compose 会自动重新构建(recompose)相关 UI,这就是 Compose 声明式 UI 的核心。 mutableStateOf mutableStateOf 是 Jetpack Compose 中最基础的状态容器。它会: 存储任意...
Navigation-Stewed Noodles 资源

Navigation

依赖添加 如需使用 Navigation,需要添加依赖,具体参考 Navigation 。 dependencies { val nav_version = '2.9.6' implementation('androidx.navigation:navigation-compose:$nav_version') } ...