Skip to content

Latest commit

 

History

History
152 lines (120 loc) · 5.51 KB

dev.md

File metadata and controls

152 lines (120 loc) · 5.51 KB

codelab.club 主站

依赖

usage

Hugo中文文档

hugo new site hugo_demo_site
cd hugo_demo_site
cd themes
git clone https://github.com/themefisher/airspace-hugo

将themes/airspace-hugo/exampleSite的文件复制出来

结构

  • home
  • blog
  • -> events(work)
  • -> service
  • about
  • contact

新增内容

events -> 火星车活动 service -> 已有网站 / 公众号 OUR SERVICES

todo

二维码

写博客

hugo new blog/first.md

浏览

hugo server --theme=airspace-hugo --buildDrafts

发布

make push

一些资源图片(CC0 License)

blog

themes/airspace-hugo/layouts/_default/list.html 模版

使用more注释标签来写摘要

栏目

按照yc课程的建议,先start-up,把流程走通

外部连接

使用code clab 卡片式资源入口,带入最好的资源 以兴趣分流 * code club入门课程 * cn * makecode * raspberry * 志愿者(页脚) * 入门,如何让一个人入门 * 软件,硬件,后续 * 活动 * about

提取图片到本地

自托管图片,避免云故障

ack -ho "http://wwj-fig-bed.just4fun.site/.*.png" > /tmp/codelab_blog_png_list.txt

取得图片列表保存下来

cd img

python3

import subprocess
with open("/tmp/codelab_blog_png_list.txt") as png_url_list:
    urls = png_url_list.readlines()
for url in urls:
    cmd = f"wget {url}"
    # print(cmd)
    subprocess.call(cmd,shell=True)