problem 892. Surface Area of 3D Shapes solution#1: code 注意,不是简单的投影面积的2倍; 参考 1. leetcode_easy_math_892. Surface Area of 3D Shapes; 2. Grandyang; 完 ...
分类:
其他好文 时间:
2021-04-29 11:47:25
阅读次数:
0
from django.http import JsonResponse from django.contrib.auth import authenticate,login,logout # 登录处理 def signin(request): # 从 HTTP POST 请求中获取用户名、密码参数 ...
分类:
其他好文 时间:
2021-04-29 11:45:13
阅读次数:
0
Nginx 处理请求的过程一共划分为 11 个阶段,按照执行顺序依次是 post-read、server-rewrite、find-config、rewrite、post-rewrite、preaccess、access、post-access、try-files、content 以及 log。 1 ...
分类:
其他好文 时间:
2021-04-29 11:38:38
阅读次数:
0
GIS坐标系:WGS84,GCJ02,BD09,火星坐标,大地坐标等解析说与转换 各个坐标系的来龙去脉背景诠释,使用注意事项,各个坐标系转换方法。WGS84转GCJ02、GCJ02转BD009、BD09转GCJ02。坐标批量转换库,https: www npmjs com package coord ...
分类:
其他好文 时间:
2021-04-28 12:18:47
阅读次数:
0
// watch 简单应用 watch(data, () => { document.title = 'updated ' + data.count }) // watch 的两个参数,代表新的值和旧的值 watch(refData.count, (newValue, oldValue) => { ...
分类:
其他好文 时间:
2021-04-28 12:15:10
阅读次数:
0
git log 显示从最近到最远的所有提交日志 git reflog 显示每次提交的 commit 的 comit id git reset --hard HEAD^ // 回退到 最后一次提交的版本 git reset --hard 版本id // 回退到 当前id 提交的版本 -> id 可以通 ...
分类:
其他好文 时间:
2021-04-28 12:05:46
阅读次数:
0
library(ggplot2) set.seed(1) vals1 ← rbeta(1000, 0.5, 0.1) vals2 ← rbeta(1000, 0.25, 0.3) gg ← ggplot(data.frame(x=c(vals1, vals2), grp=c(rep("a", 100 ...
分类:
其他好文 时间:
2021-04-28 11:54:18
阅读次数:
0
绑定事件 在input标签内使用bindinput关键字,可以绑定input事件 例如: index.wxml中 `<input type="text" bindinput="handInputOne">` index.js中 `handInputOne(a){ console.log(a) //若 ...
分类:
微信 时间:
2021-04-28 11:50:08
阅读次数:
0
//多个输入框的情况 if (Number(value) <= Number(se.fullCredit)) { value = value.replace(/[^\d.]/g, '') //清除“数字”和“.”以外的字符 value = value.replace(/^\./g, '') //验证 ...
分类:
其他好文 时间:
2021-04-28 11:44:32
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0