我一般把 Toolbar 关了的 每次有人问我,「我的 idea 底部工具栏不见了,怎么调出来」,「我的 idea 底部工具栏怎么和你的不一样」,「我的 idea 左侧、右侧工具栏呢,看看」,我就直接一张截图。 ...
                            
                            
                                分类:
其他好文   时间:
2020-03-29 12:39:58   
                                阅读次数:
79
                             
                    
                        
                            
                            
                                    设置gunicorn 参数--limit-request-line 8188 (默认是4094) 参考 limit_request_line --limit-request-line INT 4094 The maximum size of HTTP request line in bytes. T ...
                            
                            
                                分类:
其他好文   时间:
2020-03-29 12:26:51   
                                阅读次数:
63
                             
                    
                        
                            
                            
                                Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes are c ...
                            
                            
                                分类:
其他好文   时间:
2020-03-29 10:56:42   
                                阅读次数:
54
                             
                    
                        
                            
                            
                                When they are in balance, there is real visual magic. ...
                            
                            
                                分类:
其他好文   时间:
2020-03-29 01:14:35   
                                阅读次数:
165
                             
                    
                        
                            
                            
                                from itertools import permutations n1 = input("") n2 = input("") n3 = input("") n4 = input("") n = n1+n2+n3+n4 sum = 1 for i in n: sum *= eval(i) if s ...
                            
                            
                                分类:
其他好文   时间:
2020-03-28 23:52:49   
                                阅读次数:
139
                             
                    
                        
                            
                            
                                请尽量用简洁的方法将二维数组转换成一维数组 例: 转换前 lst=[[1,2,3],[4,5,6],[7,8,9]] 转换后lst = [1,2,3,4,5,6,7,8,9] """ 方法一: lst=[[1,2,3],[4,5,6],[7,8,9]] a = sum(lst,[]) print(a ...
                            
                            
                                分类:
其他好文   时间:
2020-03-28 21:37:23   
                                阅读次数:
73
                             
                    
                        
                            
                            
                                1. 内存异常circuit_breaking_exception 错误: Elasticsearch exception [type=circuit_breaking_exception, reason=[parent] Data too large, data for [<http_reques ...
                            
                            
                                分类:
其他好文   时间:
2020-03-28 19:57:45   
                                阅读次数:
519
                             
                    
                        
                            
                            
                                    调用预训练模型ResNet18时报错:RuntimeError: Given input size: (512x3x3). Calculated output size: (512x-3x-3). Output size is too small at /opt/conda/conda-bld/py ...
                            
                            
                                分类:
其他好文   时间:
2020-03-28 15:03:12   
                                阅读次数:
590
                             
                    
                        
                            
                            
                                    1. 安装配置# 解压tar -xf mysql-8.0.18-el7-x86_64.tar.gz -C /ups/app/mysql/cd /ups/app/mysql/mv mysql-8.0.18-el7-x86_64 mysql8cd mysql8mkdir -p {config,logs}... ...
                            
                            
                                分类:
数据库   时间:
2020-03-28 13:28:30   
                                阅读次数:
99
                             
                    
                        
                            
                            
                                    为什么要创建python虚拟环境 在开发Python应用程序的时候,系统安装的Python3只有一个版本:3.4。所有第三方的包都会被pip安装到Python3的site-packages目录下。 如果我们要同时开发多个应用程序,那这些应用程序都会共用一个Python,就是安装在系统的Python  ...
                            
                            
                                分类:
编程语言   时间:
2020-03-28 00:57:57   
                                阅读次数:
96