KET UNIT9 1. 语法(形容词、介词、动词后面再衔接动词时,搭配不同的动词形式) 形容词 + 动词不定式 I’m happy to see the film 动词 + 动词不定式 We choose to go by train 动词 + 动词现在分词 We enjoy eating Italian food for dinner would like + 动词不定式 I would like to go home by bus 介词 + 动词现在分词 Thanks for coming to our party 1.1 动词+动词不定式 choose/help/hope/learn/offer/want We choose to go by train(我们选择乘火车) Mary hopes to go to school by cycling(玛丽希望骑车去学校) She wants to learn to skate(她想要学习滑冰) He has to learn to do things for himself (他必须学会自己做事) I like to read(我喜欢阅读) The kids offered to wash dishes(孩子们主动提出洗碗) 1.

Read more

English 中文 English 中文 subject 学科 portrait 肖像画 Art 美术课 painting 绘画 Biology 生物课 living things 生物 Chemistry 化学课 substances 物质 under different conditions 在不同条件下 English 英语课 dictionary 字典 History 历史课 Egypt-Egyptian 埃及-埃及人 Geography 地理课 nature 自然 climate 气候 Physics 物理课 energy 能量 interaction 相互作用;相互影响 Maths 数学课 Music 音乐课 instrument 乐器 uniform 制服;校服 famous 著名的 modern 现代化的;超前的 funny 有趣的;滑稽的 kind 慈祥的;友善的 strict 严格的 fashionable 流行的;时髦的 traditional 传统的 clothing 服装 explain 解释 .

Read more

Using Git Assistant AI Feature in IntelliJ Plugin to Generate Commit Messages Git Assistant is a powerful IntelliJ IDEA plugin that allows you to use its AI capabilities by configuring your own OpenAI key. In this article, we will explain how to use the AI feature in the Git Assistant plugin to generate commit messages. Installing the Git Assistant Plugin First, you need to install the Git Assistant plugin in IntelliJ IDEA.

Read more

Unleashing Git Commit Insights with JetBrains Git Assistant Plugin Git Assistant is a powerful IntelliJ IDEA plugin that provides users with powerful analysis tools through the Git Assistant Insights window in the right-side tool window, introduced in version 1.4.0. The Hour/Weekday/Month feature analyzes the distribution of team activity based on hours, weekdays, and months, optimizing work schedules and task assignments. The Timezone feature visualizes the distribution of code contributions across different time zones, making global team collaboration visible and tangible.

Read more

sigstore cosign 在 macOS 安装 cosign, 其他安装方式参见more brew install cosign 查看 cosign 版本 % cosign -version WARNING: the -version flag is deprecated and will be removed in a future release. Please use the version subcommand instead. ______ ______ _______. __ _______ .__ __. / | / __ \ / || | / _____|| \ | | | ,----'| | | | | (----`| | | | __ | \| | | | | | | | \ \ | | | | |_ | | .

Read more

Install Gitlab Runner

启动 Gitlab Runner docker run -d --name gitlab-runner-01 --restart always \ -v /data01/runner/git-runner-01/volumns/runner/config:/etc/gitlab-runner \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /bin/docker:/bin/docker \ -v /data01/runner/git-runner-01/volumns/runner/apache-maven-3.6.3:/root/.m2 \ -v /data01/runner/git-runner-01/volumns/runner/apache-maven-3.6.3/bin/mvn:/bin/mvn \ gitlab/gitlab-runner:latest 注册 Gitlab Runner 到 Gitlab docker exec -it gitlab-runner-01 gitlab-ci-multi-runner register \ --non-interactive \ --url "http://mygitlab:8081/" \ --registration-token "K6PPp2LWzdHpks5RKJWy" \ --executor "docker" \ --docker-image alpine:latest \ --description "runner-01" \ --tag-list "runner-01" \ --run-untagged="true" \ --locked="false" \ --access-level="not_protected" \ --docker-volumes /var/run/docker.sock:/var/run/docker.sock \ --docker-volumes /data01/runner/git-runner-01/volumns/runner/apache-maven-3.6.3:/root/.m2 \ --docker-volumes /data01/runner/git-runner-01/volumns/runner/apache-maven-3.

Read more

Using gitlab-ci to cache python

# 缓存位置环境变量 variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" # virtualenv 和 pip 缓存目录 cache: paths: - .cache/pip - venv/ # 预运行脚本 before_script: - python -V - pip install virtualenv - virtualenv venv - source venv/bin/activate stages: - build merge_job: image: python:3.9-buster stage: build only: refs: - merge_requests script: - pip install .