标题: 佬们,我想到一个点子,通过这个方式学英语你们觉得可行吗
作者: #Ecc
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224647
时间: 2025-11-27 10:18:58
摘要:
作者: #Ecc
板块: #搞七捻三
编号:
1224647帖子: https://linux.do/t/topic/1224647
时间: 2025-11-27 10:18:58
摘要:
我平时比较喜欢浏览 Hacker news 和 reddit 等一些英文网站,看纯英文的,太累,很快就坚持不下去了,如果翻译成中文的,那基本就不太会看英文的了,英语又得不到任何提高。
最近受一些工具的启发,我在想,如果在中文译文里面插入一些英文,那这样在看中文的时候,是不是顺便能学点单词,佬们觉得这样如何,可行吗,如下图这样
标题: 两年前买的硬盘也太赚了吧
作者: #小言
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224658
时间: 2025-11-27 10:20:27
摘要:
作者: #小言
板块: #搞七捻三
编号:
1224658帖子: https://linux.do/t/topic/1224658
时间: 2025-11-27 10:20:27
摘要:
woc突然发现两年前买的好赚啊,长存的颗粒2T只要这个价格,现在要1179
现在都涨到什么价格了
运气真好w
标题: 【测试留档】RackNerd-1C1G - 美西 DC03- (Black Friday 2025) ($9.88/ 年)
作者: #百事可乐
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224662
时间: 2025-11-27 10:21:08
摘要:
作者: #百事可乐
板块: #搞七捻三
编号:
1224662帖子: https://linux.do/t/topic/1224662
时间: 2025-11-27 10:21:08
摘要:
标题: 智谱AutoGLM的云电脑挺流畅,能当办公电脑用,Ubuntu系统
作者: #Mozi
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1224666
时间: 2025-11-27 10:21:36
摘要:
作者: #Mozi
板块: #开发调优
编号:
1224666帖子: https://linux.do/t/topic/1224666
时间: 2025-11-27 10:21:36
摘要:
autoglm.zhipuai.cn
AutoGLM
AutoGLM —— 一句话生成多种多模态内容,达到行业SOTA性能,支持AI PPT生成、视频生成、播客创作、网页搭建、数字人等场景。无论是分析师写报告、内容创作者做自媒体,还是学生与研究者高效学习,AutoGLM都是你的全能助手。
标题: 今天支付宝领碰一碰红包
作者: #WuHuFly
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224677
时间: 2025-11-27 10:23:12
摘要:
作者: #WuHuFly
板块: #搞七捻三
编号:
1224677帖子: https://linux.do/t/topic/1224677
时间: 2025-11-27 10:23:12
摘要:
首页就弹活动页面,我点了一下领了一块,但是发愁买什么东西,我这附近都是餐馆什么的有碰一碰那个机器,楼主这种穷B都是吃9.9拼好饭的,哪吃得起;超市也有,但是超市东西死贵。
标题: 分享自己的debian/ubuntu安装初始化配置
作者: #czb
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1224681
时间: 2025-11-27 10:23:51
摘要:
作者: #czb
板块: #开发调优
编号:
1224681帖子: https://linux.do/t/topic/1224681
时间: 2025-11-27 10:23:51
摘要:
卸载默认软件:
# 不参考 删太多了 <https://blog.csdn.net/lggirls/article/details/132341397>
# 参考 <https://blog.csdn.net/raspi_fans/article/details/124651388>
sudo apt-get purge gnome-games
sudo apt-get --purge autoremove
sudo apt-get purge libreoffice*
sudo apt-get --purge autoremove
安装常用软件:
# 安装vscode
sudo apt install software-properties-common apt-transport-https curl
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
sudo apt update
sudo apt install code
# 安装tabby
https://github.com/Eugeny/tabby/releases/
-linux-x64.deb
cd /home/neo/下载 ; chmod +x ./*.deb
sudo apt install ./tabby-*-linux-x64.deb -y
导入dotfiles的yml配置
# 安装qq
https://im.qq.com/linuxqq/index.shtml
cd /home/neo/下载 ; chmod +x ./*.deb
sudo apt install ./QQ*.deb -y
# 安装微信
sudo apt install flatpak
sudo apt install gnome-software-plugin-flatpak
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
注销gnome后flatpak的gnome插件生效,否则无app图标
手动下载包 -x86_64.flatpak
# https://github.com/web1n/wechat-universal-flatpak
cd /home/neo/下载 ;
flatpak install com.tencent.WeChat-x86_64.flatpak
# 安装fish
sudo apt install fish -y
fish_path=$(which fish)
sudo bash -c "echo $fish_path >> /etc/shells"
fish_path=$(which fish) ; chsh -s "$fish_path"
fish_config # fish配置 ayu Dark + informative
sudo su # 修改sudo的shell
fish_path=$(which fish) ; chsh -s "$fish_path"
# 安裝 Fisher 及插件
curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher
fisher install jethrokuan/z
fisher install andreiborisov/sponge
fisher install jorgebucaran/autopair.fish
sudo apt install fzf
fisher install PatrickF1/fzf.fish
# 配置git&github
git config --global user.name Randomless
git config --global user.email 2418660459@qq.com
ssh-keygen -t rsa -C "2418660459@qq.com" # Press Enter
cat ~/.ssh/id_rsa.pub # copy to github
https://github.com/settings/ssh/new
# 配置dotfiles
cd /home/neo/me
git clone git@github.com:Randomless/Notes.git
git clone git@github.com:Randomless/dotfiles.git
cd dotfiles ; chmod 777 ./* ; ./ln_sym.sh
# 配置ssh免密登录 10 14服务器
ssh-copy-id -i ~/.ssh/id_rsa.pub zzt@10.204.128.14
ssh-copy-id -i ~/.ssh/id_rsa.pub zzt@10.204.128.10
# 安装 typora
wget -qO - https://typoraio.cn/linux/public-key.asc | sudo tee /etc/apt/trusted.gpg.d/typora.asc
sudo add-apt-repository 'deb https://typoraio.cn/linux ./'
sudo apt-get update
sudo apt-get install typora
# appimage launcher 报错失败 放弃
sudo apt install software-properties-common
sudo add-apt-repository ppa:appimagelauncher-team/stable
sudo apt update
sudo apt install appimagelauncher
wget https://github.com/TheAssassin/AppImageLauncher/releases/download/v2.1.4/appimagelauncher_2.1.4-travis987.7cb4d70.bionic_amd64.deb
sudo apt install ./appimagelauncher_2.1.4-travis987.7cb4d70.bionic_amd64.deb
# 安装wps
# 英文 下载后仅有英文界面 https://www.wps.com/download/
# 中文 选这个!https://www.wps.cn/product/wpslinux
cd /home/neo/下载 ; chmod +x ./*.deb
sudo apt install ./wps-office*.deb
# 安装字体
fc-list :lang=zh | wc -l # 只检查中文 debian12 默认81个
fc-list | wc -l # debian12 2659个
cd ~/me/ ; git clone https://gitee.com/Randomless_admin/ttf-wps-fonts.git && cd ttf-wps-fonts
sudo sh install.sh
# https://packages.debian.org/sid/ttf-mscorefonts-installer
# 安装zotero
wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/install.sh | sudo bash
sudo apt update
sudo apt install zotero
# 安装七七八八
sudo apt install gparted vlc gimp ffmpeg wget htop flameshot obs-studio baobab
#sudo apt-get autoremove --purge
# auto-remove这种风险巨大的命令,还是备份完再用吧
sudo du -sh /var/cache/apt
sudo apt-get autoclean
sudo apt-get clean
# 清理 Ubuntu 缩略图缓存
du -sh ~/.cache/thumbnails/
rm -rf ~/.cache/thumbnails/*
标题: Netflix 合租有没有推荐 我一直开不成功
作者: #呆呆鱼
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224682
时间: 2025-11-27 10:24:11
摘要:
作者: #呆呆鱼
板块: #搞七捻三
编号:
1224682帖子: https://linux.do/t/topic/1224682
时间: 2025-11-27 10:24:11
摘要:
球球各位佬推荐一下
标题: 现在最好的生成图片的模型是哪一款?
作者: #文思如尿崩
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224689
时间: 2025-11-27 10:25:03
摘要:
作者: #文思如尿崩
板块: #搞七捻三
编号:
1224689帖子: https://linux.do/t/topic/1224689
时间: 2025-11-27 10:25:03
摘要:
现在的模型真是眼花缭乱,不知道怎么选了
标题: Gemini Business 怎么使用
作者: #独孤
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224703
时间: 2025-11-27 10:27:29
摘要:
作者: #独孤
板块: #搞七捻三
编号:
1224703帖子: https://linux.do/t/topic/1224703
时间: 2025-11-27 10:27:29
摘要:
在论坛大佬哪里上车了Gemini Business的车,用群里的邮箱(gmail 不行),但是CLion 的Gemini Code Assist 使用时却告诉我,需要谷歌邮箱。我想问问懂的佬,能告诉我怎么狠狠的薅gemini的羊毛,感谢佬。
标题: 还有这么多佬友需要嘛,Gemini Enterprise开两车车,28个车位
作者: #ljw099
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1224704
时间: 2025-11-27 10:27:43
摘要:
作者: #ljw099
板块: #福利羊毛
编号:
1224704帖子: https://linux.do/t/topic/1224704
时间: 2025-11-27 10:27:43
摘要:
28个车位,留邮箱
标题: ModelGate 新平台
作者: #默 凌
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1224706
时间: 2025-11-27 10:28:17
摘要:
作者: #默 凌
板块: #福利羊毛
编号:
1224706帖子: https://linux.do/t/topic/1224706
时间: 2025-11-27 10:28:17
摘要:
ModelGate- 轻松调用全球主流AI模型
1.告别繁琐账号申请和访问限制,一键调用GPT5/Claude等模型
2.提供链路层的故障自动切换和优化加速服务
3.实时观测各模型质量
限时福利:
邀请码:KQSihe
立得价值150元魔币!快去ModelGate"
标题: Deepseek 帮我躺赚 30000RMB
作者: #ageg
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224725
时间: 2025-11-27 10:30:21
摘要:
作者: #ageg
板块: #搞七捻三
编号:
1224725帖子: https://linux.do/t/topic/1224725
时间: 2025-11-27 10:30:21
摘要:
3月份Deepseek很火,想玩本地部署买了1w块的ddr5内存。
刚刚看了一下,竟然要四万多了。
标题: Gemini Enterprise 14个车位
作者: #陨落的天才
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1224743
时间: 2025-11-27 10:33:51
摘要:
作者: #陨落的天才
板块: #福利羊毛
编号:
1224743帖子: https://linux.do/t/topic/1224743
时间: 2025-11-27 10:33:51
摘要:
30天会员,gmail,qq不行
标题: 這些寶寶們都生日快樂喔
作者: #maybe_like
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224748
时间: 2025-11-27 10:34:41
摘要:
作者: #maybe_like
板块: #搞七捻三
编号:
1224748帖子: https://linux.do/t/topic/1224748
时间: 2025-11-27 10:34:41
摘要:
标题: 假如AGI真的到来,需要具身智能吗?
作者: #czb
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224756
时间: 2025-11-27 10:35:22
摘要:
作者: #czb
板块: #搞七捻三
编号:
1224756帖子: https://linux.do/t/topic/1224756
时间: 2025-11-27 10:35:22
摘要:
至少我看到的大部分开发测试,和计算机相关的职业,创造价值的地方其实只需要电脑,不需要具身。
是否意味着其实Computer Use Agent+AGI级别的智能,就已经可以取代计算机相关的人类劳动力了。
标题: python➕机器学习如何入门?
作者: #哈哈哈
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1224763
时间: 2025-11-27 10:36:52
摘要:
作者: #哈哈哈
板块: #搞七捻三
编号:
1224763帖子: https://linux.do/t/topic/1224763
时间: 2025-11-27 10:36:52
摘要:
本人简介:非计科出身,对电脑编程一窍不通,对电脑懂一点点,没有学习过任何代码,只会一点点的cd ls grep这些linux系统的操作,没有写过sh脚本,目前我应该如何入门python(b站动不动就80h90h的课程有点长,我只有几个月时间来学习了),看什么搞机器学习,只需要很简单的就可以了,无需深入讨论算法怎么来的,西瓜书还有什么那些计科专业书籍我倒不太需要,现在时间不够只能速成了,还希望各位佬友提提意见