怎么使用pipenv管理你的python项目 原文链接:https://robots.thoughtbot.com/how-to-manage-your-python-projects-with-pipenv 在thoughtbot,我们用Ruby和Rails工作,但通常我们总是尝试使用最合适的语言 ...
分类:
编程语言 时间:
2019-08-20 10:33:11
阅读次数:
104
1.使用 vagrant 部署 三台 centos/7 的 环境 ###Vagrantfile # -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.require_version ">= 1.6.0" boxes = [ { :name=>"docker ...
分类:
其他好文 时间:
2019-08-19 18:59:02
阅读次数:
84
l = ["a","b","c","d","e","f",'g'] puts l.values_at(2,3,4,6) # 获取index为2、3、4、6的元素 # # l1 = ["a","b","c","d","e","f",'g'] l2 = ["a","b","c&qu ...
分类:
编程语言 时间:
2019-08-19 17:14:24
阅读次数:
84
简单验证 接收信息以证明 1) 接收单行文件信息(主机名) 2) 接收多行文件信息 ...
分类:
其他好文 时间:
2019-08-19 17:10:48
阅读次数:
135
Vagrant 简介Vagrant 是一个用来构建和管理虚拟机环境的工具。Vagrant 有着易于使用的工作流,并且专注于自动化,降低了开发者搭建环境的时间,提高了生产力。解决了“在我的机器上可以工作”的问题。Vagrant 是为了方便的实现虚拟化环境而设计的,使用 Ruby 开发,基于 Virtu ...
分类:
其他好文 时间:
2019-08-19 12:40:08
阅读次数:
83
require 'yaml' require 'find' require 'fileutils' SOURCE_DIR = "/media/zn/工作1/开发/网站主题数据/themes/" TARGET_DIR = "/media/zn/商品1/themes/" site_themes = YA... ...
分类:
其他好文 时间:
2019-08-18 21:53:30
阅读次数:
137
# coding utf-8 require 'find' require 'fileutils' SourceFile1 = "点开有礼.jpg" TargetDir = "/media/zn/工作1/开发/网站主题数据/themes" Find.find(TargetDir) do |dir| ... ...
分类:
其他好文 时间:
2019-08-18 17:16:06
阅读次数:
89
ctn.sub('答案:', '').gsub(/解析.*/,'') ...
分类:
其他好文 时间:
2019-08-18 13:41:52
阅读次数:
120
require 'restclient' require 'open-uri' require 'open_uri_redirections' require 'nokogiri' require 'json' require 'yaml' require 'fileutils' require '... ...
分类:
其他好文 时间:
2019-08-18 13:29:57
阅读次数:
88
require 'fileutils' ROOT_DIR = '/home/zn/work/small-tools-master/price/' FileUtils.makedirs(ROOT_DIR) unless File.exists?ROOT_DIR ...
分类:
其他好文 时间:
2019-08-18 11:32:17
阅读次数:
86