Git clone 报 fatal: protocol 'https' is not supported 错误

Git clone 报 fatal: protocol 'https' is not supported 错误

Git 错误提示信息Git 错误提示信息

Git 错误提示信息Git 错误提示信息

看到 fatal: repository ' ' does not exist

再联想到ctrl + v时候 bash 不自然的错位,怀疑是不是粘贴进去些奇怪的东西。

在记事本中重新粘贴一下

多了些奇怪的的东西多了些奇怪的的东西

好吧。。。

尝试使用shift + insert重新粘贴一下地址。

OK,一切正常了。

Git正常克隆Git正常克隆

自动生成markdown表格的网站

Typecho支持表格,想想当初像傻子一样在ide里手撸 table 画表格。真是蛋疼。

但后来发现markdown画表格,和手撸 HTML 半斤八两,区别无外乎一个蛋疼还是一对蛋疼。

然后,我发现了一个拯救我的网站:Tables Generator

Tables GeneratorTables Generator

可视化,自动生成,真幸福。。。

可视化表格绘制可视化表格绘制

生成的markdown表格生成的markdown表格

表格示例

TablesAreCool
col 1 isleft-aligned$1600
col 2 iscentered$12
col 3 isright-aligned$1

PS:至于左右对齐就无视好了。

解除网页右键限制

下面代码,F12控制台运行,或是收藏到收藏夹点击运行都行

控制台执行代码控制台执行代码


解除网页限制

javascript: alert(document.onselectstart = document.onbeforecopy = document.oncontextmenu = document.onmousedown = document.onkeydown = function() {
    return true;
});
void(document.body.onmouseup = '');
void(document.body.onselectstart = '');
void(document.body.onmouseup = '');
void(document.body.oncopy = '');

强力版,可能会矫正过度

javascript: alert(document.onselectstart = document.onbeforecopy = document.oncontextmenu = document.onmousedown = document.onkeydown = function() {
    return true;
});
void(document.body.onmouseup = '');
void(document.body.onselectstart = '');
void(document.body.onmouseup = '');
void(document.body.oncopy = '');
javascript: document.body.contentEditable = 'true';
document.designMode = 'on';
void 0

开启网页编辑状态

javascript: document.body.contentEditable = 'true';
document.designMode = 'on';
void 0

关闭网页编辑状态

javascript: document.body.contentEditable = 'false';
void 0;