Great233 最近的时间轴更新
Great233

Great233

V2EX 第 390220 号会员,加入于 2019-03-07 14:27:58 +08:00
今日活跃度排名 2259
根据 Great233 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
Great233 最近回复了
前几天 Microsoft 账户也被登录两次,定位是在肯尼亚和印尼,密码管理器一直用的 Microsoft Authenticator
电脑都好久没开了,不知道哪里泄露出去的
[email protected] 谢谢楼主!
支持一下
235 天前
回复了 p1956 创建的主题 程序员 正则问题,来看看吧
td>.*?<
这样?
PKCS#5 填充不能用于 AES 加密,看说是 Java 加密库历史遗留问题,所以在使用 AES 加密的时候写的是 PKCS5Padding ,实际是 PKCS7Padding
> https://crypto.stackexchange.com/a/9044
2023-01-19 18:07:26 +08:00
回复了 Great233 创建的主题 分享创造 分享个自己写的支持分屏浏览 V2EX 的 Chrome 插件
@K2 背景写死了,我来适配一下
2023-01-13 14:54:07 +08:00
回复了 Great233 创建的主题 PHP 闲着没事写了个获取 PSN 游戏列表和奖杯进度的库
test2
2023-01-13 14:50:14 +08:00
回复了 Great233 创建的主题 PHP 闲着没事写了个获取 PSN 游戏列表和奖杯进度的库
test
2023-01-12 11:29:17 +08:00
回复了 tool2d 创建的主题 分享创造 分屏浏览 V2EX,只需要两步。
```
document.querySelector('#Main>.box').addEventListener('click', (e) => {
const el = e.target;
if (el.tagName.toLowerCase() == 'a' && el.className.indexOf('topic-link') >= 0) {
let iframe = document.querySelector('iframe[name=topic-innerview]');
if (iframe) {
iframe.remove();
iframe = iframe.cloneNode();
} else {
iframe = document.createElement('iframe');
iframe.name = 'topic-innerview';
iframe.style.width = '100%';
iframe.style.height = `calc(100vh - ${el.offsetHeight}px)`;
}
const parent = el.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement;
parent.scrollIntoView();
const nextTopic = parent.nextElementSibling;
nextTopic.parentElement.insertBefore(iframe, nextTopic);
el.target = 'topic-innerview';
iframe.onload = () => {
iframe.contentWindow.document.body.style.width = '100%';
iframe.contentWindow.document.body.style.minWidth = '100%';
iframe.contentWindow.document.body.innerHTML = iframe.contentWindow.document.querySelector('#Main').outerHTML;
iframe.contentWindow.document.querySelector('#Main').style.marginRight = 0;
}
}
});
```
iframe 放在被点击话题下面?
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5436 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 07:43 · PVG 15:43 · LAX 00:43 · JFK 03:43
Developed with CodeLauncher
♥ Do have faith in what you're doing.