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

推荐订阅源

J
Java Code Geeks
美团技术团队
Recent Announcements
Recent Announcements
B
Blog
GbyAI
GbyAI
雷峰网
雷峰网
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
V
V2EX
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
aimingoo的专栏
aimingoo的专栏

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')