Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

月份:2016年2月

用python解决ipad在ubuntu上无法充电的问题

19 2月01 1月 by test16604225

今天发现ipad在ubuntu上会一直显示not charging,搜了一下,发现有人写了一个ipad_cha […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu12.04下用eclipse搭建python集成开发环境

18 2月01 1月 by test16604225

开始学习期待已久的python,由于以前写代码都是vim+gcc(主要是写c代码),所以想尝试一下用集成开发环 […]

Continue reading
Posted in 未分类 · Leave a comment

安装mod

17 2月01 1月 by test16604225

安装过程如下: #tar -zxvf httpd-2.0.54.tar.gz #cd httpd-2.0.54 […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu14.04下安装使用pythonrq模块

17 2月01 1月 by test16604225

rq 是python的一个第三方模块,使用rq可以方便快速的实现python的队列操作,实现多态电脑的分布式架 […]

Continue reading
Posted in 未分类 · Leave a comment

跪求apache+python+mod

16 2月01 1月 by test16604225

急需 apache+python+mod_python的安装配置讲解

Continue reading
Posted in 未分类 · Leave a comment

在archlinux系统中安装scim

16 2月01 1月 by test16604225

下面是我在 archlinux 中安装 scim-python 输入法的过程, 希望能够和大家分享一下。选择安 […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu14.04下opencv3.0+python2.7安装测试

15 2月01 1月 by test16604225

本文记录了ubuntu 14.04下使用源码手动安装opencv 3.0的过程。此外记录了在python中安装 […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu安装mysql

14 2月01 1月 by test16604225

1.首先你要确定ubuntu更新源能用,本文测试的ubuntu 14.04的源,低版本的ubuntu没试过。毕 […]

Continue reading
Posted in 未分类 · Leave a comment

ubuntu下实现用python开机自动更新壁纸为bing壁纸

13 2月01 1月 by test16604225

因为用的windows phone的手机,里面有一个手机锁屏每天自动更新为bing的壁纸,用着挺好的,遂想在u […]

Continue reading
Posted in 未分类 · Leave a comment

python注释和脚本参数介绍

10 2月01 1月 by test16604225

这篇文章介绍python注释和脚本参数介绍 单行注释: # 多行注释:””&#8221 […]

Continue reading
Posted in 未分类 · Leave a comment

python的print换行方法

10 2月01 1月 by test16604225

这篇文章介绍python的print换行方法 输出 9*9 乘法口诀表。 for i in range(1, […]

Continue reading
Posted in 未分类 · Leave a comment

详解python中函数传值与传引用

10 2月01 1月 by test16604225

python中函数整数,字符串,元组都是传值,函数中不会改变其值,其他的会在函数中改变其值 例如传列表: #- […]

Continue reading
Posted in 未分类 · Leave a comment

详解python3

10 2月01 1月 by test16604225

这篇文章详解python3-zabbixapi的使用 python3 使用zabbix api的一些案例。。具 […]

Continue reading
Posted in 未分类 · Leave a comment

python之字典列表的转换及for循环的方法

10 2月01 1月 by test16604225

寻找差异 # 原有dict old_dict = { “#1”:{ ‘ho […]

Continue reading
Posted in 未分类 · Leave a comment

python使用for循环对列表内元素进行排序方法

10 2月01 1月 by test16604225

这篇文章介绍python使用for循环对列表内元素进行排序方法 list = [13, 22, 6, 99, […]

Continue reading
Posted in 未分类 · Leave a comment

python批量生产10万接入用户代码分享

10 2月01 1月 by test16604225

这篇文章介绍python批量生产10万接入用户代码分享 #-*- conding:utf-8 -*- #ver […]

Continue reading
Posted in 未分类 · Leave a comment

pythonapi使用总结代码

10 2月01 1月 by test16604225

这篇文章介绍python api使用总结代码 datetime datetime.date.today().s […]

Continue reading
Posted in 未分类 · Leave a comment

使用python读取文件小程序

10 2月01 1月 by test16604225

这篇文章介绍使用python读取文件小程序 os sys re xlwt filelist = [] file […]

Continue reading
Posted in 未分类 · Leave a comment

python输入和文件操作方法

10 2月01 1月 by test16604225

这篇文章介绍python输入和文件操作方法 1、python 输入 python3提供了一个input(),可 […]

Continue reading
Posted in 未分类 · Leave a comment

python三元运算和python函数介绍

10 2月01 1月 by test16604225

三元运算: if 1+1 == 2 : print (true) else: print (false) #等 […]

Continue reading
Posted in 未分类 · Leave a comment

使用python编写一个登录接口的方法

10 2月01 1月 by test16604225

这篇文章使用python编写一个登录接口的方法 需求: 编写登录接口 输入用户名密码 认证成功后 显示欢迎信息 […]

Continue reading
Posted in 未分类 · Leave a comment

zabbix邮件告警python脚本代码

10 2月01 1月 by test16604225

这篇文章介绍zabbix邮件告警python脚本代码 #!/usr/bin/python # -*- codi […]

Continue reading
Posted in 未分类 · Leave a comment

使用python自动获取cisco配置信息

10 2月01 1月 by test16604225

这篇文章介绍使用python自动获取cisco配置信息 from netmiko import connect […]

Continue reading
Posted in 未分类 · Leave a comment

详解python如何在前端显示后端的信息

10 2月01 1月 by test16604225

这篇文章详解python如何在前端显示后端的信息 首先在test.html中需要添加如下: 下面是后端返回的内 […]

Continue reading
Posted in 未分类 · Leave a comment

python搭建http服务器和ftp服务器

10 2月01 1月 by test16604225

这篇文章主要为大家详细介绍了python搭建http服务器和ftp服务器的相关资料,具有一定的参考价值,感兴趣 […]

Continue reading
Posted in 未分类 · Leave a comment

python之beautifulsoup库安装及其简介

10 2月01 1月 by test16604225

一. 前言 在前面的几篇文章中我介绍了如何通过python分析源代码来爬取博客、维基百科infobox和图片, […]

Continue reading
Posted in 未分类 · Leave a comment

python中函数map()和reduce()的用法

10 2月01 1月 by test16604225

这篇文章主要介绍了python中的map()函数和reduce()函数的用法,代码基于python2.x版本, […]

Continue reading
Posted in 未分类 · Leave a comment

实例分析python中lambda与def用法区别

10 2月01 1月 by test16604225

这篇文章主要介绍了python中lambda与def用法对比,实例分析了lambda与def的区别与使用技巧, […]

Continue reading
Posted in 未分类 · Leave a comment

如何用python实现八大排序算法

10 2月01 1月 by test16604225

这篇文章主要介绍了八大排序算法的python实现,对八大排序算法进行详细描述和代码实现,感兴趣的小伙伴们可以参 […]

Continue reading
Posted in 未分类 · Leave a comment

在python中如何对list中的整数求平均并排序

10 2月01 1月 by test16604225

本文主要记述了使用python将list重点整数求平均值之后在进行排列的过程,并把代码分享给大家,希望大家能给 […]

Continue reading
Posted in 未分类 · Leave a comment

文章导航

先前文章

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

  • Database
  • focus—-实时热搜
  • IC设计
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2025 charlie笔记 ·