码迷,mamicode.com
首页 >  
搜索关键字:theme color    ( 182175个结果
RGB与YUV转换以及存储格式
RGB与YUV 色彩空间(Color Space)[1]:is a specific organization of colors. In combination with physical device profiling, it allows for reproducible represent ...
分类:其他好文   时间:2021-06-16 18:25:08    阅读次数:0
php BCmath 封装类
<?php /** * BCmath 封装类 * Calc::init(10)->add(1,2,3)->sub(1,2)->mul(4, 5)->value(2); // (10+1+2+3-1-2)*4*5 最后 get 保留 2位小数 * Calc::add(10, 2)->div(2)->v ...
分类:Web程序   时间:2021-06-16 18:18:02    阅读次数:0
wifi和wireshark(1)(ip,mac过滤)
mac地址过滤 wireshark捕获过滤中过滤MAC地址/物理地址 ether host 80:f6:2e:ce:3f:00 //过滤目标或源地址80:f6:2e:ce:3f:00的数据包 ether dst host 80:f6:2e:ce:3f:00 //过滤目标地址80:f6:2e:ce:3 ...
分类:系统相关   时间:2021-06-16 17:58:47    阅读次数:0
2.原理初探
//程序的主入口,不能删也不能改 @SpringBootApplication//标注是一个springBoot的应用 public class DemoApplication { //将springBoot应用启动 public static void main(String[] args) { ...
分类:其他好文   时间:2021-06-16 17:46:34    阅读次数:0
查找数组的最大值、是否存在某个元素,水仙花数
查找数组的最大值 <script> //查找数组中的最大值,如: var arr = [23,3,42,56,17,88,22,16,77] var arr = [23,3,42,56,17,88,22,16,77] var max = arr[0] for (let i = 1; i < arr. ...
分类:编程语言   时间:2021-06-16 17:40:07    阅读次数:0
Redis命令行查询缓存值
一、连接Redis服务器 redis-cli -h host -p port -a password 二、查询所有的keys keys * 三、获取指定的key对应的值 1)查询key对应的value type <key> 2)不同的type,查询的命令不一样 if value is of type ...
分类:其他好文   时间:2021-06-15 18:44:46    阅读次数:0
netcore 俩个线程乱序调整
class Program { public static long flgVal = 0; static void Main(string[] args) { int n = 100; Task.Run(() => DaMi(n)); Task.Run(() => LaoShu(n)); Cons ...
分类:编程语言   时间:2021-06-15 18:31:41    阅读次数:0
C#10新功能预览
C#10新功能预览 原创2021-06-01 11:15·张传宁IT讲堂 2021年4月19日微软发布公告称将于今年夏季发布首款64位的 Visual Studio 2022,2021年5月20日又发布了 Visual Studio 2022 线路图,进一步提升开发生产力。与 Visual Stud ...
分类:Windows程序   时间:2021-06-15 17:59:20    阅读次数:0
每日LeetCode - 125. 验证回文串(Python 3)
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:编程语言   时间:2021-06-13 10:55:47    阅读次数:0
vue-点击切换li文本颜色
<!-- * @description 参数1 * @fileName shoppint * @author userName * @date 2021-06-12 17:02:03 * @version V1.0.0 !--> <!DOCTYPE html> <html lang="zh-CN"> ...
分类:其他好文   时间:2021-06-13 10:25:03    阅读次数:0
182175条   上一页 1 ... 11 12 13 14 15 ... 18218 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!