Please open Telegram to view this post
VIEW IN TELEGRAM
cnBeta.COM
吉利德长效HIV疗法今日在中国获批上市 每年仅需给药两次 - 科技与健康 - cnBeta.COM
今日(1月2日),中国国家药监局(NMPA)官网最新公示,吉利德科学(GileadSciences)申报的5.1类新药来那帕韦片和来那帕韦注射液上市申请已获得批准。公开资料显示,来那帕韦(lenacapavir)是一款HIV-1衣壳抑制剂,该药已在欧盟、美国等地获批上市,用于联合其他抗逆转录病毒药物治疗多重耐药型HIV感染成人患者。这款长效HIV疗法还当选了《科学》杂志近期公布的2024年度科学突
Please open Telegram to view this post
VIEW IN TELEGRAM
🤡2😁1
Please open Telegram to view this post
VIEW IN TELEGRAM
🤣6👎2🤨2👀1
DMIT 洛杉矶数据中心缺货通知
由于 HPE 交付超期,DMIT 无法在 2024 年 12 月底完成扩容。
为确保现有客户的稳定运行,DMIT 暂停了洛杉矶大部分实例的销售。
我们预计将在两周内恢复所有常规实例的销售。
如果您对特定实例有任何紧急需求,请联系我们。
没上车的好自为之
Please open Telegram to view this post
VIEW IN TELEGRAM
👎6🥱4🤷♂2🤮1🤷1
Media is too big
VIEW IN TELEGRAM
Ryzen 7-9800X 3D & RTX4070 White Gaming PC Build
干Web端Youtube网站上恶心的Short瀑布流
即便你的IP很干净也是容易刷到简中营销号,太恶心了。有时候标题党很好分辨有时候又忍不住多看几个......
眼不见,心不烦。和抖音一样有毒,看多真的误事🤯 。浪费时间🤪
需要就直接添加到油猴新建脚本
即便你的IP很干净也是容易刷到简中营销号,太恶心了。有时候标题党很好分辨有时候又忍不住多看几个......
眼不见,心不烦。和抖音一样有毒,看多真的误事
// ==UserScript==
// @name 干油管短视频 Remove YouTube Shorts, Without Scroll Reset
// @namespace http://tampermonkey.net/
// @version 1.5
// @description 隐藏 Shorts 区块,但不影响 YouTube 滚动行为,不触发回到顶部 bug。
// @author You
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
// 使用 classList 添加隐藏样式,而不是直接 remove()
const hideElement = (el) => {
if (el && !el.classList.contains('tamper-hide')) {
el.classList.add('tamper-hide');
el.style.display = 'none';
}
};
const hideShortsElements = () => {
try {
// 隐藏 Shorts 侧边栏按钮
document.querySelectorAll('a.yt-simple-endpoint[title="Shorts"], a[aria-label="Shorts"]').forEach(el => {
const container = el.closest('ytd-mini-guide-entry-renderer, ytd-guide-entry-renderer');
if (container) hideElement(container);
});
// 隐藏 Shorts 视频卡片(含 /shorts/ 的链接)
document.querySelectorAll('ytd-rich-grid-media').forEach(el => {
const link = el.querySelector('a#thumbnail');
if (link && link.href.includes('/shorts/')) {
hideElement(el);
}
});
// 隐藏 Shorts 的专属区块(如 reels 或 rich section)
document.querySelectorAll('ytd-reel-shelf-renderer, ytd-rich-section-renderer').forEach(hideElement);
} catch (err) {
console.error('干油管隐藏 Shorts 出错:', err);
}
};
// 使用节流,避免过多触发导致页面重绘
let timeoutId = null;
const throttledHide = () => {
if (timeoutId) return;
timeoutId = setTimeout(() => {
hideShortsElements();
timeoutId = null;
}, 500); // 500ms 节流
};
const observer = new MutationObserver(throttledHide);
observer.observe(document.body, { childList: true, subtree: true });
// 页面加载后延迟初次处理
window.addEventListener('load', () => {
setTimeout(hideShortsElements, 1000);
});
})();
需要就直接添加到油猴新建脚本
Please open Telegram to view this post
VIEW IN TELEGRAM
👍22😁5💅3👨💻1