借鉴自某位大佬不记得了 using System.Collections; using System.Collections.Generic; using UnityEngine; using ZXing; using UnityEngine.UI; /// <summary> /// 二维码扫描识 ...
分类:
编程语言 时间:
2021-02-02 11:05:42
阅读次数:
0
基于layui的锁屏功能 //锁屏 function lockPage() { layer.open({ title: false, type: 1, content: $("#lock-box"), closeBtn: 0, shade: 0.9 }); }; $("#SP").on("click ...
分类:
Web程序 时间:
2021-02-02 11:01:20
阅读次数:
0
打开21端口,出现“”错误,如:firewall-cmd --zone=public --permanent --add-port=21/tcp 说明防火墙没打开 解决办法: 执行:systemctl status firewalld查看防火墙 执行:systemctl start firewall ...
分类:
其他好文 时间:
2021-02-02 11:00:25
阅读次数:
0
数组角标越界异常:ArrayIndexOutOfBoundsException int[] arr = new int[]{1,2,3,4,5}; 情况一: for(int i = 0;i <= arr.length;i++){ System.out.println(arr[i]); } 情况二: ...
分类:
其他好文 时间:
2021-02-02 10:33:22
阅读次数:
0
? A software system is a system of intercommunicating components based on software forming part of a computer system. 软件系统是以构成计算机系统一部分的软件为基础的内部通信组件的系统 ...
分类:
其他好文 时间:
2021-02-01 12:56:47
阅读次数:
0
The computer company you work for is introducing a brand new computer line and is developing a new Unix-like operating system to be introduced along w ...
分类:
其他好文 时间:
2021-02-01 12:53:22
阅读次数:
0
问题 Github无法加载或不显示图片(头像等) 方法 打开路径 C:\Windows\System32\drivers\etc下的hosts文件增加如下内容: 注:hosts文件一般不能直接修改保存,需要先复制出来修改后再复制进去即可! 2021.1.31 最新 # GitHub Start 19 ...
分类:
其他好文 时间:
2021-02-01 12:48:22
阅读次数:
0
动态与静态资源的区别 <Window.Resources> <ImageBrush x:Key="TileBrush" x:Name="DynamicBrush" TileMode="Tile" ViewportUnits="Absolute" Viewport="0 0 32 32" ImageS ...
设置 Docker 远程访问 编辑文件: vim /usr/lib/systemd/system/docker.service 在 ExecStart=/usr/bin/dockerd-current 后面加上 -H tcp://0.0.0.0:2375 -H unix://var/run/dock ...
分类:
其他好文 时间:
2021-02-01 12:21:08
阅读次数:
0
题目链接:https://leetcode-cn.com/problems/sliding-window-maximum 题目描述: 给你一个整数数组 nums,有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。返回滑动 ...
分类:
其他好文 时间:
2021-02-01 11:50:28
阅读次数:
0