MySQL过滤复制 一、几个配置文件说明 写在配置文件,重启就行 主库配置: show master status; Binlog_Do_DB #白名单 Binlog_Ignore_DB #黑名单,添加在这里的库。就不进行复制 从库配置: 从库: 库级别: replicate do db=world ...
                            
                            
                                分类:
数据库   时间:
2020-11-26 14:49:16   
                                阅读次数:
40
                             
                    
                        
                            
                            
                                
                    一道毒瘤题 \(\gamma\) by DPair 题目描述 维护一个正整数集 \(S\),元素 \(\in\) 值域 \(U\),需要支持: \(\texttt{1 l r}\):\(S\gets S\cup [l,r]\); \(\texttt{2 l r}\):\(S \gets \{x|x\ ...
                            
                            
                                分类:
其他好文   时间:
2020-11-26 14:13:44   
                                阅读次数:
5
                             
                    
                        
                            
                            
                                
                    变量和简单数据类型 变量 python3 message=“Hello Python World!” print(message) 我们添加了一个名为message的变量,运行之后的结果是 Hello Python World! 变量的命名和使用:(这部分和C基本是一样的) 变量名只能包含字母、数字 ...
                            
                            
                                分类:
编程语言   时间:
2020-11-18 12:59:09   
                                阅读次数:
8
                             
                    
                        
                            
                            
                                
                    打开题目链接,只看到一个hello,world,右键看一下原代码。 发现有个链接,打开是404。开一下脑洞,改成http://106.75.72.168:9999/flag.js 可以进去,但是没什么有价值的信息。 既然没什么收获,那我就信息收集一下吧。dirmap扫目录,xray主动扫url。结果 ...
                            
                            
                                分类:
Web程序   时间:
2020-11-17 12:32:19   
                                阅读次数:
20
                             
                    
                        
                            
                            
                                
                    Go语言系列 一 Go介绍与开发环境搭建 01-Go语言简介 02-开发环境搭建 03-Go语言集成开发环境之GoLand安装使用 04-Go语言集成开发环境之VS Code安装使用 05-Go包管理详解 二 Go语言基础 01-Hello World 02-变量 03-类型 04-常量 05-函数 ...
                            
                            
                                分类:
编程语言   时间:
2020-11-16 13:46:36   
                                阅读次数:
10
                             
                    
                        
                            
                            
                                
                    #include <stdio.h> int main() { /* 我的第一个 C 程序 */ printf("Hello, World! \n"); return 0; } 所有的 C 语言程序都需要包含 main() 函数,有且只能有一个main()。 代码从 main() 函数开始执行。 / ...
                            
                            
                                分类:
编程语言   时间:
2020-11-16 13:46:17   
                                阅读次数:
11
                             
                    
                        
                            
                            
                                
                    Helloworld程序 1.新建一个Hello.java文件 2.使用Notepad++写下程序 public class Hello { public static void main(String[] args) { System.out.print("Hello,world!"); } }  ...
                            
                            
                                分类:
其他好文   时间:
2020-11-13 12:53:54   
                                阅读次数:
4
                             
                    
                        
                            
                            
                                
                    // FileName: HelloWorld.java public class HelloWorld { // Java 入口程序,程序从此入口 public static void main(String[] args) { System.out.println("Hello,World!") ...
                            
                            
                                分类:
其他好文   时间:
2020-11-13 12:48:52   
                                阅读次数:
5
                             
                    
                        
                            
                            
                                
                    1、Viper是什么? Viper 是.NET平台下的Anno微服务框架的一个示例项目。入门简单、安全、稳定、高可用、全平台可监控。底层通讯可以随意切换thrift grpc。 自带服务发现、调用链追踪、Cron 调度、限流、事件总线、CQRS 、DDD、类似MVC的开发体验,插件化开发 githu ...
                            
                            
                                分类:
Web程序   时间:
2020-11-13 12:22:30   
                                阅读次数:
16
                             
                    
                        
                            
                            
                                
                    #__author: "ZXYang"#date: 2020/4/23import refrom re import findall# ret = re.findall('w..l', 'hello world')# print(ret)# ^# ret = re.findall('^w..l',  ...
                            
                            
                                分类:
其他好文   时间:
2020-11-11 16:40:49   
                                阅读次数:
6