有问题先找 官方文档 :https://docs.microsoft.com/zh cn/windows/wsl/user support 而不是找其他的什么博客和教程,毕竟他们许多都没有更新,或可能是旧版本,比如这个: "点我" 再比如这个: "点我" 这些都老得不要不要的了。 2020年5月19 ...
package com.example.sevenzuoy; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import a ...
分类:
其他好文 时间:
2020-05-19 10:54:05
阅读次数:
50
题目 Given a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer is yes, if 6 is a decimal number and 110 i ...
分类:
其他好文 时间:
2020-05-19 01:04:00
阅读次数:
58
学习内容 先上项目地址,一个简单的AVPlayerDemo: https://github.com/practiceqian/QCAVPlayerDemo AVPlayer学习 1. 几个播放器相关的类 AVPlayer、AVURLAsset、AVPlayerItem、AVPlayerLayer 2 ...
分类:
其他好文 时间:
2020-05-19 00:21:52
阅读次数:
80
#include<stdio.h> #include<string.h> #define yw 10000 //yw表示压4位数 struct node{ int s[10001];//s存储数据 int len,zf;//len存储位数,zf存储正负(1为正-1为负) }; char dr[100 ...
分类:
编程语言 时间:
2020-05-18 20:34:37
阅读次数:
55
1. base64的使用案例 其实从本质上来说,无论是图片还是文字或者字符,都是数据,即最原始的一串0和1组成的二进制数据,API接收或者返回图片,本质上也就是接收或返回一段数据流。向服务器发送图片,大致步骤就是先将以二进制的方式打开,再post到服务器。从服务器接收图片,我这边的做法是服务器端将图 ...
分类:
其他好文 时间:
2020-05-18 18:35:58
阅读次数:
53
题目 People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6 digit number, w ...
分类:
其他好文 时间:
2020-05-18 14:35:03
阅读次数:
49
case when Case具有两种格式。简单Case函数和Case搜索函数。 简单Case函数 CASE sex WHEN '1' THEN '男' WHEN '2' THEN '女' ELSE '其他' END --Case搜索函数 CASE WHEN sex = '1' THEN '男' WH ...
分类:
其他好文 时间:
2020-05-17 23:08:44
阅读次数:
95
前言 在高中数学的学习中,有好几个数学素材,需要转化视角来学习和使用。 三角求值 需要将形如$\theta+\cfrac{\pi}{4}$的角看成一个整体角;比如下例, 例1【2017枣庄模拟】设$\alpha$为锐角,$cos(\alpha+\cfrac{\pi}{6})=\cfrac{4}{5} ...
分类:
其他好文 时间:
2020-05-17 17:54:15
阅读次数:
97
有时候我们在计算完多个工况以后需要对比不同工况的差异,在CFD-Post当中可以使用case comparison来完成这个操作,但是CFD-Post主要是针对CFX和Fluent的后处理,对于其他软件的计算结果可使用Ensight或者ParaView来实现类似CFD-Post当中的case com ...
分类:
其他好文 时间:
2020-05-17 09:18:00
阅读次数:
194