上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 31 下一页
摘要: chkconfig --list 显示开机可以自动启动的服务 chkconfig --add *** 添加开机自动启动***服务 chkconfig --del *** 删除开机自动启动***服务 setup 可以在shell图形终端里面配置的命令,去service里选择 ntsysv 在shell 阅读全文
posted @ 2022-06-24 17:58 3ξ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: aes之ecb模式的加密解密 from Crypto.Cipher import AES import base64 BLOCK_SIZE = 16 # Bytes pad = lambda s: s + (BLOCK_SIZE - len(s.encode()) % BLOCK_SIZE) * c 阅读全文
posted @ 2022-06-21 19:56 3ξ 阅读(802) 评论(0) 推荐(0) 编辑
摘要: ##########django之使用celery############## 1.首先在目录:/项目/applition/celery.py添加以下内容 import os import django from celery import Celery, platforms from django 阅读全文
posted @ 2022-06-16 11:43 3ξ 阅读(33) 评论(0) 推荐(0) 编辑
摘要: linux之centos安装redis # 首先看一下c语言有没有安装 gcc -v # 如果没有安装 yum install -y gcc # 创建并进入一个目录 专门下载软件的目录 mkdir /software cd /software # 下载 wget http://download.re 阅读全文
posted @ 2022-06-13 11:05 3ξ 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 1.安装使用 1.安装教程 https://dataease.io/docs/installation/offline_installation/ 2.下载安装包网址 https://community.fit2cloud.com/#/products/dataease/downloads 3.下载 阅读全文
posted @ 2022-05-19 10:53 3ξ 阅读(468) 评论(0) 推荐(0) 编辑
摘要: centos7安装kafka安装教程:https://blog.csdn.net/shenyuanhaojie/article/details/121200011 一.安装jdkrpm -qa | grep javarpm -qa | grep jdkrpm -qa | grep gcjrpm -q 阅读全文
posted @ 2022-05-17 18:42 3ξ 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1.mysql行拼接 SELECT GROUP_CONCAT(area_name SEPARATOR ',') from area 1.1效果图 2.clinkhouse行拼接 select groupArray(t3.enterprise_name) AS kpi_asc from area t1 阅读全文
posted @ 2022-05-17 17:01 3ξ 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1.clinkhouse比较特殊基于Java,如果是数字还得强转 select t1.area_name,t1.nums,t2.allcount,concat(toString(round(((t1.nums/t2.allcount)*100),2)),'%') as rate from ( sel 阅读全文
posted @ 2022-05-16 18:12 3ξ 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1.安装 clinkhouse之安装以及python操作 1.Clickhouse 仅支持Linux 且必须支持SSE4.2 指令集 grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not suppo 阅读全文
posted @ 2022-05-11 16:25 3ξ 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 代码直接放到utils目录下 from haversine import haversine from math import sin, asin, cos, radians, fabs, sqrt def hav(theta): """sin方""" s = sin(theta / 2) retu 阅读全文
posted @ 2022-05-09 15:43 3ξ 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 31 下一页