随笔分类 -  装逼专用文档

摘要:import zipfile import os import shutil def doc_to_png(file_name): zip_name = file_name.replace("docx", 'zip').replace("doc", 'zip') os.rename(file_nam 阅读全文
posted @ 2021-08-06 14:29 介个车车烫屁股 阅读(440) 评论(0) 推荐(0)
摘要:azkaban任务表 CREATE TABLE `bi_azkaban_task_v1` ( `task_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '任务id', `task_name` varchar(255) NOT NULL COMMENT '任务 阅读全文
posted @ 2021-06-04 16:45 介个车车烫屁股 阅读(378) 评论(0) 推荐(0)
摘要:/* Border styles */ #table-1 thead, #table-1 tr { border-top-width: 1px; border-top-style: solid; border-top-color: #a8bfde; } #table-1 { border-botto 阅读全文
posted @ 2021-05-27 00:35 介个车车烫屁股 阅读(769) 评论(0) 推荐(0)
摘要:美化大师 utools 阅读全文
posted @ 2021-05-25 10:05 介个车车烫屁股 阅读(88) 评论(0) 推荐(0)
摘要:#!/usr/bin/env python # -*- coding: utf-8 -*- from .config import * import requests import json class Bot: def __init__(self, app): self.app = app # a 阅读全文
posted @ 2021-05-19 11:01 介个车车烫屁股 阅读(2209) 评论(0) 推荐(0)
摘要:方法一 镜像站:github.com.cnpmjs.org 用法:直接用 "github.com.cnpmjs.org" 代替 "github.com" 即可 方法二: 镜像站:https://gitclone.com/ 欲克隆:git clone https://github.com/tomasr 阅读全文
posted @ 2021-05-18 22:41 介个车车烫屁股 阅读(81) 评论(0) 推荐(0)
摘要:交换变量值 a = 1 b = 2 #bad操作 c = a a = b b = c #better操作 a,b = b,a zip压缩与解压 a = [1, 2, 3] b = ['a', 'b', 'c'] z = zip(a, b) # 返回结果为:[(1, 'a'), (2, 'b'), ( 阅读全文
posted @ 2021-05-07 23:45 介个车车烫屁股 阅读(50) 评论(0) 推荐(0)
摘要:第1步 安装node.js,前往官网下载,下载后默认安装即可。下载地址node.js 第2步 安装淘宝源cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org 第3步 安装hexo cnpm install -g hex 阅读全文
posted @ 2021-04-12 22:41 介个车车烫屁股 阅读(60) 评论(0) 推荐(0)