Git Product home page Git Product logo

blog's Introduction

Hi! 👋

Welcome to my page!

tomaChen's github stats

🔭I’m currently code with

  • Go
  • Java
  • Python
  • Shell
  • JavaScript

Java Golang Docker TypeScript git JavaScript npm Shell Nodejs Spring

💬Contact Me

🌱 I’m currently learning

  • Dubbo
  • GRPC

blog's People

Contributors

tomachen513 avatar

Watchers

 avatar

blog's Issues

MacOS环境变量使用

查看系统环境变量路径

echo $PATH

环境变量文件

系统级

/etc/paths 
/etc/paths.d/ 目录下有一些用户设置的变量
/etc/profile,/etc/bashrc一般这两个不需要修改

用户级

~/.bashrc
~/.zshrc
~/.bash_profile 
~/.bash_login 
~/.profile
~/.bashrc和~/.zshrc是bash shell打开的时候载入的。通常查看~/.bashrc和~/.zshrc二者即可。

修改环境变量

找到对应的环境变量文件后,修改后source。
export PATH="$PATH:<PATH 1>:<PATH 2>:<PATH 3>:...:<PATH N>"

Markdown编程常用语法

下文按使用频率以及掌握程度记录

1. 列表

无序列表

  • 第一项
  • 第二项
  • 第三项

有序列表

  1. 第一项
  2. 第二项
  3. 第三项

2. 区块

block1

3. 代码块

codec

4. 标题

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

5. 文字格式

斜体文字

粗体文字

粗斜体文字

6. 其他

分割线如下:


删除线

Docker常用安装指南

ETCD

  1. 下载镜像
docker pull bitnami/etcd:latest
  1. 设置网络(可选)
docker network create app-tier --driver bridge
  1. 运行容器
docker run -d --name etcd-server \
    --network app-tier \
    --publish 2379:2379 \
    --publish 2380:2380 \
    --env ALLOW_NONE_AUTHENTICATION=yes \
    --env ETCD_ADVERTISE_CLIENT_URLS=http://etcd-server:2379 \
    bitnami/etcd:latest

GPT Prompt

  1. 复述 Paraphrase the following text

  2. 翻译 Translate the following text into English

  3. 解释 Explain the following message

  4. 润色
    Below is a paragraph from an academic paper. Polish the writing to meet the academic style, and improve the spelling, grammar, clarity, concision, and overall readability. When necessary, rewrite the whole sentence. Furthermore, list all modifications and explain the reasons to do so in the markdown table. Output the full text after rewriting.Original paragraph:

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.