一、人生算法A计划:把你打造成一辆赛车 《人生算法》的造车计划,四个轮子是“感知 认知 决策 行动”,发动机就是我们每个人的内核,导航系统是愿景。 这辆车就是你我的个人系统,通过它,我们才能长途跋涉,去坚持做长期且有复利的事情。 1、闭环: PDCA循环:计划(Plan)、执行(Do)、检查(Che ...
分类:
编程语言 时间:
2019-12-09 10:20:00
阅读次数:
267
Sometimes the flex items within a flex container do not fill all the space in the container. It is common to want to tell CSS how to align and space o ...
分类:
Web程序 时间:
2019-12-08 23:24:34
阅读次数:
145
1创建进程的两种方式 # 开启子进程的方式一: ''' from multiprocessing import Process import time def task(name): print('%s is running' %name) time.sleep(3) print('%s is do ...
分类:
其他好文 时间:
2019-12-08 10:51:52
阅读次数:
74
static关键字在Java程序开发过程中主要进行属性和方法的定义。 static 定义属性: 类中的最主要的组成就是属性和方法,那么在说static之前,先看看一下问题: 范例:定义一个描述球的信息类: class Ball{ private String classify; private do ...
分类:
其他好文 时间:
2019-12-08 10:50:01
阅读次数:
83
/* Generated By: IFC Tools Project EXPRESS TO JAVA COMPILER: Do not edit this file!! */package ifc2x3javatoolbox.ifc2x3tc1;/** * This is a default imp ...
分类:
其他好文 时间:
2019-12-07 21:09:48
阅读次数:
62
一个fooo视图,一个barrr视图。通过点击视图里的链接,进行一些操作之后,返回fooo或barrr路由。 点击 URL:127.0.0.1:5000/fooo中的链接实现重定向,如下: 链接的相对URL:/do_somethinggg?next=%2Ffooo%3F 如果我在地址栏中输入:htt ...
分类:
Web程序 时间:
2019-12-07 20:55:40
阅读次数:
149
参考:How do you organize your projects? [closed] 地址:https://softwareengineering.stackexchange.com/questions/40394/how-do-you-organize-your-projects 在设计项 ...
分类:
其他好文 时间:
2019-12-07 19:38:34
阅读次数:
93
Active Ball is a simple game. All you need to do is aim at the food and shoot it, then collect the material. This game looks very simple, but it's a l ...
分类:
其他好文 时间:
2019-12-07 19:23:51
阅读次数:
118
$repeat=$true do { Write-Host "1 - MENU" Write-Host "2 - MOVE" Write-Host "3 - EXIT" [int]$selection=Read-Host "make your selection:" switch ($selecti ...
分类:
其他好文 时间:
2019-12-07 16:19:58
阅读次数:
84
1 void input() { 2 struct stud_node *q; 3 do { 4 q = (struct stud_node*)malloc(sizeof(struct stud_node)); 5 scanf("%d",&q->num); 6 if ( q->num != 0){ ...
分类:
其他好文 时间:
2019-12-07 14:09:18
阅读次数:
244