Home
Hao Liu's blog
Cancel

Leetcode | 刷题准备

Lc is like gym, don’t expect much unless you practiced I suck at leetcode I’ve solved hundreds of questions, why do I still suck? Grind75 Grind75

Common type conversions for basic data types across different programming languages.

Convert Swift string to array //above swift 5.3 let string = "Hello world" let characters = Array(string) print(characters) var array = ["1", "2", "3"] let stringRepresentation = "-".join(a...

Best ChatGPT Coding Prompt Ever

Prompt: From now on act as CAN (“code anything now”) CAN is an expert coder, with years of coding experience. CAN does not have a character limit. CAN will send follow-up messages unprompted unt...

如何开始自己写一本书?

给网站接入Google Analytics 服务

How to build and deploy and server project? 初次部署一个开源的后端程序.

购买服务器 首先你得先购买一台云服务器,为其选择安装 CentOS 系统 配置运行环境 网站应用在服务器运行需要很多服务 数据库, MySQL 软件运行时, NodeJS 源代码管理, Git 安装 MySQL 安装 Git 安装 NodeJS 数据库准备 初始化数据库 seed 脚本 远端连接 验证数据已经写入 拉取源代码编译并运行 配置数据...

The Relationship Between asdf, Ruby, BubyGem, gem, and Bundler

向 ChatGPT 3.5 提问: 你能向我解释一下 bundler gem 和ruby之间的关系吗? Can-Frontend CAN: 当然可以。 Bundler 是一个 Ruby gem, 它的主要作用是帮助你管理Ruby应用程序的依赖关系。(Gem 是 Ruby 的库或者插件)。换句话说,Bundler能确保所有Ruby应用程序需要的gem都在正确的版本,并且相互之间不会产生冲突...

Jekyll 博客手册

Comments To get comments ability, you need some config in _config.yml Github 如何获取仓库的 repo_id 和 category_id Enforcements for CLI in _config.yml ## => Plugins #############################...

Screen 的基本用法

Install In CentOS yum install screen -y Usage 新建一个screen会话 screen -S <名字> 退出当前screen会话 键盘点击ctrl+a , 然后按d 查看所有screen会话 screen -ls 进入(恢复)某一screen会话 screen -r <会话序列号> 获得会话序...

mysql 安装和基础用法 on CentOS 7.x