会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
市丸银
知行合一
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
45
46
47
48
49
50
51
52
53
···
98
下一页
2020年7月14日
java switch case
摘要: 1、switch(运算结果) 或 case 值 的数据类型 a、基本数据类型:byte/short/char/int b、引用数据类型:String、枚举 2、注意break 当case符合的情况下,执行该case的语句,若当前case没有break,则继续执行,知道遇到break
阅读全文
posted @ 2020-07-14 21:53 市丸银
阅读(155)
评论(0)
推荐(0)
2020年7月13日
java 基础(容易忽略点)
摘要: 1、bytes short char 加法运算 先->为 int 再 运算
阅读全文
posted @ 2020-07-13 21:47 市丸银
阅读(158)
评论(0)
推荐(0)
2020年7月11日
numpy 求逆矩阵
摘要: https://blog.csdn.net/xienan_ds_zj/article/details/86738316
阅读全文
posted @ 2020-07-11 16:54 市丸银
阅读(558)
评论(0)
推荐(0)
py4j
摘要: 1、java端 package com.bd; import py4j.GatewayServer; import com.arcsoft.face.FaceFeature; public class FaceMain { public Double getFeature(String path1,
阅读全文
posted @ 2020-07-11 14:24 市丸银
阅读(273)
评论(0)
推荐(0)
2020年7月10日
git 删除远程仓库的内容
摘要: # 删除远程 git rm -r --cached rbac/utils/config.py # 删除本地 rm -rf rbac/utils/config.py git commit -m "文件"
阅读全文
posted @ 2020-07-10 14:11 市丸银
阅读(683)
评论(0)
推荐(0)
2020年7月7日
django orm 多对多 增删
摘要: https://www.icode9.com/content-4-223704.html
阅读全文
posted @ 2020-07-07 13:50 市丸银
阅读(126)
评论(0)
推荐(0)
2020年7月6日
django 数据库迁移 指定 特点 的app
摘要: python manage.py makemigrations <appname> python manage.py migrate <appname>
阅读全文
posted @ 2020-07-06 18:53 市丸银
阅读(877)
评论(0)
推荐(0)
django 获取客户端 ip
摘要: def get_client_ip(request): x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') if x_forwarded_for: ip = x_forwarded_for.split(',')[0] # 所以这里是真
阅读全文
posted @ 2020-07-06 16:48 市丸银
阅读(831)
评论(0)
推荐(0)
python 根据uuid获取mac地址
摘要: import uuid def get_mac_address(): node = uuid.getnode() mac = uuid.UUID(int=node).hex[-12:] print(mac) return mac get_mac_address()
阅读全文
posted @ 2020-07-06 15:47 市丸银
阅读(895)
评论(0)
推荐(0)
2020年7月3日
centos 安装 启动 snap 安装本地包
摘要: 安装 https://liqiang.io/post/install-snap-in-centos-cd98d073 启动 https://www.jianshu.com/p/42739a0182ff 安装本地包 https://blog.csdn.net/qq_25540095/article/d
阅读全文
posted @ 2020-07-03 11:08 市丸银
阅读(783)
评论(0)
推荐(0)
上一页
1
···
45
46
47
48
49
50
51
52
53
···
98
下一页
公告