惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
B
Blog
博客园 - Franky
H
Help Net Security
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
云风的 BLOG
云风的 BLOG
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
宝玉的分享
宝玉的分享
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
V
V2EX
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队

Dev

这个设定已经在 2022 年 2 月 10 日移除:降权账号不触发提醒 Tornado demos 初心 Safari Technology Preview Now or Never 一个试验中的新的发帖接口 Topic Links Responsive Separators 在技术话题中彻底跑题的回复会被删除 caniusepython3 Spam Pattern V2EX.com/i 增加 Pixelated Display 图片渲染方式 What's New in Chrome 87 新的顶部搜索框 Social 设置中现在支持填入 Nintendo Friend Code,然后就会在个人主页上显示 未读提醒界面的加载行为改进 密码成功更新之后,现在会发送提示邮件 论持续折腾 New Menu for Mobile @ghui 关于接下来会进行的 HTML 调整 16px Deployed: Sticky Reply Box V2EX 2020 改进了主题移动及创作新主题选择节点时的体验 StackOverflow 的锁帖机制 绿色小圆圈的囚徒 部署了夜间模式的代码高亮 最近在持续推进的两件事情 IndieWeb Standards 关于 V2EX 的节点的帮助文档
Generate Tornado Cookie Secret
Livid · 2019-08-14 · via Dev
#!/usr/bin/env python

import base64
import os

# Get a number that is random enough for cryptographic purposes.
print base64.b64encode(os.urandom(50)).decode('ascii')