本博客由 [Pipe](https://github.com/b3log/pipe) 强力驱动
0 篇文章

Django 基础入门篇(一)

1.概述为啥选择 Django?我不知道,但我知道并可以肯定的是,这种问题你去度娘或者谷歌的话,会出现很多优秀的答案。而我并不关心这点,我选择 Django,仅仅是为了去学 jumpserver 开源堡垒机的源码,并尝试做一些简单常用的二次开发。2.安装 Django 基本环境:操作系统-macOSMojave 内存-16Gpython 版本-3.7 使用 python 安装 DjangopipinstallDjango 查

vsc server 搭建实战

沐风官网地址:https://github.com/codercom/code-server 操作系统环境:centos7.51 核 1G20G 硬盘软件环境:docker1.18.09 安装 code-serverdockerrun-it-p127.0.0.1:8443:8443-v"${PWD}:/home/coder/project"codercom/code-server--allow-http--no

[日常 LeetCode] 2. Add Two Numbers

Q:Youaregiventwonon-emptylinkedlistsrepresentingtwonon-negativeintegers.Thedigitsarestoredinreverseorderandeachoftheirnodescontainasingledigit.Addthetwonumbersandreturnitasalinkedlist.Youmayassumethetw

4 月份 python 学习计划

沐风目标很简单就是实现一个简单的运维自动化管理平台,参考资料见附录本学习计划 1.阅读 jumpserver 源码 2.阅读 jumpserver 源码 3.阅读 jumpserver 源码加油加油加油!!!附录:1.https://github.com/YoLoveLife/DevOps#howtoinstall2.运维综合管理平台(python3+flask+pycharts+scheduler+gunicorn

python 正式学习第一个月

1.起源一次群里闲聊,加入了由阳光发起的 python 自动运维学习的群。起初,阳关死活不让我加入群,因为他知道我有一点编程的基础,觉的不适合一起学习。我硬是死皮赖脸的,让他把我拉到群里里面。加群的第一天,阳关和我说了规则,具体规则如下:我很慌,万一落下一次,我需要发一个 4 个人的 300 元红包,作为一次惩罚。因为钱少了,不会心疼。钱多了,反而起不到作用。300 元还是属于能接受的范围。就这样我加入了这样的一

ISBN-API 图书接口 python

沐风接口地址:http://47.93.251.102/api 请求方式:GET 请求参数参数参数名类型描述示例 isbnisbn 号 string 书的 isbn 号 9787553401119Demo 请求 http://47.93.251.102/api?isbn=9787553401119 返回项目地址:https://github.com/mufengcoding/PythonOps/tree/master/is

[日常 LeetCode] 1.Two Sum

很简单的一道题目:1.TwoSumGivenanarrayofintegers,return**indices**ofthetwonumberssuchthattheyadduptoaspecifictarget.Youmayassumethateachinputwouldhave**_exactly_**onesolution,andyoumaynotusethe_same_elementtwic

[翻译] 是的,Python 很慢,我不关心

原文链接:https://hackernoon.com/yes-python-is-slow-and-i-dont-care-13763980b5a1 我正在讨论关于 Python 中的 asyncio 的讨论,以谈谈我最近想到的一些事情:Python 的速度。对于那些不知道的人,我有点像 Python 粉丝,我尽我所能积极地使用 Python。人们对 Python 的最大抱怨之一就是它很慢。有些人几乎拒绝尝试 pytho

[翻译] 为什么 Python 这么慢?

原文链接:https://hackernoon.com/why-is-python-so-slow-e5074b6fe55bPython 正在蓬勃发展。它用于 DevOps,数据科学,Web 开发和安全。然而,它并没有为速度赢得任何奖牌。Java 如何在速度方面与 C 或 C++ 或 C#或 Python 进行比较?答案很大程度上取决于您运行的应用程序类型。没有基准是完美的,但计算机语言基准游戏是一个很好的起点。十多年来

啃下 python(一)-- 环境安装

pyenv 安装下载 pyenv,并使其在终端生效 gitclonehttps://github.com/yyuu/pyenv.git~/.pyenvecho'exportPYENV_ROOT="$HOME/.pyenv"'>>~/.bash_profileecho'exportPATH="$PYENV_ROOT/bin:$PATH"'>>~/.bash_profileecho'eval"$(pyenvi