拟挽歌辞·荒草何茫茫


拟挽歌辞·荒草何茫茫

-- 陶渊明

荒草何茫茫,白杨亦萧萧。
严霜九月中,送我出远郊。
四面无人居,高坟正嶕峣。
马为仰天鸣,风为自萧条。
幽室一已闭,千年不复朝。
千年不复朝,贤达无奈何。
向来相送人,各自还其家。
亲戚或余悲,他人亦已歌。
死去何所道,托体同山阿。

我的毕业设计--数据库设计之站内信


站内信设计

逻辑实现

点对点(私信)

  • 发送方

    sender

  • 接收方

    receiver

  • 状态

    status

  • 信息内容

    message

  • 信息分类

    message_type

  • 发送时间

    created_at

    点对点发送消息比较简单,每次发送为单表时插入 sender, receiver, message, created_at

    (伪代码)

  • 获取未读信息
    select message from message where reveiver_id == 'user.id' and status = 'unread';
    
  • 获取系统未读信息
    select message from message where reveiver_id == 'user.id' and status = 'unread' and message_type = 'sys'
    
  • 获取已读信息 …

我的毕业设计--数据库设计之登陆注册


登陆注册数据库设计

共同字段:

  • id

    主键,自增ID

用户表

tablename: user
字段名 字段类型 字段描述 是否为空 是否unique 默认值
username string(20) 用户名 False True
password string(100) 密码 False False
email string(49) 邮箱 False True
is_superuser bool 是否为超级管理员 False False False
is_confirmed bool 邮箱是否验证 False False False
register_time datetime 注册时间 False False UTC时间
last_login …

世界总是充满杯具


独自旅行的杯子

<2017-10-20 五 18:53>

世界总是充满杯具,正如陪伴了我大学三年多的水杯,独自坐上了开往广州的火车,离我而去

:运动是相对的

忘记背包的英文

世界总是充满杯具,正如帮助一名忘记拉上背包拉链的外国友人,"Your...Your"了半天,最后一句"I help you"换来的却是一句中文的"谢(sei)谢(sei)"

: 背包 backpack

错过的火车

<2017-10-23 一 18:58>

世界总是充满杯具,正如那错过的火车,刚到月台,火车刚开走,只要再给我30s,不,就20s······

: 结果坐上了左边的动车(我买的可是高铁票)

honmaple社区程序config介绍


  • DEBUG

    生产环境选择False 测试环境选择True

  • SECRET_KEY

    安全密钥,可通过下面方法生成:

    >>> import os
    >>> os.urandom(24)
    b'\xdfr\xff\xd1\xbcO\xc1\xa9_\xcb\x18\x04\xa6ZVJ\xf8\xd26]\x07_HE'
    
  • SECURITY_PASSWORD_SALT

    加盐,主要用于生成邮箱验证url

  • REMEMBER_COOKIE_DURATION, PERMANENT_SESSION_LIFETIME

    设置记住我之后cookies保存时间 使用 datetime.timedelta(days=3)

  • PER_PAGE

    设置每页显示多少条主题

  • 定制缓存
    CACHE_REDIS_HOST = '127.0.0.1'
    CACHE_REDIS_PORT = '6379'
    CACHE_REDIS_PASSWORD = ''
    CACHE_REDIS_DB = 1
    
    CACHE_DEFAULT_TIMEOUT = 60
    CACHE_KEY_PREFIX = 'cache:'
    
  • SERVER_NAME

    设置域名,本地测试使用

    SERVER_NAME = 'localhost …

如何安装及使用honmaple社区程序


如何安装及使用

安装需要的package

pip install -r requirements.txt

配置config

查看配置详细介绍

注释下面代码

因为如果不注释的话 初始化数据库 会报错

文件位置: maple/topic/forms.py

category = SelectField(
    _('Category:'),
    choices=[(b.id …

I Have Not Loved the World


I have not loved the world, nor the world me;
I have not flatter'd its rank breath, nor bow'd
To its idolatries a patient knee, --
Nor coin'd my cheek to smiles, -- nor cried aloud
In worship of an echo; in the crowd
They could not deem me one of such; I stood
Among them, but not of them; in a shroud
Of thoughts which …