0%

前言

我的150Mbs的RT3070l无线网卡,通过create_ap创建的热点下载速度在500-700k,而且首次打开网页很慢。
今天集中解决一下这个问题。
create_ap仓库已经停止维护,在其页面上推荐了一个图形界面的分支。
名字叫linux-wifi-hotspot
也可以叫 WiFi hotspot(linux搜索里显示的),
也可以叫 wihotspot (终端启动的指令)。
下载、安装后,网络上也没找到详细的介绍。
下面介绍下界面各个功能的含义,及对应效果。

阅读全文 »

示例

1
2
3
4
5
h@h-B360M-D2VX-SI:~$ cxfix
bash: cxfix: command not found
h@h-B360M-D2VX-SI:~$ which cxfix
h@h-B360M-D2VX-SI:~$ whereis cxfix
cxfix: /opt/cxoffice/bin/cxfix
阅读全文 »

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
"fmt"
"time"
)

func main() {
start := time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC)
oneDayLater := start.AddDate(0, 0, 1)
oneMonthLater := start.AddDate(0, 1, 0)
oneYearLater := start.AddDate(1, 0, 0)

}
阅读全文 »

孩儿立志出乡关,
学不成名誓不还。
埋骨何须桑梓地,
人生无处不青山。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
void main() {
int a[20],b[20],num=0,i=0;
while(1){
if (num==0){
scanf("%d",&a[i++]);
if (a[i-1]==-1){
i=0;
num++;
}
}
if (num==1){
scanf("%d",&b[i++]);
if (b[i-1]==-1){
break;
}
}
}
printf("%d",a[0]);
printf("%d",b[0]);
}

再次确认了一下我部署在阿里云上的博客是每五分钟同步一次。

结论

只要能建立起大小关系的表达,比如临界关系,哪怕二者是不同范畴的内容,比如距离和角度,我们也可以在坐标轴上得到他们关系的表示,并计算其他方面的关系。

关键点是不同范畴内容照样建立坐标系,会得出一些特别的结果,比如以为算不出的结果。

阅读全文 »

效果图

代码,直接从jupyter notebook导出为md格式

1
2
3
4
5
6
import os
import pandas as pd
import numpy as np
import pyecharts.options as opts
from pyecharts.charts import Line
# https://gallery.pyecharts.org/#/Line/basic_area_chart
阅读全文 »

1
2
3
4
h@h-B360M-D2VX-SI:~/Github/blog/source/_posts$ `expr 1 + 1`
bash: 2: command not found
h@h-B360M-D2VX-SI:~/Github/blog/source/_posts$ $((1+1))
bash: 2: command not found
阅读全文 »