Good, better, best. Never let it rest.

官网:https://maven.apache.org/

  • 配置文件使用镜像

${user.home}/.m2/settings.xml

1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>huaweicloud</id>
<mirrorOf>*</mirrorOf>
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
</mirror>
</mirrors>
</settings>
阅读全文 »

🏣 代码复用是工作中非常重要的一项内容,把各个项目复用性比较高的一些类库提取出来,放到公共的仓库中,做成composer自定义package。不同的项目使用时直接引入使用,简直不要太爽,具体实现步骤如下:

阅读全文 »

🪜 记录一些自己在软件管理方面的过失,希望吸取教训,不再出现类似的失误。我把这个过程分成四个阶段,详细记录分析。

阶段一

Mac系统升级后,取消了自带PHP,我们只能自己安装。安装最好的办法是使用Homebrew安装,方便升级和卸载(当然,这是事后才明白的,🐶)。

阅读全文 »

📊 Apache Superset is a modern data exploration and visualization platform. 下面介绍一下项目选择方案上的考虑,和superset的安装使用。

阅读全文 »