标题: 矫枉必须过正,不过正不能矫枉
作者: #dudu
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/809205
时间: 2025-07-23 09:45:17
摘要:
作者: #dudu
板块: #搞七捻三
编号:
809205帖子: https://linux.do/t/topic/809205
时间: 2025-07-23 09:45:17
摘要:
如果是17、18年,苗头刚出来的时候。 当个理中客,你说大家要相互理解, 不要进入对抗的模式,还能理解。
现在洪流已经形成。 任何理中客都是自作聪明的糊涂蛋。
现在只有一个选择,魔法对轰。 什么都不做,她们只会当你软弱可欺。
当然并不需要每个人付出实际的行动。 只是要认识到, 局势已经形成,做好防备心理, 保护好自己。
标题: 一次算命经历
作者: #Daft
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/809206
时间: 2025-07-23 09:45:30
摘要:
作者: #Daft
板块: #搞七捻三
编号:
809206帖子: https://linux.do/t/topic/809206
时间: 2025-07-23 09:45:30
摘要:
文章为本人亲身经历整理而成,经 AI 优化排版与文字润色后,现以图片形式发布。故事的发生时间为去年农历新年期间。
标题: cursor额度用完的普通版
作者: #salsal101
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/809207
时间: 2025-07-23 09:45:35
摘要:
作者: #salsal101
板块: #开发调优
编号:
809207帖子: https://linux.do/t/topic/809207
时间: 2025-07-23 09:45:35
摘要:
cursor pro现在auto总是给我生成markdown咋办 而且经常罢工
只能再加钱吗
标题: qwen 天气词测试
作者: #TQmyLady
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/809211
时间: 2025-07-23 09:46:23
摘要:
作者: #TQmyLady
板块: #搞七捻三
编号:
809211帖子: https://linux.do/t/topic/809211
时间: 2025-07-23 09:46:23
摘要:
···
Create a single HTML file containing CSS and JavaScript to generate an animated weather card. The card should visually represent the following weather conditions with distinct animations: Wind: (e.g., moving clouds, swaying trees, or wind lines) Rain: (e.g., falling raindrops, puddles forming) Sun: (e.g., shining rays, bright background) Snow: (e.g., falling snowflakes, snow accumulating) Show all the weather card side by side The card should have a dark background. Provide all the HTML, CSS, and JavaScript code within this single file. The JavaScript should include a way to switch between the different weather conditions (e.g., a function or a set of buttons) to demonstrate the animations for each.
···
标题: 兄弟们,被谷歌反撸了,帮我看看这个是什么在扣费
作者: #cfan
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/809221
时间: 2025-07-23 09:48:36
摘要:
作者: #cfan
板块: #搞七捻三
编号:
809221帖子: https://linux.do/t/topic/809221
时间: 2025-07-23 09:48:36
摘要:
今年6月份把一个老账号开通了现在的谷歌云每个月免费200G的流量的服务器,部署了个rustdesk serve,因为速度不佳,基本没怎么用。昨天刷到个帖子被反撸的视频,随手打开了谷歌云账号 一看不要紧。
这个Compute Engine 基本每天都在扣费$4.89
有点没懂这个Compute Engine 到底是什么
xdm,是准备杀鸡跑路,还是把费用补上
标题: 【星球内部资料】Java面试指南
作者: #tomm
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/809225
时间: 2025-07-23 09:49:53
摘要:
作者: #tomm
板块: #资源荟萃
编号:
809225帖子: https://linux.do/t/topic/809225
时间: 2025-07-23 09:49:53
摘要:
我用夸克网盘分享了「Java面试指南」,点击链接即可保存。打开「夸克APP」,无需下载在线播放视频,畅享原画5倍速,支持电视投屏。
pan.quark.cn
夸克网盘分享
夸克网盘是夸克推出的一款云服务产品,功能包括云存储、高清看剧、文件在线解压、PDF一键转换等。通过夸克网盘可随时随地管理和使用照片、文档、手机资料,目前支持Android、iOS、PC、iPad。
标题: qwen3-coder的效果非常好
作者: #mrpzx001
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/809226
时间: 2025-07-23 09:50:08
摘要:
作者: #mrpzx001
板块: #搞七捻三
编号:
809226帖子: https://linux.do/t/topic/809226
时间: 2025-07-23 09:50:08
摘要:
速度很快,没有思考过程,体验比gemini还好。写出来的代码只有一点点小问题,跟他说下现象就自己纠正好了。
<?php
declare(strict_types=1);
class Tetris
{
private array $board;
private int $width;
private int $height;
private array $currentPiece;
private int $currentX;
private int $currentY;
private int $score;
private bool $gameOver;
private float $dropSpeed;
private float $dropCounter;
public function __construct(int $width = 10, int $height = 20)
{
$this->width = $width;
$this->height = $height;
$this->board = array_fill(0, $height, array_fill(0, $width, 0));
$this->score = 0;
$this->gameOver = false;
$this->dropSpeed = 0.5;
$this->dropCounter = 0.0;
$this->spawnPiece();
system('stty cbreak -echo');
}
public function __destruct()
{
system('stty -cbreak echo');
}
priva
标题: 【长期】代下论文
作者: #LeeXieXie
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/809230
时间: 2025-07-23 09:50:59
摘要:
作者: #LeeXieXie
板块: #福利羊毛
编号:
809230帖子: https://linux.do/t/topic/809230
时间: 2025-07-23 09:50:59
摘要:
各位需要下载论文的,可以把链接和doi发过来,我下载后放到网盘里面自取
标题: windows端,图片浏览工具求推荐
作者: #马列维奇
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/809245
时间: 2025-07-23 09:53:57
摘要:
作者: #马列维奇
板块: #资源荟萃
编号:
809245帖子: https://linux.do/t/topic/809245
时间: 2025-07-23 09:53:57
摘要:
佬友最近的护照合集
psd格式,系统自带软件打不开
好奇现在好用的win端图片浏览工具有哪些?
希望轻便、UI好看。
标题: Esxi8 如何实现Tesla计算卡的虚拟化?
作者: #hanker
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/809246
时间: 2025-07-23 09:54:05
摘要:
作者: #hanker
板块: #开发调优
编号:
809246帖子: https://linux.do/t/topic/809246
时间: 2025-07-23 09:54:05
摘要:
实体机器使用的是dell的服务器
直接安装的esxi8 配置信息如下图
插入显卡后,在esxi的硬件中可以识别到显卡,但是没有办法完成显卡直通,本身还有一块亮机卡,亮机卡可以选择直通
选择直通后如下
在bios中 4g参数和vtd都已经打开了
esxi的ssh中也可以看到这个卡
esxi系统中没有安装nv的驱动,因为后期可能还要加一些卡
标题: 有没有佬友在东信实习或工作的,嘿嘿😋
作者: #南方
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/809256
时间: 2025-07-23 09:55:44
摘要:
作者: #南方
板块: #搞七捻三
编号:
809256帖子: https://linux.do/t/topic/809256
时间: 2025-07-23 09:55:44
摘要:
鄙人有幸来到中国东盟信息港来实习三个月,想知道本站有没有前辈或者同样实习的佬友,有机会可以认识一下,当然,概率应该很低吧…
标题: 分享个 Fellou 邀请码
作者: #ggyy
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/809269
时间: 2025-07-23 09:57:25
摘要:
作者: #ggyy
板块: #福利羊毛
编号:
809269帖子: https://linux.do/t/topic/809269
时间: 2025-07-23 09:57:25
摘要:
只有一个码,领了的给个赞呗
邀请码: 5WM8H8
https://fellou.ai/download