Code
LLM硬着陆
Deep Learning/Bigdata
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu安装git命令
检查git是否已经安装,输入git version命令即可,如果没有显示版本号表示没有安装git 安装git sudo apt-get install git 配置git全局环境 git config --global user.name "用户名" git config --global user.email "邮箱地址" ...原创 2020-05-11 14:26:36 · 366 阅读 · 0 评论 -
[译] Google Interview University 一套完整的学习手册帮助自己准备 Google 的面试
[译] Google Interview University 一套完整的学习手册帮助自己准备 Google 的面试 十一七天乐,看池博的github,发现这个markdown,转过来一下 原链接:https://github.com/jwasham/coding-interview-university/blob/master/translations/README-cn.md 原文地址...转载 2018-10-04 21:23:38 · 4226 阅读 · 0 评论 -
IntelliJ IDEA For Mac 快捷键
IntelliJ IDEA For Mac 快捷键 转自 https://github.com/judasn/IntelliJ-IDEA-Tutorial/blob/master/keymap-mac-introduce.md 根据官方pdf翻译:https://www.jetbrains.com/idea/docs/IntelliJIDEA_ReferenceCard_Mac.pdf 在 ...转载 2018-10-05 20:01:36 · 212 阅读 · 0 评论 -
IntelliJ IDEA常用快捷键汇总
快捷键 转自 https://github.com/judasn/IntelliJ-IDEA-Tutorial/blob/master/keymap-introduce.md Ctrl 快捷键 介绍 Ctrl + F 在当前文件进行文本查找 (必备) Ctrl + R 在当前文件进行文本替换 (必备) Ctrl + Z 撤销 (必备) Ctrl + Y 删除光标所在...转载 2018-10-05 20:09:18 · 658 阅读 · 0 评论 -
使用exe4j将java程序打包为exe文件
下载地址:http://www.pc0359.cn/downinfo/52705.html#download 安装 打开exe4j 一路Next 查看已经生产的exe文件原创 2018-11-06 16:39:47 · 317 阅读 · 0 评论 -
[Spring Boot] 一、使用Spring Boot建立一个应用
最近要做一个客户端的活,准备使用轻量级的Spring Boot来完成,记录整个Spring Boot学习过程 需要准备的内容 JDK 1.8 or later 一个IDE,我习惯于使用Intellij Idea Maven 克隆Github上的Demo $ git clone https://github.com/spring-guides/gs-rest-service.git ...原创 2018-11-05 22:27:05 · 184 阅读 · 0 评论 -
[Spring Boot] Spring Boot MultipartFile上传文件
Spring Boot使用MultipartFile来完成文件上传 Spring Boot 使用MultipartFile来完成文件上传 @ResponseBody @RequestMapping(value = "/put") public Boolean putFile(@RequestParam("file&原创 2018-12-14 11:04:31 · 2877 阅读 · 0 评论 -
[Spring Boot] Spring Boot Jar外部配置文件
Spring Boot配置文件 Spring Boot程序默认从application.properties,一般默认的配置文件位于resourses目录下,为了方便部署配置,也允许使用外部配置文件 (最高优先级)通过命令行指定 SpringApplication会默认将命令行选项参数转换为配置信息。例如,启动时命令参数指定: java -jar myproject.jar --server....原创 2018-12-17 22:49:42 · 374 阅读 · 0 评论
分享