apache的各个软件各个版本下载: http://archive.apache.org/dist/ 1.下载spark. sudo tar -zxf ~/下载/spark-2.0.2-bin-without-hadoop.tgz -C /usr/local/ cd /usr/local sudo ...
分类:
其他好文 时间:
2019-03-25 14:36:06
阅读次数:
209
原文: http://blog.csdn.net/pipisorry/article/details/39909057 本博客一直在同步更新中! 内容包含:pycharm学习技巧 Learning tips、PyCharm3.0默认快捷键(翻译的)、pycharm常用设置、pycharm环境和路径配 ...
分类:
其他好文 时间:
2019-03-24 17:29:35
阅读次数:
229
[TOC] 题目描述: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 输入: "bbbbb" 输出: 1 解释: 因为无重复字符的最长子串是 "b ...
分类:
其他好文 时间:
2019-03-18 11:50:10
阅读次数:
151
[root@test ~]# cat /etc/sudoers## Sudoers allows particular users to run various commands as## the root user, without needing the root password.##该文件允 ...
分类:
系统相关 时间:
2019-03-15 18:56:34
阅读次数:
294
在模型中定义 如上所示,设置了默认的排序 及增加查询条件 然而 要注意的是,在查询中,当不需要scope的时侯,需要加上 比如删除时 需要加上调用静态方法 withoutGlobalScope ...
分类:
其他好文 时间:
2019-03-15 17:14:47
阅读次数:
194
class Solution(object): def divide(self, dividend, divisor): """ :type dividend: int :type divisor: int :rtype: int """ ispositive = True ... ...
分类:
其他好文 时间:
2019-03-14 17:58:34
阅读次数:
160
题目如下: Given a list of words (without duplicates), please write a program that returns all concatenated words in the given list of words. A concatenate ...
分类:
其他好文 时间:
2019-03-11 10:35:13
阅读次数:
211
Given a positive integer n, find the number of non-negative integers less than or equal to n, whose binary representations do NOT contain consecutive ...
分类:
其他好文 时间:
2019-03-09 23:16:42
阅读次数:
170
迭代器模式 Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation. 提供一种不公示其底层细节(结构)的情况下能顺序 ...
分类:
编程语言 时间:
2019-03-08 09:28:41
阅读次数:
186
很偶然的今天想开个自己的小项目,记录一下最近项目工程上实现的一个小交互。按照之前运行非常流畅的配置走一遍,打包遇到各种坑。只好根据命令行的报错逐个排查,发现babel升级了一个大版本,已经到7.x了。看来每日沉迷项目,已经跟不上节奏了。这里记录一下遇到的问题以及解决方案。 1.webpack 4.x ...
分类:
Web程序 时间:
2019-03-07 14:18:39
阅读次数:
471