大道至简

人生苦短,我用Python.

Centos7关闭防火墙与SeLinux

Centos7关闭防火墙与SeLinux

1、Centos7默认的管理防火墙规则的工具 Centos&默认使用的是firewalld来对防火墙规则进行管理。 2、iptables和firewalld区别 iptables是Linux上管理防火墙规则的工具,但是firewalld也是Linux上管理防火墙规则的工具。其实除了前面这两种工具还有一种工具叫做 netables。 这一切都从Netfilter开始,他是在Linux...

Centos配置静态IP

Centos配置静态IP地址

1、编辑 /etc/sysconfig/network-scripts/ifcfg-eth0 这里的eth0不是所有的系统都通用,可以通过 ip addr查看。 [root@centos-xidian ~]# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN link/loopb...

Centos7搭建confluence6.8.0破解版

confluence一款企业知识管理与协同软件

写在前面 confluence是一个专业的企业知识管理和协作软件,可用于构建企业wiki,实现团队成员之间的协作。 confluence提供付费的服务,但是我们这次以confluence6.8.0版本在Centos7机器上搭建。 1、环境准备 1.1 为Centos7换源 参考清华源的配置 1.2 Java坏境配置 这里我们使用的jdk版本为1.8,具体的java环境配置网上资源比较多...

LeetCode-ALg-844-BackspaceStringCompare

Algorithm-Easy

1、题目 Given two strings S and T, return if they are equal when both are typed into empty text editors. # means a backspace character. Example 1: Input: S = "ab#c", T = "ad#c" Output: true Explana...

LeetCode-ALg-349-IntersectionofTwoArrays

Algorithm-Easy

1、题目 Given two arrays, write a function to compute their intersection. Example 1: Input: nums1 = [1,2,2,1], nums2 = [2,2] Output: [2] Example 2: Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4] Ou...

LeetCode-ALg-344-ReverseString

Algorithm-Easy

1、题目 Write a function that takes a string as input and returns the string reversed. Example 1: Input: "hello" Output: "olleh" Example 2: Input: "A man, a plan, a canal: Panama" Output: "amana...

LeetCode-ALg-283-MoveZeroes

Algorithm-Easy

1、题目 Given an array nums, write a function to move all 0’s to the end of it while maintaining the relative order of the non-zero elements. 2、要求 (1) 不允许拷贝数组来执行此操作 (2) 最小化操作的次数 3、思路 根据题意可知,需要将数组中...

LeetCode-ALg-234-PalindromeLinkedList

Algorithm-Easy

1、题目 Given a singly linked list, determine if it is a palindrome. Example 1: Input: 1->2 Output: false Example 2: Input: 1->2->2->1 Output: true 2、要求 使用O(n)的时间复杂度和O(1)的空间复杂度解决此问...

Centos7上MongoDB主从仲裁节点配置

在Centos上MongoDB主从仲裁节点的配置

写在前面 熟悉项目需要部署相应的集群,这篇文章只是为了记录自己在搭建mongodb主从和仲裁节点的过程。 软件版本 Centos7三台,内网IP分别为: 192.168.109.129 --> mongo1 192.168.109.130 --> mongo2 192.168.109.131 --> mongo3 mongodb-2.6.12 版本过低 安...

Scrapy下载mp4视频文件

Scrapy使用FilesPipeline中间件下载mp4视频

目的 最近在使用 Scrapy 框架下载视频文件到本地存储,用到 Scrapy 的 Files Pipeline 。有关该 Pipeline 的具体文档 可见官方文档, 在这里主要是将在使用该中间件的一些配置记录下来。 配置 items.py文件 class YouItem(scrapy.Item): file_urls = scrapy.Field() files =...

< script src = " / js / bootstrap.min.js " >