- 課程名稱: Angular 2 開發實戰:新手入門篇
為了能讓大家能在課堂上順利地進行實作,請先將需要的軟體全部安裝好,以下是安裝的相關軟體與安裝步驟與說明。
"""Comparison of fetching web pages sequentially vs. asynchronously | |
Requirements: Python 3.5+, Requests, aiohttp, cchardet | |
For a walkthrough see this blog post: | |
http://mahugh.com/2017/05/23/http-requests-asyncio-aiohttp-vs-requests/ | |
""" | |
import asyncio | |
from timeit import default_timer |
為了能讓大家能在課堂上順利地進行實作,請先將需要的軟體全部安裝好,以下是安裝的相關軟體與安裝步驟與說明。
Picking the right architecture = Picking the right battles + Managing trade-offs
<template> | |
<div> | |
<nav-bar></nav-bar> | |
<cookie-info></cookie-info> | |
<router-view></router-view> | |
<corporate-footer></corporate-footer> | |
</div> |
简明 Python 教程: http://woodpecker.org.cn/abyteofpython_cn/chinese/
一开始通读一遍这个很不错,是最简单明确的 Python 教程,最适合快速了解。
> I'm able to follow most of your instructions in the tutorial. However, | |
> there are things that are not yet obvious to me. If, for instance, I | |
> want to find the implementation of a specific built-in, where do I go? | |
> The `dis()` decompilation of `id()`, which I want to study, isn't | |
> instructive. Using `find ... -print0 | xargs -0 grep ...` also doesn't | |
> seem to get me anything useful. But I don't even see "builtins" file or | |
> a section of http://docs.python.org/3.3/c-api/index.html dealing with | |
> built-ins at all. Where should I be looking; how should I generalize | |
> this type of search for the future? |
This workshop will cover the basics of the CPython runtime and interpreter. There is an enormous amount of material to cover, and I'll try to to rush through as much as I can.