1. Popularization and diversification of computers 2. From independent mode to network interconnection mode WAN(Wide Area Network) : a remote Network ...
分类:
Web程序 时间:
2020-05-05 17:42:35
阅读次数:
79
之前我是使用wangduanduan.github.io作为我的博客地址,后来觉得麻烦,有把博客关了。最近有想去折腾折腾。先看效果:wdd.js.org 如果你不了解js.org可以看看我的这篇文章:一个值得所有前端开发者关注的网站js.org 前提 已经有了github pages的一个博客,并且 ...
分类:
Web程序 时间:
2020-05-05 00:32:36
阅读次数:
88
使用PHP的Goutte进行网络爬虫,遇到无法校验对方站点SSL问题。 ...
分类:
Web程序 时间:
2020-05-04 19:00:56
阅读次数:
81
ngx_http_core_module模块提供的变量 在记录access_log访问日志文件时, 可以使用ngx_http_core_module模块处理请求时所产生的丰富的变量, 当然, 这些变量还可以用于其他HTTP模块 $arg_patameter HTTP请求中某个参数的值,如/index ...
分类:
Web程序 时间:
2020-05-04 13:42:19
阅读次数:
90
服务端 Server package com.oy.groupchat; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.Channel ...
分类:
Web程序 时间:
2020-05-04 09:13:45
阅读次数:
76
使用 Django 获取访问者的 IP if request.META.get('HTTP_X_FORWARDED_FOR'): ip = request.META.get("HTTP_X_FORWARDED_FOR") else: ip = request.META.get("REMOTE_ADD ...
分类:
编程语言 时间:
2020-05-03 14:43:34
阅读次数:
93
```python # 初始化一个Git仓库 git init # 添加文件到Git仓库 git add git commit -m # 查看工作区的状态 git status # 如有文件被修改,查看修改内容 git diff # 版本回退 git reset --hard # 查看提交历史,以便... ...
分类:
其他好文 时间:
2020-05-03 00:50:09
阅读次数:
53
git status 查看状态 git add . 添加所有文件 git commit m"[备注信息]" 提交 git remote add origin https://github.com/kong/springcloud.git 连接远程仓库 git push u origin master ...
分类:
其他好文 时间:
2020-05-02 18:59:50
阅读次数:
57
最近用express开发了一个博客,现在一直流行markdown进行文档编辑,我也用这种方式进行文档录入,找到了一个框架editor开始以为挺简单,没想到花了好几个小时来增加这个功能,因为没有比较完整的文档所以踩了很多坑,写这个也希望大家有前车之鉴。 1、引入方式 languages看你需求,如果没 ...
分类:
其他好文 时间:
2020-05-02 12:13:30
阅读次数:
82
编程环境:VSCode + Remote-WSL,Ubuntu 20.04 LTS (GNU/Linux 4.4.0-18362-Microsoft x86_64) /* 编写程序,提示用户输入名和姓,然后以“名 姓”的格式打印出来 */ #include<stdio.h> int main(voi ...
分类:
其他好文 时间:
2020-05-01 20:57:38
阅读次数:
85