上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页
摘要: 1.查看 [root@iZbp1c5gb7kyc8hketev60Z modules]# yum list php73* |grep phalcon 2.安装 [root@iZbp1c5gb7kyc8hketev60Z modules]# yum install -y php73-php-phalc 阅读全文
posted @ 2023-12-07 14:13 六月OvO 阅读(101) 评论(0) 推荐(0)
摘要: 1、安装依赖 yum install glibc* -y 2、下载并设置权限 wget https://github.com/zhboner/realm/releases/download/v2.4.5/realm-x86_64-unknown-linux-musl.tar.gz tar -xvf 阅读全文
posted @ 2023-11-20 11:14 六月OvO 阅读(461) 评论(0) 推荐(0)
摘要: 公司:上海佐疆科技有限公司 打家避个雷 原因:拖欠最后一个月工资没发 注意:有一年追诉期,过了就无法仲裁了 **切记** 带身份证 带身份证 带身份证 ###1.先到劳动仲裁大队(浦建路1619号),进去里面有个二维码,先扫码填写,预约。 ![](https://img2023.cnblogs.co 阅读全文
posted @ 2023-08-25 14:18 六月OvO 阅读(252) 评论(0) 推荐(0)
摘要: 备份记录 ```bash #!/usr/bin/env bash srcUrl="10.2.67.244:9400" dstUrl="10.2.38.201:9400" # Get all indices indices_file=/opt/dump/indices curl -XGET "http 阅读全文
posted @ 2023-08-17 14:10 六月OvO 阅读(44) 评论(0) 推荐(0)
摘要: pipeline { agent{ label 'hw' } environment { VERSION = sh(script: "echo `date '+%Y%m%d%H%M%S'`", returnStdout: true).trim() } stages { stage('克隆代码'){ 阅读全文
posted @ 2023-04-25 11:38 六月OvO 阅读(96) 评论(0) 推荐(0)
摘要: ##可能原因 ###如果你连接的 mq 需要指定vhost,八成就是下面这个问题 ##解决方法 amqp.Dial("amqp://guest:guest@127.0.0.1:5672//dlyp") ###可以用下面这段代码测试 package main import ( "fmt" "githu 阅读全文
posted @ 2023-04-18 17:02 六月OvO 阅读(907) 评论(1) 推荐(1)
摘要: 案例:读取文件内容 package main import ( "fmt" "os" ) func main() { // 打开文件 file, err := os.Open("G:\\test\\test.txt") if err != nil { fmt.Println("open file e 阅读全文
posted @ 2023-04-10 10:15 六月OvO 阅读(36) 评论(0) 推荐(0)
摘要: ###面向过程 package main import "fmt" func main() { // 声明一个变量,保存用户的输入 key := "" // 声明一个变量,查看是否退出程序 var status bool = true // 账户余额 var balance float64 = 10 阅读全文
posted @ 2023-03-25 15:51 六月OvO 阅读(19) 评论(0) 推荐(0)
摘要: ###类型断言(带判断)案例 package main import "fmt" type Point struct { x int y int } func main() { // 带检测类型断言其他案例 var x interface{} var num float64 = 1.1 x = nu 阅读全文
posted @ 2023-03-18 15:44 六月OvO 阅读(30) 评论(0) 推荐(0)
摘要: ###报警脚本 import requests import json import time import sys from requests.auth import HTTPBasicAuth def formatMessage(queue_name,queue_count): message 阅读全文
posted @ 2023-03-15 10:37 六月OvO 阅读(63) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页