Giter Club home page Giter Club logo

Hi there 👋

import asyncio
import random
from itertools import count


async def describe(description: str) -> str:
    await asyncio.sleep(random.random() / 10)
    print(description)
    return description


async def main() -> None:
    descriptions = [
        describe("Simulation Engineer"),
        describe("Python Developer"),
        describe("Rust Enthusiast"),
    ]
    tasks = [asyncio.create_task(description) for description in descriptions]
    await asyncio.gather(*tasks)


if __name__ == "__main__":
    cnt = count()
    while True:
        print(f"Cycle {next(cnt)}: ")
        asyncio.run(main())
        print()
Cycle 0:
Simulation Engineer
Python Developer
Rust Enthusiast

Cycle 1:
Rust Enthusiast
Simulation Engineer
Python Developer

Cycle 2:
Python Developer
Rust Enthusiast
Simulation Engineer
...

Jerry Wu's Projects

system-design-101 icon system-design-101

Explain complex systems using visuals and simple terms. Help you prepare for system design interviews.

textual icon textual

The lean application framework for Python. Build sophisticated user interfaces with a simple Python API. Run your apps in the terminal and a web browser.

toolong icon toolong

A terminal application to view, tail, merge, and search log files (plus JSONL).

transcendent-textual icon transcendent-textual

A personal project to gather up links to as many Textual sources, libraries and applications as possible.

zig icon zig

General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.