上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 43 下一页
摘要: MySQL 字符串截取函数:left(), right(), substring(), substring_index()。还有 mid(), substr()。其中,mid(), substr() 等价于 substring() 函数,substring() 的功能非常强大和灵活。 1. 字符串截 阅读全文
posted @ 2020-04-07 14:29 龙卷风之殇 阅读(1415) 评论(0) 推荐(0)
摘要: 启动: ./kibana-6.4.0-linux-x86_64/bin/kibana 查看进程: ps -ef|grep kibana xxx ps -ef|grep node (因为kibana是node写的,所以查看进程需要如此) 查看启动日志 : tail -f nohup 查看进程id : 阅读全文
posted @ 2020-03-27 15:58 龙卷风之殇 阅读(2751) 评论(0) 推荐(0)
摘要: <?php /** * Created by PhpStorm. * User: Administrator * Date: 2020/3/12 * Time: 17:13 */ function exportExcel($data, $fields = [], $titles = [], $for 阅读全文
posted @ 2020-03-19 11:14 龙卷风之殇 阅读(584) 评论(0) 推荐(0)
摘要: 有序集合 准备数据 获取 score 高分 top10 排名 (ZREVRANGE 为降序,ZRANGE 为升序) zravrange game_rank 0 10 withscores 带分数 查看用户 ee 的实际排名 (ZREVRANK 为降序,ZRANK 为升序)、实时分数 阅读全文
posted @ 2020-03-16 19:58 龙卷风之殇 阅读(205) 评论(0) 推荐(0)
摘要: #!usr/bin/env python #-*- coding:utf-8 _*- """ @author:Administrator @file: 翻译软件.py @time: 2020/3/11 11:39 """ import PySimpleGUI as sg import os, sys 阅读全文
posted @ 2020-03-11 20:16 龙卷风之殇 阅读(408) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 43 下一页