[GKCTF2020]CheckIN 解题思路 打开直接是源码: <title>Check_In</title> <?php highlight_file(__FILE__); class ClassName { public $code = null; public $decode = null; ...
分类:
其他好文 时间:
2020-06-09 20:25:14
阅读次数:
431
Java高并发教程:Reactor反应器模式 Reactor反应器模式 到目前为止,高性能网络编程都绕不开反应器模式。很多著名的服务器软件或者中间件都是基于反应器模式实现的,如Nginx、Redis、Netty。 反应器模式是高性能网络编程的必知、必会的模式。 Reactor简介 反应器模式由Rea ...
分类:
编程语言 时间:
2020-06-09 18:53:45
阅读次数:
74
现在很多时候,后台接口返回的时间参数都是时间戳的形式了,但是为了在页面渲染出正常的是时间,我们必须需要在前端转换一下; <script> var start_time="1590044400"; function getLocalTime(nS) { return new Date(parseInt ...
分类:
Web程序 时间:
2020-06-09 11:22:35
阅读次数:
72
现象: Failed to compile. (2818,14): Duplicate identifier 'LibraryManagedAttributes'. Duplicate identifier问题的解决 修改方法: 1. 找到tsconfig.json文件 解决方案是在tsconfig ...
分类:
其他好文 时间:
2020-06-09 10:04:07
阅读次数:
272
python 环境:Python 2.7.16 需要安装:pandas/xlrd (pip2 install pandas/ pip2 install xlrd) import pandas as pd def find_row(num_value,file_name): """ Returns t ...
分类:
编程语言 时间:
2020-06-09 09:46:02
阅读次数:
403
Go调度器系列(2)宏观看调度器 上一篇文章《Go语言高阶:调度器系列(1)起源》,学goroutine调度器之前的一些背景知识,这篇文章则是为了对调度器有个宏观的认识,从宏观的3个角度,去看待和理解调度器是什么样子的,但仍然不涉及具体的调度原理。 三个角度分别是: 调度器的宏观组成 调度器的生命周 ...
分类:
其他好文 时间:
2020-06-08 14:31:40
阅读次数:
66
You have an array of logs. Each log is a space delimited string of words. For each log, the first word in each log is an alphanumeric identifier. Then ...
分类:
其他好文 时间:
2020-06-08 12:55:59
阅读次数:
59
一、获取个人定位信息(使用map、markers组件) wx.getLocation({ type: 'gcj02', success: (res)=> { let latitude = res.latitude let longitude = res.longitude this.setData( ...
分类:
微信 时间:
2020-06-08 10:38:16
阅读次数:
112
什么是homebrew Homebrew 会将软件包安装到独立目录,并将其文件软链接至 /usr/local 。 Homebrew 不会将文件安装到它本身目录之外,所以您可将 Homebrew 安装到任意位置。 轻松创建你自己的 Homebrew 包。 完全基于 Git 和 Ruby,所以自由修改的 ...
分类:
系统相关 时间:
2020-06-07 21:08:05
阅读次数:
85
#include <stdio.h> int main() { int a = 0; loop: a++; printf("%d\n",a); if(a == 100) goto end; goto loop; end: return 0; } ...
分类:
编程语言 时间:
2020-06-07 18:01:02
阅读次数:
81