lcx.exe算是端口转发工具中普及率特别高的吧。当然,最近也出了好些Web端口转发工具,这个待后续再分析一下。我从网上下载了一个lcx的源码片段,结合源码谈谈自己的认识。 lcx工作原理是使不同端口之间形成一个回路,这样就可以进行端口转发。常用于外网连接内网3389端口。具体使用方法网上一堆。 这 ...
分类:
其他好文 时间:
2020-07-20 15:16:44
阅读次数:
61
/** Axios请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ import axios from 'axios'; import baseUrl from "./config"; import {Message} from ' ...
分类:
移动开发 时间:
2020-07-20 13:13:37
阅读次数:
127
/** 请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ /** * 发送请求,处理请求失败 * * request(url, method, data, callback) * request(url, method, callb ...
分类:
Web程序 时间:
2020-07-20 13:11:43
阅读次数:
82
#!/usr/bin/env python3 # _*_ coding:utf-8 _*_ ''' @File :${NAME}.py @Author:mikigo @Date :${DATE} ${TIME} @Desc : ''' ...
分类:
其他好文 时间:
2020-07-20 13:06:55
阅读次数:
91
You appear to be running a SWT application. On macOS you must specify the -XstartOnFirstThread option when running the jar to run SWT correctly: jar - ...
package LeetCode_122 /** * 122. Best Time to Buy and Sell Stock II * https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/description/ * * ...
分类:
其他好文 时间:
2020-07-19 18:07:26
阅读次数:
79
Basic Transformations in Edit Mode import bpy import bmesh # Must start in object mode # Script will fail if scene is empty bpy.ops.object.mode_set(mo ...
分类:
其他好文 时间:
2020-07-19 15:57:11
阅读次数:
75
exec dbms_stats.gather_table_stats('schema名字','表名'); select table_name,num_rows from user_tables order by num_rows desc; 注: analyze table 表名 compute s ...
分类:
其他好文 时间:
2020-07-19 00:55:49
阅读次数:
93
在对数据进行汇总和分析的时候,经常需要用到排名相关的操作,下面是hive中经常用到的3个排名函数: rank() dense_rank() row_number() 函数说明: rank():在一组数据内按顺序显示排名顺序,值相同的情况下,排序数会重复,下个排序数会根据记录数接着排名。 dense_ ...
分类:
其他好文 时间:
2020-07-19 00:49:43
阅读次数:
74
package LeetCode_1507 import java.lang.StringBuilder /** * 1507. Reformat Date * https://leetcode.com/problems/reformat-date/description/ * * Given a ...
分类:
其他好文 时间:
2020-07-19 00:30:33
阅读次数:
69