原文地址:https://knowledge.autodesk.com/support/mudbox/troubleshooting/caas/sfdcarticles/sfdcarticles/The-Send-To-option-is-greyed-out.html Issue: The ‘Se ...
分类:
其他好文 时间:
2020-02-01 10:41:20
阅读次数:
540
挂载目录 1.挂载硬盘 fdisk /dev/sdb 2.格式化硬盘 mkfs.ext4 /dev/sdb1 echo "/dev/sdb1 /data ext4 defaults 0 0" >> /etc/fstab 指定目录 1.查看默认目录 sudo docker info | grep "D ...
分类:
其他好文 时间:
2020-02-01 00:38:42
阅读次数:
288
列表 列表是Python中最基本也是最常用的数据结构之一。列表中的每个元素都被分配一个数字作为索引,用来表示该元素在列表内所排在的位置。第一个元素的索引是0,第二个索引是1,依此类推。 Python的列表是一个有序可重复的元素集合,可嵌套、迭代、修改、分片、追加、删除,成员判断。 从数据结构角度看, ...
分类:
编程语言 时间:
2020-01-30 21:23:00
阅读次数:
118
测试环境 CPU: 64位双核处理器 内存: 4G DDR3 数据库:mysql 版本大于等于 5.6 mariadb 版本大于等于 5.5.6 环境 系统: CentOS 7 IP: 192.168.244.144 设置 selinux 和防火墙 $ firewall-cmd --zone=pub ...
分类:
其他好文 时间:
2020-01-30 15:47:45
阅读次数:
108
Django 中创建Model时报以下错误: TypeError: init() missing 1 required positional argument: ‘on_delete’ 代码如下: from django.db import models Create your models her ...
分类:
其他好文 时间:
2020-01-30 14:27:27
阅读次数:
69
报错: 解决方法: 输入select host,user,plugin,authentication_string from mysql.user; 看用户信息 更改加密方式,重置密码:(原加密方式为:alter user 'root'@'localhost' identified by '123' ...
分类:
数据库 时间:
2020-01-30 14:19:14
阅读次数:
102
今天写makefile中遇到了2个问题。 和 问题一: Makefile missing separator. Stop 当出现这种error,一般与Tab缩进有关,makefile要求命令行开头必须用tab键 问题二: recipe commences before first target. S ...
分类:
其他好文 时间:
2020-01-30 12:29:23
阅读次数:
139
ActionBar指的是app上面那一栏选项 首先要自定义一个资源文件夹menu,在里面写一些菜单选项 <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/and ...
分类:
移动开发 时间:
2020-01-29 23:34:11
阅读次数:
98
官方说明链接: https://intellij support.jetbrains.com/hc/en us/community/posts/115000736584 SciView in PyCharm 2017 3 reduces functionality of Matplotlib pyc ...
分类:
其他好文 时间:
2020-01-29 21:30:46
阅读次数:
125
springboot项目下的一些统一操作。 idea需要实现安装lombok插件 依赖: 依赖少了的,漏了的自己引。 <!--切面--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot- ...
分类:
编程语言 时间:
2020-01-29 17:55:50
阅读次数:
111