https://opensource.com/business/16/4/refactoring-open-source-business-models They say you never forget your first. In my case it was 2008 and Lucidwor ...
分类:
其他好文 时间:
2019-06-04 14:57:59
阅读次数:
91
Given a binary tree, return the preorder traversal of its nodes' values. Example: Follow up: Recursive solution is trivial, could you do it iterativel ...
分类:
其他好文 时间:
2019-06-02 18:07:04
阅读次数:
148
一.先安装setuptools 1.https://pypi.org/project/setuptools/#downloads 2.把下载的压缩包解压 3.cmd 命令进入解压的目录 4.执行 命令 python setup.py install 二.安装pip 1.https://pypi.py ...
分类:
编程语言 时间:
2019-06-02 14:12:14
阅读次数:
144
一、在列表之间移动元素 假设有一个列表,里面存放的是网站新注册但没有验证的用户,验证这些用户后,如何将它们移动到另一个已验证用户列表中呢? 其中一种方法是使用while循环,在验证用户的同时,将其从未验证的用户列表中移除,将之加入到已验证用户列表中,代码类似于这样: console: 解释:我们首先 ...
分类:
其他好文 时间:
2019-06-02 01:47:24
阅读次数:
274
Using Python to quickly build a local directory as a Http server - Quick way to open CMD command in any folder in Windows system: Method 1: Press shif ...
分类:
Web程序 时间:
2019-06-01 13:51:30
阅读次数:
127
Given a singly linked list, determine if it is a palindrome. Example 1: Example 2: Follow up:Could you do it in O(n) time and O(1) space? (1)定义快慢指针得到链 ...
分类:
其他好文 时间:
2019-05-31 19:59:07
阅读次数:
113
在线工具:https://toyaml.com/index.html idea 插件:https://plugins.jetbrains.com/plugin/8000-properties-to-yaml-converter ...
分类:
其他好文 时间:
2019-05-31 19:49:26
阅读次数:
291
虚拟局域网(VLAN)是一组逻辑上的设备和用户,这些设备和用户并不受物理位置的限制,可以根据功能、部门及应用等因素将它们组织起来,相互之间的通信就好像它们在同一个网段中一样,由此得名虚拟局域网。VLAN是一种比较新的技术,工作在OSI参考模型的第2层和第3层,一个VLAN就是一个广播域,VLAN之间的通信是通过第3层的路由器来完成的。与传统的局域网技术相比较,VLAN技术更加灵活,它具有以下优点: 网络设备的移动、添加和修改的管理开销减少;可以控制广播活动;可提高网络的安全性。
VLAN的ensp配置
分类:
其他好文 时间:
2019-05-31 18:01:46
阅读次数:
110
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example: 题意 给定一个01矩阵,找出其中全由1构成的最 ...
分类:
其他好文 时间:
2019-05-31 16:33:58
阅读次数:
91
项目中有用到 Infinite scroll 无限滚动组件 发现一个神奇的问题, loadMore 一直无限触发,黑人问号 ??? 几经百度,谷歌,终于解决l, 此文仅做记录 话不多说,直接看问题 官方地址:http://mint-ui.github.io/#!/zh-cn import HTML: ...
分类:
其他好文 时间:
2019-05-31 13:11:05
阅读次数:
1386