<template> <div class="about"> <div> <input type="text" placeholder="留言人" v-model="obj.name" /> <input type="text" placeholder="内容" v-model="obj.con" ...
分类:
其他好文 时间:
2020-06-15 20:53:41
阅读次数:
109
写过swift的同学应该都知道defer这个关键字,可以让我们在函数return之前执行指定的代码,这对于有多个提前return而忘记释放资源的函数来说,简直不要太方便了,然而对于swift的前辈Objective-C或C++来说,苹果并没有帮我们定义,因此本文总结一下如何在C++和Objectiv... ...
分类:
编程语言 时间:
2020-06-14 18:54:28
阅读次数:
63
lsmod:内容来自/proc/modules modinfo:show information about linux kernel module modprobe: modprobe --show-depends ext4 显示ext4内核模块的依赖关系 --dry-run 测试目的 --sho ...
分类:
其他好文 时间:
2020-06-14 18:44:20
阅读次数:
64
关于我 一个佛系(默默无闻)的小程序员, 也想写出牛逼的代码 大学曾参与过 ACM, 现已退役,偶尔写写 Leetcode 博客主题来源于 silence 发现很多时候自己写过的博客,并没有起反思总结的作用(555, 想玩的时候学不下去,想学的时候要学的东西太多) 现在更喜欢用 issues 来提醒 ...
分类:
其他好文 时间:
2020-06-14 13:07:44
阅读次数:
113
# Elasticsearch Configuration # # NOTE: Elasticsearch comes with reasonable defaults for most settings. # Before you set out to tweak and tune the con ...
分类:
其他好文 时间:
2020-06-13 16:02:42
阅读次数:
62
The Softmax Function In the next video, we'll learn about the softmax function, which is the equivalent of the sigmoid activation function, but when t ...
分类:
其他好文 时间:
2020-06-11 09:15:58
阅读次数:
62
// // ViewController19.swift // swiftT // // Created by wjwdive on 2020/6/8. // Copyright © 2020 wjwdive. All rights reserved. // import UIKit class V ...
分类:
编程语言 时间:
2020-06-10 19:15:45
阅读次数:
60
// swift 里的 权限控制 // 模块和源文件 //模块: 模块指的是独立的代码分发单元,框架或应用程序会作为一个独立的模块来构建和发布。在swift中,一个模块可以使用import关键字导入另一个模块 //源文件: 源文件就是swift 里的源代码文件,它通常属于一个模块,即一个应用程序或者 ...
分类:
编程语言 时间:
2020-06-10 19:06:26
阅读次数:
65
title: mcu-stm32-IAP-0-about date: 2020-05-27 08:51:58 categories: tags: - iap - stm32 - about 章节概述: 介绍什么是IAP、IAP的前置知识。 IAP IAP(In Application Program ...
分类:
其他好文 时间:
2020-06-09 23:44:34
阅读次数:
63
二分,边界判断好麻烦啊 TNT,代码好像还能简便一些 给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。 你的算法时间复杂度必须是 O(log n) 级别。 如果数组中不存在目标值,返回 [-1, -1]。 示例 1: 输入: nums ...
分类:
编程语言 时间:
2020-06-09 20:27:34
阅读次数:
46