<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
    <channel>
        <title>Coding and Life</title>
        <link>http://xubin.pub</link>
            <description></description>
        <language>zh-CN</language>
                <item>
                    <title>
                        <![CDATA[
                            路由器设置
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/ac86u</link>
                    <content:encoded>
                        <![CDATA[
                            华硕 RT-AC68U
在系统管理-&gt;系统设置 允许ssh登陆
ssh usernamne@192.168.1.1 输入密码

sed -i 's/\tdetect_package/\t# detect_package/g' /koolshare/scripts/ks_tar_install.
                        ]]>
                    </content:encoded>
                    <pubDate>Apr 3, 2022 11:16:27 PM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            centos7 安装opencc
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/opencc</link>
                    <content:encoded>
                        <![CDATA[
                            centos 安装opencc
                        ]]>
                    </content:encoded>
                    <pubDate>Mar 3, 2022 7:08:09 AM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            truncate 清库
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/truncate_table</link>
                    <content:encoded>
                        <![CDATA[
                            执行该命令获取所有清空表
select CONCAT('truncate TABLE ',table_schema,'.',TABLE_NAME, ';') from INFORMATION_SCHEMA.TABLES where  table_schema in ('database');


                        ]]>
                    </content:encoded>
                    <pubDate>Apr 22, 2021 2:48:25 AM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            mongodb 查询
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/mongodb+%E6%9F%A5%E8%AF%A2</link>
                    <content:encoded>
                        <![CDATA[
                            mongodb _id查询
$time = time(); // 时间戳
$objectId = dechex($time) . '0000000000000000'; // 时间戳转十六进制，0补位
user.find({&quot;_id&quot;: {&quot;$gt&quot;: Obj
                        ]]>
                    </content:encoded>
                    <pubDate>Dec 24, 2020 10:41:46 PM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            docker sonarqube postgres
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/sonarqube</link>
                    <content:encoded>
                        <![CDATA[
                            拉取镜像
docker pull postgres //拉取数据库
docker pull sonarqube //拉取sonarqube
启动服务
//启动数据库
docker run --name db -e POSTGRES_USER=sonar -e POSTGRES_PASSWORD=so
                        ]]>
                    </content:encoded>
                    <pubDate>Aug 19, 2020 9:34:05 PM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            Git 常用命令配置 二
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/Git+%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4%E9%85%8D%E7%BD%AE+%E4%BA%8C</link>
                    <content:encoded>
                        <![CDATA[
                            设置代理
设置
git config --global https.proxy  http://127.0.0.1:1087
git config --global http.proxy  http://127.0.0.1:1087
查看
git config --global --get http
                        ]]>
                    </content:encoded>
                    <pubDate>May 19, 2020 2:40:00 AM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            Git 常用命令配置
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/Git+%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4%E9%85%8D%E7%BD%AE</link>
                    <content:encoded>
                        <![CDATA[
                            查看全局配置列表
git config -l
查看局部配置列表
git config --local --list
查看已设置的全局用户名/邮箱
git config --global --get user.name
git config --global --get user.email
设置全局
                        ]]>
                    </content:encoded>
                    <pubDate>May 19, 2020 2:31:31 AM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            laravel mongodb 聚合查询
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/laravel+mongodb+%E8%81%9A%E5%90%88%E6%9F%A5%E8%AF%A2</link>
                    <content:encoded>
                        <![CDATA[
                            $results = User::raw(function ($collection) use ($userId) {
            return $collection-&gt;aggregate([
                [
                    '$mat
                        ]]>
                    </content:encoded>
                    <pubDate>May 19, 2020 2:24:54 AM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            zookeeper
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/zookeeper</link>
                    <content:encoded>
                        <![CDATA[
                            安装zookeeper
下载源码包，并解压
wget https://archive.apache.org/dist/zookeeper/zookeeper-3.5.6/apache-zookeeper-3.5.6.tar.gz
tar zxvf apache-zookeeper-3.5.6.tar
                        ]]>
                    </content:encoded>
                    <pubDate>Feb 12, 2020 1:46:18 AM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            2020年第一次笔记
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/2020%E5%B9%B4%E7%AC%AC%E4%B8%80%E6%AC%A1%E7%AC%94%E8%AE%B0</link>
                    <content:encoded>
                        <![CDATA[
                            2020年已经过了17天。想立一些今年的flag 但还没想好。

                        ]]>
                    </content:encoded>
                    <pubDate>Jan 16, 2020 10:24:59 PM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            扎心笔录
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/%E6%89%8E%E5%BF%83%E7%AC%94%E5%BD%95</link>
                    <content:encoded>
                        <![CDATA[
                            你在无知无觉的午后打盹，
我在心里走过万水千山，
经历千种悲喜，
推演万种可能。
这是爱的狭义相对论，时间可以短，可以长。
--摘自 八月长安

                        ]]>
                    </content:encoded>
                    <pubDate>Sep 29, 2019 11:16:59 PM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            无题
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/%E6%97%A0%E9%A2%98</link>
                    <content:encoded>
                        <![CDATA[
                            以为见到的即是真
可是早已闭上双眼
原来一切都是幻想

                        ]]>
                    </content:encoded>
                    <pubDate>Sep 29, 2019 11:12:57 PM</pubDate>
                </item>
                <item>
                    <title>
                        <![CDATA[
                            从头开始更新
                        ]]>
                    </title>
                    <link>http://xubin.pub/archives/%E4%BB%8E%E5%A4%B4%E5%BC%80%E5%A7%8B%E6%9B%B4%E6%96%B0</link>
                    <content:encoded>
                        <![CDATA[
                            又一次开始更新博客，期间断更2年多。之前的博客是在另外一台服务器的，由于那台服务器不能续费，加上到期的时候我在国外没有办法把文件迁移出来，导致那台服务器上的所有资料都没有了。现在我这边正在找寻之前写的记录，重新发布出来

                        ]]>
                    </content:encoded>
                    <pubDate>Sep 27, 2019 2:59:19 AM</pubDate>
                </item>
    </channel>
</rss>