娃哈哈好喝-真的!
技术够用就行,吃好喝好睡好!

脚本编程 第3页

Python

  • 1
  • centos下修改django默认端口及ip

    wahaha
    阅读(225)赞(0)

    环境介绍:centos7.6,python3.7,django2.1.2 只需要修改项目目录下的manage.py文件:加入如下代码 from django.core.management.commands.runserver import...

    Git

  • 2
  • 解决git上传大文件失败

    wahaha
    阅读(196)赞(0)

    会提示remote: error: GH001: Large files detected. You may want to try Git Large File Storage 在push时会出现类似这样的信息,github最大支持单个文...

    Svn

  • 4
  • linux svn服务器

    wahaha
    阅读(298)赞(0)

    linux svn服务器 1、安装 [root@rockettest-170 test]# yum -y install subversion 2、创建版本库目录 [root@rockettest-170 test]# mkdir /dat...

    PHP

  • 5
  • wordpress获取指定栏目文章

    wahaha
    阅读(513)赞(0)

    <?phpquery_posts('showposts=10&cat=8'); //获取分类列表,get_template_part( 'excerpt' );?> 参数说明: showposts代表获取的数量 cat代...

    Git

  • 6
  • git忽略更新指定文件

    wahaha
    阅读(213)赞(0)

    方法一: 通过修改.gitignore文件实现 1、打开项目所在根目录: $ ls -a./ ../ .git/ .gitignore .idea/ test.py venv/ 修改 .gitignore文件,如果没有可以手动创建一个,wi...

    echo输出彩色文字-娃哈哈好喝
    Shell

  • 7
  • echo输出彩色文字

    wahaha
    阅读(232)赞(0)

    echo -e输出彩色文字方式 字体颜色范围:31-39 #默认是0,可以不写31m 品红32m 绿色33m 金色34m 天蓝35m 黄色36m 土黄37m 紫色38m 黑色39m 白色#更深一点的颜色91m 品红92m 绿色93m 金色9...

    PHP

  • 10
  • php遍历数组的方法

    wahaha
    阅读(216)赞(0)

    php遍历数组有4种方式 一、for循环 conut($arr);用于统计数组元素的个数。 for循环只能用于遍历,纯索引数组!!!! 如果存在关联数组,count统计时会统计两种数组的总个数,使用for循环遍历混合数组,导致数组越界!! ...