Git Product home page Git Product logo

gitalk-comments's People

Contributors

jojojotarou avatar

Watchers

 avatar

gitalk-comments's Issues

Introduction | JoJoJotarou

https://blog-jojojotarou.vercel.app/

Acerbo datus maxime # Astris ipse furtiva # Est in vagis et Pittheus tu arge accipiter regia iram vocatur nurus. Omnes ut olivae sensit arma sorori deducit, inesset crudus, ego vetuere aliis, modo arsit? Utinam rapta fiducia valuere litora adicit cursu, ad facies Suis quot vota # Ea furtique risere fratres edidit terrae magis. Colla tam mihi tenebat: miseram excita suadent es pecudes iam. Concilio quam velatus posset ait quod nunc!

Scoop:Windows 的包管理工具 | JoJoJotarou

https://blog-jojojotarou.vercel.app/posts/apps/scoop/

相关链接:
Scoop 安装 # Set-ExecutionPolicy RemoteSigned -scope CurrentUser iwr -useb get.scoop.sh | iex 多线程加速下载 # # 安装自动启动 scoop install aria2 # 启用/禁用 scoop config aria2-enabled true scoop config aria2-enabled false 设置代理 # # 设置代理 scoop config proxy 127.0.0.1:10801 # 删除代理 scoop config rm proxy 添加扩展源增加可下载的软件包 # # 必须关键 scoop install 7zip git # git禁用ssl验证 git config --global http.sslVerify "false" # 一个集合bucket scoop bucket add apps https://gitee.

Basics Of Java | JoJoJotarou

https://blog-jojojotarou.vercel.app/notes/java/basics-java/

计算机存储单位 # 基本储存单元 # 位(bit,b):二进制数中的一个数位,可以是 0 或者 1,是计算机中数据的最小单位。 字节(Byte,B):计算机中数据的基本单位,每 8 位组成一个字节。各种信息在计算机中存储、处理至少需要一个字节。例如,一个 ASCII 码用一个字节表示,一个汉字用两个字节表示。 字(Word):两个字节称为一个字。汉字的存储单位都是一个字。 字符/字符集、字体、码位、编码 # 字符/字符集: 诸如a、中等都被称为字符,它们的集合就是字符集 字体:用于在计算机上显示字符 码位:每一个字符都有一个码位,例如ASCII 编码:按照编码规则(例如:GBK、UTF-8)将字符以二进制的形式存储到计算机上 UTF-16和UTF-8 # UTF-16中的16指一个字符用2字节表示,UTF-8中的8指的是可变,可以是一个字节也可以是2、3个字节 Java8使用UTF-16编码,Java18使用UTF-8编码(在Java8-17可以使用java -Dfile.encoding=UTF-8改变字符集) 原始数据类型 # 原始数据类型不是对象,不需要实例化即可直接使用 字符型 char 布尔型 boolean: true / false 数值型 整数型 byte 字符型 short int 整型 long 浮点型 float double 关键字 字节数 默认值 char 2 '\u0000' boolean - false byte 1 0 short 2 0 int 4 0 long 8 0 float 4 0.

Superset 第一篇:安装 (Docker) | JoJoJotarou

https://blog-jojojotarou.vercel.app/notes/superset/1-superset/

本文的在x86/amd64架构系统完成
Superset Version:1.3.2
Apache Superset 官网
简单安装(尝鲜) # 使用默认的数据库sqllite存储superset元数据 不支持连接外部数据源 # 获取镜像 docker pull apache/superset:1.3.2 # 启动镜像 docker run -d -p 8088:8088 --name superset apache/superset # 创建admin用户 docker exec -it superset superset fab create-admin --username admin --firstname Superset --lastname Admin --email [email protected] --password admin # 升级local db docker exec -it superset superset db upgrade # 初始化角色信息 docker exec -it superset superset init 访问http://localhost:8088/login/,默认用户名/密码为:admin/admin

Introduction | JoJoJotarou

https://blog-jojojotarou.vercel.app/

Acerbo datus maxime # Astris ipse furtiva # Est in vagis et Pittheus tu arge accipiter regia iram vocatur nurus. Omnes ut olivae sensit arma sorori deducit, inesset crudus, ego vetuere aliis, modo arsit? Utinam rapta fiducia valuere litora adicit cursu, ad facies Suis quot vota # Ea furtique risere fratres edidit terrae magis. Colla tam mihi tenebat: miseram excita suadent es pecudes iam. Concilio quam velatus posset ait quod nunc!

Hugo:如何搭建这个网站 | JoJoJotarou

https://blog-jojojotarou.vercel.app/posts/hugo-on-vercel/

相关链接:
Hugo hugo-book Hugo 的工作原理 Vercel 部署 Hugo # 🔔 Vercel 使用请自行百度
注意通过 Vercel 模板部署hugo会失败(依旧推荐使用 Vercel 模板部署,否则请参考hugo quick start创建 github 项目在到 Vercel 上部署),找到项目Settings添加环境变量HUGO_VERSION,值为hugo 最新版版本号,这里我给的是0.95.0,若非模板部署,在Deploy时添加变量即可。
Hugo 简单使用 # 👍 Windows 推荐使用 Scoop 或者 Chocolatey,更多安装细节参考官方文档
安装 go、git、hugo、hugo-extended
scoop install golang git hugo hugo-extended 克隆项目到本地
git clone https://github.com/yourName/yourRepo.git 启动 hugo 服务,并实时监听文章变化(默认访问地址:http://localhost:1313/)
hugo server -D 创建文章(👍 推荐使用hugo new命令创建文章,可以自动添加 FrontMatter)
hugo new posts/my-first-post.md 提交修改,Vercel 会自动部署
Hugo 深入使用 # 添加/更换主题 # 下载主题

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.