53.最大子序和问题

给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。

Kadane算法

  • 算法描述:
    • 遍历该数组, 在遍历过程中, 将遍历到的元素依次累加起来, 当累加结果小于或等于0时, 从下一个元素开始,重新开始累加。
    • 累加过程中, 要用一个变量(max_so_far)记录所获得过的最大值
    • 一次遍历之后, 变量 max_so_far 中存储的即为最大子片段的和值。

class Solution:
def maxSubArray(self, nums: List[int]) -> int:
sum = 0
max_so_far = nums[0]
for num in nums:
sum += num
if sum > max_so_far:
max_so_far = sum
if sum < 0:
sum = 0
return max_so_far

该问题最初由布朗大学的Ulf Grenander教授于1977年提出,不久之后卡内基梅隆大学的Jay Kadane提出了该问题的线性算法。

https://baike.baidu.com/item/%E6%9C%80%E5%A4%A7%E5%AD%90%E6%95%B0%E5%88%97%E9%97%AE%E9%A2%98

真卡蛋。

Manjaro 安装网易云音乐

小白觉得Manjaro一点都不好用。

首先
yaourt netease
然后选第四个 netease-cloud-music 1.1.3.1-1。

中间nano的时候ctrl+x。
一路Y下去后就好了。

编辑启动器
env XDG_CURRENT_DESKTOP=DDE netease-cloud-music %U

这样就可以了。。

manjaro linux KDE桌面网易云音乐点击托盘图标无反应

对,你没有看错,假装自己是DDE(深度)桌面,就解决了。。。。。

https://www.cnblogs.com/Rhein-E/p/10280326.html

树莓派bt下载机1号

在树莓派上安装Transmission。

sudo apt-get install transmission-daemon

停止Transmission服务。

sudo service transmission-daemon stop

编辑Transmission配置文件, 更改配置。

进入Transmission配置文件夹。

cd /etc/transmission-daemon/

sudo nano settings.json

修改"rpc-whitelist": "127.0.0.1","rpc-whitelist": "192.168.1.*",(意思是允许192.168.1.这个网段的设备访问Transmission)。

重载

sudo service transmission-daemon reload sudo service transmission-daemon restart

在电脑浏览器输入“http://192.168.1.3:9091/”,登录Transmission界面,用户名和密码都是:transmission。

https://post.smzdm.com/p/35508/

做手工真有意思。线实在是塞不进去了。
纸盒糊的,散热堪忧,空闲46℃,不知硬盘能撑几天。
移动硬盘分区需要ext4,而且貌似分区容量超过1T的话,minitool会报错。最后格了很久。

配方:手机充电器,双公头USB线,USB分线器,移动硬盘,树莓派。

WordPress部署https后登陆不了后台

WordPress折腾坏了之后后台都登不上去了。

补救步骤:

首先:

http://www.seo628.com/3480.html https://www.luoyechenfei.com/html/2643.html

通过FTP登录网站根目录,修改wp-config.php。 在wp-config.php文件require_once(ABSPATH . 'wp-settings.php');之前,添加以下四个语句:

define(‘FORCE_SSL_ADMIN’, true);
define(‘FORCE_SSL_LOGIN’, true);
$_SERVER[‘HTTPS’] = ‘ON’;
define( ‘CONCATENATE_SCRIPTS’, false );

然后: 打开 /oldimg/plugins 目录,找到SSL相关设置插件,先将其删除,我用的是 really-simple-ssl ,如果你是用的是其他SSL设置插件,也可以先将它删除。

参考 https://waizhuti.53431.com/1547.html

最后: 整数据库。

UPDATE wp_posts SET post_content = replace(post_content,’https://www.你的域名.com','http://www.你的域名.com');
UPDATE wp_options SET option_value = replace(option_value, ‘https://你的域名.com’, ‘http://你的域名.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;

上面的设置都设置完成之后,打开浏览器,以 http://的方式输入你网站后台管理网址,你应该可以看到熟悉的管理界面了。

然后是整阿里云CDN啥的。

https://yq.aliyun.com/articles/613501

为了整CNAME把域名邮箱都整没了。。

树莓派上报IP到QQ邮箱

https://zhuanlan.zhihu.com/p/21471896 上古PYTHON2代码魔改居然跑起来呜呜呜呜

#!/usr/bin/env python3
# -- coding: UTF-8 --

import smtplib
import string
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import urllib.request

def do_it():#好吧
fromaddr = “hello@wandeshima.com“ # 填写你的发信邮箱,我选用的是163邮箱
toaddr = “m@wandeshima.com“ # 填写你的收信地址,接收树莓派的公网IP地址
msg = MIMEMultipart()
msg[‘From’] = fromaddr
msg[‘To’] = toaddr
msg[‘Subject’] = ‘树莓派IP是 ‘ + ip # 邮件标题

body = '树莓派IP是 ' + ip   # 邮件内容,同标题(偷懒)
msg.attach(MIMEText(body, 'plain'))

server = smtplib.SMTP_SSL('smtp.qq.com', 465)   # 填写qq邮箱的发信服务器地址
server.login(fromaddr, "xxxxxxxxxx")   # xxx代表你的邮件登录密码
text = msg.as_string()
server.sendmail(fromaddr, toaddr, text) # 开始发邮件
print("send ok")  # 发送成功提示
server.quit()

#file_path config
#file_path = “/root/rootcrons/lastip.txt”
file_path = “/home/mmmm/Desktop/lastip.txt”

user_agent = ‘Mozilla/4.0 (compatible; MSIE 10.0; Windows NT)’
headers = {}
headers[‘User-Agent’] = user_agent
url = ‘http://members.3322.org/dyndns/getip' # 通过这个接口获取公网IP地址
req = urllib.request.Request(url, headers = headers)
res = urllib.request.urlopen(req)

ip = res.read().strip().decode(“utf-8”) # 去除空格
print(ip)

ip_file = open(file_path)
last_ip = ip_file.read()
ip_file.close()

if last_ip == ip:
print(“IP not change.”)
else:
print(“IP changed. New ip: “+ ip)
ip_file = open(file_path,”w”)
ip_file.write(str(ip))
ip_file.close()
do_it()

https://blog.csdn.net/qq_16234613/article/details/79448203

https://blog.csdn.net/mr_muli/article/details/78573156

http://www.runoob.com/python3/python3-string-strip.html

https://github.com/laixintao/Report-IP-hourly

整完发现路由没有公网IP,白瞎了。。。