码迷,mamicode.com
首页 >  
搜索关键字:move    ( 6147个结果
mysql学习入门-mysql的用户账号密码操作
创建用户: create user 'alex'@'192.168.1.1' identified by '123123'; 用户名为alex, 密码是'123123', 服务器的ip ‘192.168.1.1’ create user 'alex'@'192.168.1.%' identified ...
分类:数据库   时间:2019-12-25 17:53:11    阅读次数:98
Anaconda + Jupyter notebook下载使用
下载地址 https://www.anaconda.com/distribution/ download section 使用镜像源 https://www.cnblogs.com/dereen/p/anaconda_tencent_mirrors.html conda查看包的版本 conda li ...
分类:其他好文   时间:2019-12-25 15:46:50    阅读次数:186
PHP 超全局变量之$_FILES
$_FILES——通过 HTTP POST 方式上传到当前脚本的项目的数组。 假设我们上传文件字段name='userfile',$_FILES数组里包括: 文件上传可能用到的其他函数: is_uploaded_file: move_uploaded_file: ...
分类:Web程序   时间:2019-12-25 01:25:12    阅读次数:109
摩天轮旋转轮播
http://bkvalve.mmler.cn/products/butterfly-valve/ var item = $('.p02-1-s1 .tab > li'); item.click(function() { $(this) .addClass('current') .siblings( ...
分类:其他好文   时间:2019-12-24 18:28:11    阅读次数:94
nginx部署ant-design-pro
前言 记录一下安装部署nginx+ant design pro的过程 nginx安装 nginx的安装直接看官网的,可以是源码编译安装(百度搜索出来的大多是这种安装方式,例如:https://www.cnblogs.com/xxoome/p/5866475.html) ,也可以是yum直接安装最新稳 ...
分类:其他好文   时间:2019-12-23 16:52:34    阅读次数:234
Linux (Ubuntu)使用vi和vim方向键变成了ABCD
ubuntu下 vi输入方向键会变成ABCD,这是ubuntu预装的是vim tiny版本,安装vim full版本即可解决。 首先,卸载了原有的vim $ sudo apt-get remove vim-common然后,安装新的vim-full $ sudo apt-get install vi ...
分类:系统相关   时间:2019-12-23 12:54:17    阅读次数:104
Ubuntu19 安装 pylearn2
环境: head -n 1 /etc/issue # Ubuntu 19.10 \n \l python -V # Python 2.7.17 其中,python环境是我自己建立的虚拟 venv 方便测试( 相当于你的python 实际路径) 1. 准备 下载 pylearn2 源码: https: ...
分类:系统相关   时间:2019-12-22 18:21:54    阅读次数:104
动态规划
动态规划 [TOC] 数字三角形问题 LeetCode 120.Triangle 尝试使用分治法 Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent nu ...
分类:其他好文   时间:2019-12-22 16:41:16    阅读次数:132
leetcode1296
算法思路:贪心。 先将数组排序,然后按照顺序添加到顺序字典中。 另记录一个key值从小到大的列表。 每次从key列表中选择最小的元素,作为组头,当前组的剩余k-1个元素,依次+1。如果不满足这个条件,则返回False。 如果全部的元素都能分配到对应的组中,就表示符合题意。 ...
分类:其他好文   时间:2019-12-22 14:38:45    阅读次数:112
Nginx 服务器搭建
yum源安装nginx (使用源码安装就进行源码的操作,不可混淆) + 安装命令 + 查看关于nginx的所有地址 + nginx配制文件(root指向的HTML,user ) + nginx 页面 + 查看进程号(默认80,表示已启动) + 配制文件修改后,重新加载 + 测试文件是否正确 + 启动 ...
分类:其他好文   时间:2019-12-22 00:31:54    阅读次数:82
6147条   上一页 1 ... 78 79 80 81 82 ... 615 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!