码迷,mamicode.com
首页 >  
搜索关键字:pr    ( 3098个结果
交互原型设计工具:Principle for Mac(V6.10多语言版)
Principle for Mac这款交互设计工具让你五分钟即可制作出一个具有完整交互动画的原型,并且可将交互动画生成视频或者 Gif 分享到 Dribbble、Twitter 等社交平台。 无论您设计的是多屏幕应用程序的流程,还是新的互动和动画,“原则”可以让您创造出令人惊叹的外观设计。此外 Pr ...
分类:编程语言   时间:2021-07-02 16:12:34    阅读次数:0
Springboot集成Redis举例
依赖包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 配置文件(application.pr ...
分类:编程语言   时间:2021-07-01 16:26:20    阅读次数:0
push local repo to git remote on creating a new branch
current status: We have a remote repository and a local project repository with no git configured. We want to push to remote and create new branch. Pr ...
分类:其他好文   时间:2021-07-01 16:24:13    阅读次数:0
打印三角形和冒泡排序
打印三角形 public class TriangleDemo { public static void main(String[] args) { for (int j = 1; j <= 5; j++) { for (int i = 5; i >= j; i--) { System.out.pr ...
分类:编程语言   时间:2021-06-30 18:13:09    阅读次数:0
SQL解析Json
1 CREATE FUNCTION [dbo].[parseJSON] (@Json NVARCHAR(MAX)) 2 RETURNS @hierarchy TABLE (element_id INT IDENTITY(1, 1) NOT NULL, /* internal surrogate pr ...
分类:数据库   时间:2021-06-28 18:39:44    阅读次数:0
Python-numpy基础
numpy库的基本操作 import numpy as np import math #创建数组 a=np.arange(10) print(a) print(type(a)) #对数组里面的元素开平分 b=[3,4,9] #定义结果列表 result=[] #遍历列表 for i in b: pr ...
分类:编程语言   时间:2021-06-10 18:30:37    阅读次数:0
vue2和vue3 过滤器 变化
在 2.x,开发者可以使用过滤器来处理通用文本格式。 <template> <h1>Bank Account Balance</h1> <p>{{ accountBalance | currencyUSD }}</p> </template> <script> export default { pr ...
分类:其他好文   时间:2021-06-10 18:28:00    阅读次数:0
c语言 13-12
1、 #include <stdio.h> #include <time.h> char data_file[] = "datatime.dat"; void get_data(void) { FILE *fp; if((fp = fopen(data_file, "r")) == NULL) pr ...
分类:编程语言   时间:2021-06-10 17:48:54    阅读次数:0
win10 MySQLroot 远程连接
今天调试C++ 连接mysql数据库,用localhost可以成功,但换成本地IP地址则报错, 后参考网上博文,采用命 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; flush pr ...
分类:数据库   时间:2021-06-08 23:13:25    阅读次数:0
写作替换词
写作替换词 (1) with the development of sth. → due to the proliferation of sth. proliferation /pr??l?f??re??n/ n. 增殖,扩散;分芽繁殖 (2) more and more → the number ...
分类:其他好文   时间:2021-06-02 20:40:06    阅读次数:0
3098条   1 2 3 4 ... 310 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!