码迷,mamicode.com
首页 >  
搜索关键字:x window system    ( 76983个结果
unityZXing二维码的生成与扫描
借鉴自某位大佬不记得了 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
centos8出现“FirewallD is not running”处理办法
打开21端口,出现“”错误,如:firewall-cmd --zone=public --permanent --add-port=21/tcp 说明防火墙没打开 解决办法: 执行:systemctl status firewalld查看防火墙 执行:systemctl start firewall ...
分类:其他好文   时间:2021-02-02 11:00:25    阅读次数:0
ArrayIndexOutOfBoundsException
数组角标越界异常: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
Unix ls UVA - 400
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 图片无法加载(持续更新)
问题 Github无法加载或不显示图片(头像等) 方法 打开路径 C:\Windows\System32\drivers\etc下的hosts文件增加如下内容: 注:hosts文件一般不能直接修改保存,需要先复制出来修改后再复制进去即可! 2021.1.31 最新 # GitHub Start 19 ...
分类:其他好文   时间:2021-02-01 12:48:22    阅读次数:0
wpf的资源(动态与静态资源的区别;使用字典资源)
动态与静态资源的区别 <Window.Resources> <ImageBrush x:Key="TileBrush" x:Name="DynamicBrush" TileMode="Tile" ViewportUnits="Absolute" Viewport="0 0 32 32" ImageS ...
分类:Windows程序   时间:2021-02-01 12:40:50    阅读次数:0
远程 管理 Docker
设置 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
2021.1.30 刷题(滑动窗口最大值-单调队列)
题目链接:https://leetcode-cn.com/problems/sliding-window-maximum 题目描述: 给你一个整数数组 nums,有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。返回滑动 ...
分类:其他好文   时间:2021-02-01 11:50:28    阅读次数:0
76983条   上一页 1 ... 81 82 83 84 85 ... 7699 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!