<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title><![CDATA[UNKNOWN]]></title> 
<atom:link href="https://note.sssscode.com/rss.php" rel="self" type="application/rss+xml" />
<description><![CDATA[]]></description>
<link>https://note.sssscode.com/</link>
<language>zh-cn</language>
<generator>www.emlog.net</generator>
<item>
    <title>firefox</title>
    <link>https://note.sssscode.com/?post=124</link>
    <description><![CDATA[<p>about:config<br />
browser.urlbar.trimURLs</p>]]></description>
    <pubDate>Mon, 13 Oct 2025 17:45:31 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=124</guid>
</item>
<item>
    <title>linux-screen</title>
    <link>https://note.sssscode.com/?post=123</link>
    <description><![CDATA[<h1>yum -y install epel-release</h1>
<h1>screen -ls<br />
screen -S hello<br />
screen -R hello<br />
screen -r hello<br />
screen -x hello<br />
screen -d hello<br />
screen -d -r hello<br />
screen -r [pid/name]<br />
screen -R [pid/Name] -X quit</h1>
<h1>vim ~/.screenrc<br />
defutf8 on<br />
defencoding utf8<br />
encoding UTF-8 UTF-8</h1>
<h1><a href="https://www.cnblogs.com/mchina/archive/2013/01/30/2880680.html">https://www.cnblogs.com/mchina/archive/2013/01/30/2880680.html</a></h1>]]></description>
    <pubDate>Sun, 31 Aug 2025 22:15:45 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=123</guid>
</item>
<item>
    <title>java-mvn</title>
    <link>https://note.sssscode.com/?post=122</link>
    <description><![CDATA[<h1><a href="https://maven.apache.org/download.cgi">https://maven.apache.org/download.cgi</a><br />
<a href="https://dlcdn.apache.org/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.tar.gz">https://dlcdn.apache.org/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.tar.gz</a><br />
<a href="https://dlcdn.apache.org/maven/maven-3/3.9.11/source/apache-maven-3.9.11-src.tar.gz">https://dlcdn.apache.org/maven/maven-3/3.9.11/source/apache-maven-3.9.11-src.tar.gz</a><br />
MAVEN_HOME<br />
%MAVEN_HOME%\bin<br />
JAVA_HOME<br />
%JAVA_HOME%\bin<br />
mvn -v<br />
conf/settings.xml<br />
mvn clean<br />
mvn compile<br />
mvn package<br />
mvn clean package<br />
mvn spring-boot:run<br />
java -jar -D<name>=<value> -Xms<size> -Xmx<size> xxx.jar<br />
<a href="http://localhost:8888">http://localhost:8888</a><br />
<a href="https://www.cnblogs.com/Alex-goforit/p/18219850">https://www.cnblogs.com/Alex-goforit/p/18219850</a></h1>]]></description>
    <pubDate>Sat, 30 Aug 2025 14:29:22 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=122</guid>
</item>
<item>
    <title>gnu-gcc</title>
    <link>https://note.sssscode.com/?post=121</link>
    <description><![CDATA[<h1><a href="https://ftp.gnu.org/gnu/gcc/">https://ftp.gnu.org/gnu/gcc/</a><br />
<a href="https://ftp.gnu.org/gnu/gcc/gcc-4.9.4/gcc-4.9.4.tar.bz2">https://ftp.gnu.org/gnu/gcc/gcc-4.9.4/gcc-4.9.4.tar.bz2</a><br />
ftp://gcc.gnu.org/pub/gcc/infrastructure/mpfr-2.4.2.tar.bz2<br />
ftp://gcc.gnu.org/pub/gcc/infrastructure/gmp-4.3.2.tar.bz2<br />
ftp://gcc.gnu.org/pub/gcc/infrastructure/mpc-0.8.1.tar.gz<br />
mkdir gcc-4.9.4<br />
tar -xjf mpfr-2.4.2.tar.bz2 || exit 1<br />
tar -xjf gmp-4.3.2.tar.bz2 || exit 1<br />
tar -xzf mpc-0.8.1.tar.gz || exit 1<br />
mv mpfr-2.4.2 gcc-4.9.4/mpfr<br />
mv gmp-4.3.2 gcc-4.9.4/gmp<br />
mv mpc-0.8.1 gcc-4.9.4/mpc<br />
tar -xjf gcc-4.9.4.tar.bz2<br />
cd gcc-4.9.4<br />
cat ./contrib/download_prerequisites<br />
./contrib/download_prerequisites<br />
mkdir gcc-build-4.9.4<br />
cd gcc-build-4.9.4<br />
../configure --enable-checking=release --enable-languages=c,c++ --disable-mutilib<br />
make<br />
make install<br />
which gcc<br />
gcc -v</h1>
<h1>yum -y install bzip2 wget gcc gcc-c++ gmp-devel mpfr-devel libmpc-devel make zlib zlib-devel<br />
wget <a href="https://ftp.gnu.org/gnu/gcc/gcc-7.5.0/gcc-7.5.0.tar.gz">https://ftp.gnu.org/gnu/gcc/gcc-7.5.0/gcc-7.5.0.tar.gz</a><br />
tar -zxvf gcc-7.5.0.tar.gz<br />
cd gcc-7.5.0<br />
./contrib/download_prerequisites<br />
mkdir gcc-build-7.5<br />
cd gcc-build-7.5<br />
../configure --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit \<br />
--disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,go,lto \<br />
--enable-plugin --enable-initfini-array --disable-libgcj --enable-gnu-indirect-function --with-tune=generic \<br />
--disable-multilib<br />
make -j$(nproc)<br />
gcc -v<br />
make install<br />
/usr/local/bin/gcc<br />
/usr/local/bin/gcc --version</h1>
<h1><a href="https://blog.csdn.net/xinming_365/article/details/88430227">https://blog.csdn.net/xinming_365/article/details/88430227</a><br />
<a href="https://linux.iooii.comhttps://linux.iooii.com/2021/10/106/">https://linux.iooii.comhttps://linux.iooii.com/2021/10/106/</a></h1>]]></description>
    <pubDate>Fri, 08 Aug 2025 17:53:21 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=121</guid>
</item>
<item>
    <title>centos-repo</title>
    <link>https://note.sssscode.com/?post=120</link>
    <description><![CDATA[<h1>cd /etc/yum.repos.d/<br />
mkdir bak<br />
mv *.repo bak/<br />
wget <a href="http://mirrors.aliyun.com/repo/Centos-7.repo">http://mirrors.aliyun.com/repo/Centos-7.repo</a><br />
wget <a href="http://mirrors.163.com/.help/CentOS7-Base-163.repo">http://mirrors.163.com/.help/CentOS7-Base-163.repo</a><br />
yum clean all<br />
yum makecache<br />
yum list | grep epel-release<br />
yum install -y epel-release<br />
yum install -y nginx<br />
wget -O /etc/yum.repos.d/epel-7.repo <a href="http://mirrors.aliyun.com/repo/epel-7.repo">http://mirrors.aliyun.com/repo/epel-7.repo</a><br />
yum clean all<br />
yum makecache<br />
<a href="https://mirrors.aliyun.com/repo/">https://mirrors.aliyun.com/repo/</a></h1>
<h1>mkdir -p /etc/yum.repos.d/bak$(date +&quot;%y%m%d&quot;)<br />
mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/bak$(date +&quot;%y%m%d&quot;)<br />
sudo wget -O /etc/yum.repos.d/Centos-Base.repo <a href="http://mirrors.aliyun.com/repo/Centos-7.repo">http://mirrors.aliyun.com/repo/Centos-7.repo</a><br />
sudo wget -O /etc/yum.repos.d/epel.repo <a href="http://mirrors.aliyun.com/repo/epel-7.repo">http://mirrors.aliyun.com/repo/epel-7.repo</a><br />
sudo wget -O /etc/yum.repos.d/Centos-Base.repo <a href="http://mirrors.cloud.tencent.com/repo/centos7_base.repo">http://mirrors.cloud.tencent.com/repo/centos7_base.repo</a><br />
sudo wget -O /etc/yum.repos.d/epel.repo <a href="http://mirrors.cloud.tencent.com/repo/epel-7.repo">http://mirrors.cloud.tencent.com/repo/epel-7.repo</a><br />
sudo wget -O /etc/yum.repos.d/Centos-Base.repo <a href="http://mirrors.huaweicloud.com/repository/conf/CentOS-7-anon.repo">http://mirrors.huaweicloud.com/repository/conf/CentOS-7-anon.repo</a><br />
sudo wget -O /etc/yum.repos.d/epel.repo <a href="http://mirrors.huaweicloud.com/repository/conf/epel-7-anon.repo">http://mirrors.huaweicloud.com/repository/conf/epel-7-anon.repo</a><br />
sudo yum clean all &amp;&amp; yum makecache<br />
sudo yum install curl wget</h1>
<h1><a href="https://mirrors.wlnmp.com/centos/">https://mirrors.wlnmp.com/centos/</a><br />
mkdir -p /etc/yum.repos.d/bak<br />
mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/bak/<br />
curl -o /etc/yum.repos.d/Centos7-aliyun.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-aliyun-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-aliyun-x86_64.repo</a><br />
curl -o /etc/yum.repos.d/Centos7-163.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-163-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-163-x86_64.repo</a><br />
curl -o /etc/yum.repos.d/Centos7-tencent.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-tencent-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-tencent-x86_64.repo</a><br />
curl -o /etc/yum.repos.d/Centos7-ustc.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-ustc-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-ustc-x86_64.repo</a><br />
curl -o /etc/yum.repos.d/Centos7-jcut.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-jcut-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-jcut-x86_64.repo</a><br />
curl -o /etc/yum.repos.d/Centos7-tuna.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-tuna-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-tuna-x86_64.repo</a><br />
curl -o /etc/yum.repos.d/Centos7-nyist.repo <a href="https://mirrors.wlnmp.com/centos/Centos7-nyist-x86_64.repo">https://mirrors.wlnmp.com/centos/Centos7-nyist-x86_64.repo</a><br />
yum clean all<br />
yum makecache</h1>
<h1><a href="https://developer.aliyun.com/article/1213135">https://developer.aliyun.com/article/1213135</a><br />
<a href="https://www.ekbcloud.com/docs/admin_manual/centos.html">https://www.ekbcloud.com/docs/admin_manual/centos.html</a><br />
<a href="https://www.cnblogs.com/lvzhenjiang/articles/18350828">https://www.cnblogs.com/lvzhenjiang/articles/18350828</a></h1>
<h1>centos8<br />
cd /etc/yum.repos.d/<br />
mkdir backup &amp;&amp; mv <em>repo backup/<br />
curl -o /etc/yum.repos.d/CentOS-Base.repo <a href="http://mirrors.aliyun.com/repo/Centos-8.repo">http://mirrors.aliyun.com/repo/Centos-8.repo</a><br />
sed -i -e&quot;s|mirrors.cloud.aliyuncs.com|mirrors.aliyun.com|g &quot; /etc/yum.repos.d/CentOS-</em><br />
sed -i -e &quot;s|releasever|releasever-stream|g&quot; /etc/yum.repos.d/CentOS-*<br />
yum clean all &amp;&amp; yum makecache<br />
<a href="https://www.cnblogs.com/Julien1021/p/16255403.html">https://www.cnblogs.com/Julien1021/p/16255403.html</a></h1>]]></description>
    <pubDate>Sat, 02 Aug 2025 18:21:57 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=120</guid>
</item>
<item>
    <title>hqt</title>
    <link>https://note.sssscode.com/?post=119</link>
    <description><![CDATA[<h1>yum install cyrus-sasl-devel</h1>]]></description>
    <pubDate>Sat, 02 Aug 2025 18:21:51 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=119</guid>
</item>
<item>
    <title>php-json</title>
    <link>https://note.sssscode.com/?post=118</link>
    <description><![CDATA[<script>
function addType(){
    let typeName = document.getElementById("typeName").value;
    typeName = typeName.trim();
    let data = {
        "typeName": typeName,
        ...
    }
    data = JSON.stringify(data);
    let addTypeXhr = new XMLHttpRequest();
    addTypeXhr.onreadystatechange= function(){
        if(addTypeXhr.readyState==4 && addTypeXhr.status==200){
            console.log(data);
        }
    }
}
addTypeXhr.open("POST", "https://xxx.com");
addTypeXhr.setRequestHeader("Content-Type", "application/json, charset=utf-8");
addTypeXhr.send(data);
</script>
<h1>================================================================<br />
&lt;php?<br />
$data = file_get_content(&quot;php:input&quot;);<br />
$data = json_decode($data);<br />
$typeName = $data-&gt;typeName;<br />
echo $typeName;<br />
?&gt;</h1>]]></description>
    <pubDate>Sat, 02 Aug 2025 18:21:41 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=118</guid>
</item>
<item>
    <title>centos-ssh</title>
    <link>https://note.sssscode.com/?post=117</link>
    <description><![CDATA[<p>systemctl status sshd<br />
systemctl restart sshd<br />
yum install openssh</p>]]></description>
    <pubDate>Sat, 26 Jul 2025 15:54:12 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=117</guid>
</item>
<item>
    <title>git</title>
    <link>https://note.sssscode.com/?post=116</link>
    <description><![CDATA[<p>ps -ef | grep gitlab<br />
gitlab-ctl stop<br />
rpm -e gitlab-ce<br />
rpm -e gitlab-ee</p>
<p>find / -name &quot;ruby&quot; -type f<br />
find / -name &quot;gem&quot; -type d<br />
rpm -qa | grep ruby<br />
ruby -v<br />
echo $PATH<br />
echo $GEM_PATH<br />
echo $GEM_HOME</p>
<p>nano ~/.bashrc<br />
nano ~/.bash_profile<br />
nano ~/.zshrc</p>
<p>cat ~/.bashrc<br />
cat ~/.bash_profile<br />
cat ~/.zshrc</p>
<p>export PATH=&quot;$PATH:/path/to/ruby/bin&quot;<br />
export GEM_PATH=&quot;/path/to/gems&quot;<br />
export GEM_HOME=&quot;/path/to/gems&quot;</p>
<p>source ~/.bashrc<br />
source ~/.bash_profile<br />
source ~/.zshrc</p>
<p>find / -name <em>gitlab</em> | xargs rm -rf<br />
find / -name gitlab | xargs rm -rf</p>
<p>git remote prune origin<br />
git checkout local_branch<br />
git push origin local_branch:remote_branch<br />
git branch -r<br />
git branch<br />
git branch -a<br />
git branch -D BranchName<br />
git branch --delete BranchName<br />
git branch -r -D origin/BranchName<br />
git push origin -d BranchName<br />
git push origin --delete BranchName<br />
git fetch<br />
git checkout -b local_branch origin/remote_branch<br />
git fetch origin local_branch:remote_branch<br />
git checkout remote_branch</p>
<p>git submodule add git@github.com:jjz/pod-library.git common<br />
git status<br />
git push --recurse-submodules=check<br />
git push --recurse-submodules=on-demand</p>
<h1>git clean -n<br />
git clean -f <path><br />
git clean -df<br />
git clean -xdf<br />
git reset --hard</h1>
<h1><a href="https://www.cnblogs.com/sunlong88/p/8681363.html">https://www.cnblogs.com/sunlong88/p/8681363.html</a></h1>
<h1>git clone<br />
git init<br />
git add<br />
git mv<br />
git reset<br />
git rm<br />
git bisect<br />
git grep<br />
git log<br />
git show<br />
git status<br />
got branch<br />
git checkout<br />
git commit<br />
git diff<br />
git merge<br />
git rebase<br />
git tag<br />
git fetch<br />
git pull<br />
git push</h1>]]></description>
    <pubDate>Fri, 11 Jul 2025 22:28:35 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=116</guid>
</item>
<item>
    <title>svn</title>
    <link>https://note.sssscode.com/?post=115</link>
    <description><![CDATA[<h1>cd /usr/svn<br />
svnadmin create test<br />
cat test/conf/svnserve.conf<br />
vim test/conf/svnserve.conf</h1>
<h1>anon-access = none<br />
auth-access = write<br />
password-db = /var/svn/conf/passwd<br />
authz-db = /var/svn/conf/authz<br />
realm = test</h1>
<h1>cat /var/svn/conf/passwd<br />
vim /var/svn/conf/passwd</h1>
<h1>[users]<br />
admin = 123456<br />
user1 = 123456<br />
user2 = 123456</h1>
<h1>cat /var/svn/conf/authz<br />
vim /var/svn/conf/authz</h1>
<p>[groups]<br />
test0 = admin<br />
test1 = admin,user1<br />
test2 = adnin,user2<br />
[test:/]<br />
@test0 = rw</p>
<ul>
<li>=<br />
[test:/base1/]<br />
@test1 = rw</li>
<li>=<br />
[test:/base2/]<br />
@test2 = rw</li>
<li>=</li>
</ul>
<h1>================================================================<br />
svnserve -d -r /usr/svn</h1>
<h1>svn checkout svn://x.x.x.x/test test --username 'admin' --password '123456'<br />
svn revert -R /</h1>]]></description>
    <pubDate>Thu, 10 Jul 2025 15:00:18 +0800</pubDate>
    <dc:creator>test</dc:creator>
    <guid>https://note.sssscode.com/?post=115</guid>
</item></channel>
</rss>