Stella981 Stella981
3年前
Git 针对 GitLab Github 配置 HTTP HTTPS SSH 代理
配置git代理配置git的httphttps代理Linux和Windows都适用gitlab服务器在国外下载速度速度收到很大影响。下面对gitlab配置httphttps代理。同理也可以对github配置httphttps代理。
Easter79 Easter79
3年前
Unicode不可见字符的显示
Unicode的学名是”UniversalMultipleOctetCodedCharacterSet”,简称为UCS不可见字符”/u200b”为UnicodeCharacter‘ZEROWIDTHSPACE’(U200B),可用于内容标识,不占位数。echo$LANG可以显示出Linux(https://ww
Easter79 Easter79
3年前
Springboot21 整合redis、利用redis实现消息队列
1前提准备  1.1创建一个springboot项目    技巧01:本博文基于springboot2.0创建  1.2安装redis    1.2.1linux版本      参考博文(https://www.oschina.net/action/GoToLink?urlhttp%3
Stella981 Stella981
3年前
Golang安装配置
1.下载安装  地址:https://golang.org/dl/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgolang.org%2Fdl%2F)1.1  linux版本下载:  wgethttps://
Stella981 Stella981
3年前
Linux(Centos7)下搭建SVN服务器
Linux(Centos7)下搭建SVN服务器(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cnblogs.com%2Fmrl%2Fp%2F8980244.html)
Stella981 Stella981
3年前
PHP,mysql,nginxunx中安装
一:安装PHP,mysql,nginx1linux装软件方式:21.源码安装:下载wget》解压tarzxvf》配置./configure》编译make3安装makeinstall42.yum安装一键安装包centos红帽
Stella981 Stella981
3年前
Linux 中使用 clone 函数来创建线程
   Linux上创建线程一般使用的是pthread库 实际上libc也给我们提供了创建线程的函数 那就是clone      intclone(int(\fn)(void\),void\child\_stack,                intflags,void\arg,...    
Linux下如何使用perf/gdb/pstack分析性能与问题排查
在Linux系统中,perf、gdb和pstack是三个常用的性能分析和问题排查工具。它们可以帮助开发人员找到和解决应用程序中的性能问题和错误。