腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
返回腾讯云官网
码生
专栏成员
举报
107
文章
256723
阅读量
24
订阅数
订阅专栏
申请加入专栏
全部文章(107)
其他(51)
python(8)
http(8)
django(7)
swift(6)
xcode(6)
react(6)
ios(5)
git(5)
nat(5)
nginx(4)
html(3)
https(3)
cocoa(2)
存储(2)
shell(2)
markdown(2)
小程序(2)
官方文档(1)
mac os(1)
iphone(1)
go(1)
.net(1)
json(1)
webview(1)
数据库(1)
云数据库 SQL Server(1)
sqlite(1)
api(1)
linux(1)
centos(1)
reactnative(1)
ssh(1)
dns(1)
ftp(1)
grep(1)
tcp/ip(1)
socket编程(1)
微信(1)
安全(1)
cron(1)
date(1)
reload(1)
status(1)
supervisord(1)
triggers(1)
定时任务(1)
配置(1)
字符串(1)
搜索文章
搜索
搜索
关闭
python apscheduler
cron
date
triggers
定时任务
apscheduler分为4个模块,分别是Triggers,Job stores,Executors,Schedulers.
onety码生
2020-10-28
398
0
雷达图
let option = { /* 标题 / title: { text: '自定义雷达图' }, / 说明图 / legend: { data: ['图一','图二', '张三', '李四'] }, radar: [ { / 边角label / indicator: [ { text: '指标一' }, { text: '指标二' }, { text: '指标三' }, { text: '指标四' }, { text: '指标五' } ], / 边角label展示名称
onety码生
2020-09-18
1K
0
折线图
initChart(canvas, width, height, dpr) { const max = 100; const min = 25; const interval = 25; const chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // 像素 }); canvas.setChart
onety码生
2020-09-18
1.4K
0
柱状图
柱状图 let option = { color: ['#3398DB'], tooltip: { trigger: 'axis', axisPointer: { // 坐标轴指示器,坐标轴触发有效 type: 'none' // 默认为直线,可选为:'line' | 'shadow' }, formatter(p) { return p[0].
onety码生
2020-09-16
1.1K
0
饼状图
const chart = echarts.init(canvas, null, { width: width, height: height, devicePixelRatio: dpr // 像素 }); canvas.setChart(chart); /* 定制每个角的label */ const label = { /* 格式化 c: value, b: name */ formatter: [
onety码生
2020-09-16
2.1K
0
Jenkins打包stderr: error: RPC failed; result=22, HTTP code = 404
git
就是配置项目地址的时候,没有以 .git 结尾,那就不是一个合法的git源,也就会出现404了。
onety码生
2020-05-27
1.1K
0
shell字符串截取
shell
字符串
利用tr 指令实现字符替换 tr "oldSpilt" "newSpilt" 测试字符串 var=1234567890abcedef1203 1、使用#截取0以后的内容 echo ${var#*0} 结果:abcedef1203 #表示操作符,*0表示从左往右找到第一个0,截取0之后的所有字符 echo ${var##*0} 结果:3 #表示操作符,*0表示从右往左找到第一个0,截取0之后的所有字符 2、使用%截取 echo ${var%0*} 结果:1234567890abcedef12 %表示操作符,0
onety码生
2020-05-04
1.4K
0
Supervisor资料
存储
reload
status
supervisord
配置
sudo pip install supervisor sudo easy_install supervisor yum install easy_install echo_supervisord_conf 获取模板 一般存储在 /etc/supervisord.conf 导入其他文件 ; 包含其他的配置文件 [include] files = /etc/supervisor/*.conf ; 可以随意指定,目录不存在请先建立。配置文件可以是 *.conf 或 *.ini supervisorctl
onety码生
2020-03-20
663
0
搭建私有 git
git
ssh
执行 git clone git@server:/srv/sample.git 时
onety码生
2019-04-17
933
0
python 使用AES加解密 No module named Crypto.Cipher
python
首先说明:pycryptodome pycrypto 这两个库是同一个库,但是 pycrypto 已经不维护了
onety码生
2019-03-15
3.6K
0
pod swift_version file: undefined method `swift_version=`
swift
cocoa
cocoapod 在低版本中制作swift pod库时需要在 podspec 同目录下创建 .swfit-version 文件指定版本
onety码生
2018-12-19
1.2K
0
webstorm 模板变量
其他
${PROJECT_NAME} - the name of the current project.
onety码生
2018-11-21
1.1K
0
dyld: Library not loaded: /usr/local/opt/jpeg/lib/libjpeg.8.dylib
http
wget -c http://www.ijg.org/files/jpegsrc.v8d.tar.gz tar xzf jpegsrc.v8d.tar.gz cd jpeg-8d ./configure make cp ./.libs/libjpeg.8.dylib /usr/local/opt/jpeg/lib
onety码生
2018-11-21
686
0
Could not fetch URL https://pypi.python.org/simple/opencv-python/: There was a problem confirming...
python
Could not fetch URL https://pypi.python.org/simple/opencv-python/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661) - skipping
onety码生
2018-11-21
5.5K
1
iOS OC swift 自定义 popover 泡泡
ios
swift
xcode
git
http
git 地址:https://github.com/TieShanWang/KKPopover
onety码生
2018-11-21
2.7K
0
react-navigation tabBar 自动跳转(代码实现跳转)
其他
需要 在 tabBar 中的第二个 界面(tab2)中的一个按钮,点击之后跳转到 tabBar 的第一个界面
onety码生
2018-11-21
2K
0
微信小程序 socket wss 协议
https
微信小程序无论是 http 请求还是 socket 都要求是安全请求 https 和 wss 请求 这里对wss和https做主要说明 首先微信小程序后台管理系统中,配置合法域名时 只能填写域名,不能填写IP地址的格式 而 https 和 wss 协议的前提都是你要对自己的域名颁发证书 也就是要有合法的证书,不能是自签证书
onety码生
2018-11-21
2.8K
0
Flutter
html
知道 Flutter 后,对 Flutter 的兴趣很大,感觉前景也是不错。 因为使用 React Native 已经一年时间了,其动态性无疑是最大亮点,但同时性能是一大弱点。 看完 Flutter 后都想立即学习了。 越是接触更多的语言越是发现语言间的相同性。 OC Swift python js es6 ts go html 微信小程序 微信小游戏 等等,目前除了 go 语言还没有实战写过代码,其它语言都已经有了大量代码的实践了。
onety码生
2018-11-21
1.8K
1
nginx https wss 证书配置
其他
首先你必须要有自己域名的证书 无论在那个平台颁发的证书,都会给你 bundle.crt 和 key 两个文件的 【注】颁发的证书有的是兼容二级域名的,有的是不兼容二级域名的 把如下配置放在 server { } 里面 ssl on; ssl_certificate 这里填写 bundle.crt 文件的绝对路径,例如:/etc/nginx/ssl/***bundle.crt; ssl_certificate_key 这里填写 .key 文件的绝对路径,例如:/etc/nginx/ssl/***key; s
onety码生
2018-11-21
2.4K
0
ios KVO 官方文档学习
官方文档
When an observer is registered for an attribute of an object the isa pointer of the observed object is modified, pointing to an intermediate class rather than at the true class. As a result the value of the isa pointer does not necessarily reflect the actual class of the instance.
onety码生
2018-11-21
465
0
点击加载更多
社区活动
Python精品学习库
代码在线跑,知识轻松学
立即查看
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
立即体验
技术创作特训营·精选知识专栏
往期视频·干货材料·成员作品 最新动态
立即查看
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档