施工中……
Leetcode 142:Linked List Cycle II(环形链表 II)
题目:Linked List Cycle II(环形链表 II)
Given a linked list, return the node where the cycle begins. If there is no cycle, return null
.
There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next
pointer. Internally, pos
is used to denote the index of the node that tail’s next
pointer is connected to. Note that pos
is not passed as a parameter.
Notice that you should not modify the linked list.
Follow up:
Can you solve it using O(1)
(i.e. constant) memory?
AppStore已购列表为空???
这个问题每到大版本更新好像都有人遇到,但官方一直没有给出有效的解决方法,基本上贴个热线电话就完事了……
国服App Store遇到这个问题,据说可以通过更改WiFi的DNS解决(逼乎上老哥改了8.8.8.8
后解决),但这里外服App Store蜂窝网络和挂Quantumult X都不能解决问题……
我这最后是尝试购买App(之前没买过的)后,已购列表恢复。
每日收藏夹 9月28日 月曜日
好久好久不用C++了,用惯了IntelliJ IDEA后,再次打开Visual Studio,我感到对C++深深的不适应;于是我打开JetBrain的官网,本想下个LION的,结果看到了VS的Resharper插件,又顺手下了个VsVim。
写了两个C++小程序后,深深感到C++艹蛋,怀念起写Java时无忧无虑的体验:指针、编译报错不显示堆栈……结果今天改Java代码时String的url从编辑器里复制出来改了下再粘贴回去后居然程序无法运行(编辑器自动多加了个转义”\“),报错也看不懂,罢了罢了,Java在我心中也跌落神坛,还是得靠自己加深对编程语言的理解,不能全指望IDE啊(但我还是要说IDEA牛逼)
再贴一个Pixiv的反向代理,今天才发现pixiv 的圖片伺服器網域為 i.pximg.net,有盜連保護
,太丢人了。
nginx反向代理設定檔1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26proxy_cache_path /path/to/cache levels=1:2 keys_zone=pximg:10m max_size=10g inactive=7d use_temp_path=off;
server {
listen 443 ssl http2;
ssl_certificate /path/to/ssl_certificate.crt;
ssl_certificate_key /path/to/ssl_certificate.key;
server_name i.pixiv.cat;
access_log off;
location / {
proxy_cache pximg;
proxy_pass https://i.pximg.net;
proxy_cache_revalidate on;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
proxy_cache_lock on;
add_header X-Cache-Status $upstream_cache_status;
proxy_set_header Host i.pximg.net;
proxy_set_header Referer "https://www.pixiv.net/";
proxy_set_header User-Agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36";
proxy_cache_valid 200 7d;
proxy_cache_valid 404 5m;
}
}
导入歌曲至iTunes & 上传歌曲到iCloud音乐资料库
2021/8/1日更新:添加导入歌曲到iTunes的教程
吐槽:最近(2021/7/31)用iOS的Shazam时发现:Apple Music曲库不包含的歌曲竟然不能通过菜单直达iTunes商店对应专辑页了……