码迷,mamicode.com
首页 > 2021年02月18日 > 全部分享
JavaScript 取模与取余
除法 商是 令其与分子乘积的绝对值 不超过 分母的绝对值 且最接近的数 (-10) / 3 = -3 余 -1 10 / (-3) = -3 余 1 (-10) / (-3) = 3 余 -1 取余与取模 取余是数学中的概念,取模是计算机中的概念,两者都是求两数相除的余数 当两数符号相同时,结果相同 ...
分类:编程语言   时间:2021-02-18 13:08:16    阅读次数:0
进程间通信之——信号(一)
关于linux信号的知识点,我找到一篇博客写的非常好:https://www.cnblogs.com/hoys/archive/2012/08/19/2646377.html 本篇博客主要是为了加深自己的理解,并且在上篇博客的基础上做一些扩充,有可能会有说的不对的地方。 具体与信号相关的资料可以用输 ...
分类:系统相关   时间:2021-02-18 13:08:04    阅读次数:0
图解算法——全排列(Permutations)
1. 题目描述 Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order. 2. Examples 示例1: Input ...
分类:编程语言   时间:2021-02-18 13:07:50    阅读次数:0
剑指 Offer 66. 构建乘积数组 + 思维
剑指 Offer 66. 构建乘积数组 Offer_66 题目描述 题解分析 java代码 package com.walegarrett.offer; /** * @Author WaleGarrett * @Date 2021/2/14 21:56 */ /** * 题目详情:给定一个数组 A[ ...
分类:编程语言   时间:2021-02-18 13:07:35    阅读次数:0
进程间通信之——信号复现(1~5)(二)
普通信号的复现 1)SIGHUP 该信号在终端挂起或控制进程终止时发出,那可以通过在终端中运行进程,然后关闭终端来实现。 代码如下: 1 /** 2 * filename: signal_1.c 3 * author: Suzkfly 4 * date: 2021-02-15 5 * platfor ...
分类:系统相关   时间:2021-02-18 13:07:16    阅读次数:0
MySQL存储过程
原文链接http://zhhll.icu/2021/01/03/%E6%95%B0%E6%8D%AE%E5%BA%93/%E5%85%B3%E7%B3%BB%E5%9E%8B%E6%95%B0%E6%8D%AE%E5%BA%93/MySQL/MySQL%E5%AD%98%E5%82%A8%E8%BF ...
分类:数据库   时间:2021-02-18 13:07:00    阅读次数:0
剑指 Offer 59 - I. 滑动窗口的最大值
一、题目描述 给定一个数组 nums 和滑动窗口的大小 k,请找出所有滑动窗口里的最大值。 示例: 输入: nums = [1,3,-1,-3,5,3,6,7], 和 k = 3输出: [3,3,5,5,6,7] 解释: 滑动窗口的位置 最大值 [1 3 -1] -3 5 3 6 7 3 1 [3 ...
分类:其他好文   时间:2021-02-18 13:06:38    阅读次数:0
Seata-Server的下载配置和使用
第一步:下载安装包 下载地址: https://github.com/seata/seata/releases/tag/v0.9.0 解压到想存放的地址 第二步:配置seata-server config目录下的file.conf文件 29行左右找到service模块儿 修改内容 vgroup_ma ...
分类:其他好文   时间:2021-02-18 13:06:20    阅读次数:0
POJ3784 Running Median 题解
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:其他好文   时间:2021-02-18 13:06:04    阅读次数:0
(node:18692) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): TypeError: Object.entries is not a function 的解决方法
在 Vue.JS 项目中执行 npm run build 没想到出现了这个错误 (node:18692) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): TypeError: Objec ...
分类:其他好文   时间:2021-02-18 13:05:49    阅读次数:0
tensorflow和pytorch环境的搭建
因为之后要换电脑,就写个随笔当做备份,省得以后找了。 tensorflow Win10下安装tensorflow详细过程 pytorch WIN10下pytorch环境配置(安装了半天的血泪史) ...
分类:其他好文   时间:2021-02-18 13:05:29    阅读次数:0
IDEA 警告 No archetype found in remote catalog. Defaulting to internal catalog
IDEA 警告 No archetype found in remote catalog. Defaulting to internal catalog 新建Maven项目,遇到警告: No archetype found in remote catalog. Defaulting to inter ...
分类:其他好文   时间:2021-02-18 13:05:15    阅读次数:0
jQuery的attr方法
attr方法可以获取或者设置属性节点的值。若传递一个参数:可获取属性节点的值;若传递两个参数:则设置属性节点的值。 例如在下面的代码中: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 ...
分类:Web程序   时间:2021-02-18 13:04:51    阅读次数:0
红黑屏蓝牙电子价签折腾记
简介 这几天过年,有点时间开始折腾以前买的红黑版电子价签了。目标是可以通过手机蓝牙发送图片到价签。下面是效果图: 先放上源码吧,因为后面都是些闲话了。 https://github.com/muyuchl/cc2640BleEpd 包括了android app和IAR工程,怕编译的可以直接下载二进制 ...
分类:其他好文   时间:2021-02-18 13:04:38    阅读次数:0
TypeScript、React和webpack结合运用
官方文档:https://www.tslang.cn/docs/handbook/react-&-webpack.html 前提准备 项目结构 demo/ ├─ dist/ └─ src/ └─ components/ 初始化 npm init 安装依赖 npm install -g webpack ...
分类:Web程序   时间:2021-02-18 13:04:23    阅读次数:0
JavaScript学习06(操作BOM和表单)
操作BOM window 所有浏览器都支持 window 对象。它代表浏览器的窗口。 所有全局 JavaScript 对象,函数和变量自动成为 window 对象的成员。 全局变量是 window 对象的属性。 全局函数是window对象的方法。 甚至(HTML DOM 的)document 对象也 ...
分类:编程语言   时间:2021-02-18 13:04:11    阅读次数:0
对于maven中无法加载类路径下的配置文件
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ ...
分类:其他好文   时间:2021-02-18 13:03:49    阅读次数:0
208条   上一页 1 ... 7 8 9 10 11 12 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!