Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

阿里云ubuntu 14.04升级 ubuntu 16.04

06 8月06 8月 by helenadmin

备份好原软件源后,更改软件源文件,然后升级。 一、备份原软件源文件sourcelist cp /etc/apt […]

Continue reading
Posted in 服务器相关技术 · Tagged 阿里云ubuntu 14.04升级 ubuntu 16.04 · Leave a comment

“牛X” 的代码注释

17 7月 by helenadmin

写在前面的话:一时兴起就收集了以下神注释,希望能为广大 ITer 带来快乐,缓解你们工作中的压力,文中字符均可 […]

Continue reading
Posted in 随笔 · Tagged "牛X" 的代码注释, 代码注释段子 · Leave a comment

Maven 教程

13 7月 by helenadmin

Maven 翻译为”专家”、”内行”,是 Apache 下的一 […]

Continue reading
Posted in js&jquery · Tagged Maven, Maven 教程 · Leave a comment

Vue.js动态组件 & 异步组件

13 7月 by helenadmin

在动态组件上使用 keep-alive 我们之前曾经在一个多标签的界面中使用 is 特性来切换不同的组件: & […]

Continue reading
Posted in js&jquery · Tagged Vue.js · Leave a comment

不错的开源语音识别/语音文字转换系统

25 6月 by helenadmin

语音文字转换(speech-to-text)(STT)系统就像它名字所蕴含的意思那样,是一种将说出的单词转换为 […]

Continue reading
Posted in 算法 · Tagged 开源语音识别, 语音文字转换系统 · Leave a comment

python实现各种相似度算法

23 5月 by helenadmin

在数据挖掘中有很多地方要计算相似度,比如聚类分析和协同过滤。计算相似度的有许多方法,其中有欧几里德距离、曼哈顿 […]

Continue reading
Posted in Python · Tagged 相似度算法 · Leave a comment

GOlang面试题

13 5月 by helenadmin

Go是什么? 使用Go编程有什么好处? Go支持类型继承吗? Go支持运营商超载吗? Go支持方法重载吗? 不 […]

Continue reading
Posted in 新技术研习 · Tagged GOlang面试题 · Leave a comment

TensorFlow学习

18 4月 by helenadmin

一、tensorflow的常用函数: import tensorflow as tf import numpy […]

Continue reading
Posted in Python, 算法 · Tagged TensorFlow · Leave a comment

Python将文字转成语音并读出来

18 4月 by helenadmin

import pyTTS import time tts = pyTTS.Create() # set the […]

Continue reading
Posted in Python · Tagged Python将文字转成语音 · Leave a comment

python 视频处理,提取视频相关帧,读取Excel

18 4月 by helenadmin

import cv2.cv as cv   import os   import cv2   import n […]

Continue reading
Posted in Python · Tagged python 视频处理 · Leave a comment

Openresty 与 Tengine

30 3月 by helenadmin

Openresty和Tengine基于 Nginx 的两个衍生版本,某种意义上他们都和淘宝有关系,前者是前淘宝 […]

Continue reading
Posted in 服务器相关技术 · Tagged Openresty 与 Tengine · Leave a comment

Thrift 架构

30 3月 by helenadmin

Thrift是一个跨语言的服务部署框架,最初由Facebook于2007年开发,2008年进入Apache开源 […]

Continue reading
Posted in 服务器相关技术 · Tagged Thrift 架构, Thrift原理 · Leave a comment

Codis——分布式Redis服务的解决方案

30 3月 by helenadmin

Twemproxy 是一种Redis代理,但它不支持集群的动态伸缩,而codis则支持动态的增减Redis节点 […]

Continue reading
Posted in 缓存技术 · Tagged Codis, redis, 移除 Codis——分布式Redis服务的解决方案,Codis,redis Codis——分布式Redis服务的解决方案 · Leave a comment

python图像处理工具opencv

04 3月 by helenadmin

代码: 执行结果 源码: https://github.com/china-testing/python-ap […]

Continue reading
Posted in Python · Tagged python opencv, 图像处理工具 · Leave a comment

使用python排八字 计算八字

26 2月04 3月 by helenadmin

依赖库:sxtwl bidict #!/usr/bin/env python3 # -*- coding: u […]

Continue reading
Posted in Python · Tagged python八字算命 · Leave a comment

PyAudio 实现录音 自动化交互实现问答(python人工智能)

14 2月04 3月 by helenadmin

Python 很强大其原因就是因为它庞大的三方库 , 资源是非常的丰富 , 当然也不会缺少关于音频的库 关于音 […]

Continue reading
Posted in Python · Tagged PyAudio, python人工智能 · Leave a comment

Redis偶发连接失败案例分析

11 1月 by helenadmin

【问题描述】 生产环境有一个Redis会偶尔发生连接失败的报错,报错的时间点、客户端IP并没有特别明显的规律, […]

Continue reading
Posted in 缓存技术 · Tagged Redis偶发连接失败 · Leave a comment

python unitest webdriver 自动化测试并出报告文件,发送邮件

24 12月 by helenadmin

#引导index #!/usr/bin/python # -*- coding: utf-8 -*- ”’ […]

Continue reading
Posted in Python · Tagged python, unitest, webdriver · Leave a comment

Python+Selenium+Webdriver常用函数

18 12月 by helenadmin

常用方法函数 加载浏览器驱动: webdriver.Firefox() 打开页面:get() 关闭浏览器:qu […]

Continue reading
Posted in Python · Tagged python, Selenium, Webdriver常用函数 · Leave a comment

python上手项目

18 12月18 12月 by helenadmin

关于这50个练手项目:学习任何语言,最终都是通过实际动手操作来内化、巩固知识的;如果你已经看过不少书籍、视频, […]

Continue reading
Posted in Python · Tagged python上手项目 · Leave a comment

python学习系统性测试

18 12月 by helenadmin

1、为什么学习Python? 人生苦短?人间不值得?想想自己的初心吧! 2、通过什么途径学习的Python? […]

Continue reading
Posted in Python · Tagged python学习系统性测试 · Leave a comment

python unittest单元测试小实例

08 12月 by helenadmin

import unittest import time from lib.HTMLTestRunner imp […]

Continue reading
Posted in Python · Tagged python 单元测试, unittest · Leave a comment

PHP实现各种经典算法

09 11月 by helenadmin

<? //——————&#821 […]

Continue reading
Posted in 算法 · Tagged PHP实现各种经典算法, 二分, 冒泡, 顺序 · Leave a comment

PHP中字符串比较的常用方法

09 11月 by helenadmin

1、按字节比较 按字节比较字符串是最常用的方法。其中可能用到的函数为strcmp()和strcasecmp() […]

Continue reading
Posted in PHP · Tagged PHP中字符串比较的常用方法, 字符串比较 · Leave a comment

Python Selenium 进行 web 自动化测试

08 11月 by helenadmin

配置使用环境 下载相应的浏览器驱动, Firefox 是默认的 本文以 chrome 为主 ,放在script […]

Continue reading
Posted in Python · Tagged Python Selenium进行 web 自动化测试, Selenium, 自动化测试 · Leave a comment

PHP集群session共享

08 11月08 11月 by helenadmin

集群的概念没有多复杂,其实就是多台电脑为了同一个目标在一起工作。在Web应用中,就是多个服务器提供一个站点的服 […]

Continue reading
Posted in PHP · Tagged PHPsession, PHP集群session共享 · Leave a comment

php socket_accept函数

15 10月 by helenadmin

socket_accept (PHP 4 >= 4.1.0, PHP 5) socket_accept […]

Continue reading
Posted in PHP · Tagged socket_accept, socket_accept函数 · Leave a comment

聚石塔测试

15 10月 by helenadmin

1) 什么叫聚石塔 答:聚石塔是天猫推出的托管服务,类似于阿里云,不同的是聚石塔是专门为电商用户数据做托管,服 […]

Continue reading
Posted in 新技术研习 · Tagged 聚石塔, 聚石塔测试 · Leave a comment

Java初学之十个小程序实例

11 10月 by helenadmin

1.购买了一台彩电,价格是2856元,求:支付的纸币各多少张? public class Demo01 { p […]

Continue reading
Posted in js&jquery · Tagged java, 小程序实例 · Leave a comment

php递归无限级分类树

11 10月 by helenadmin

一.数据库设计 CREATE TABLE `bg_cate` ( `cate_Id` int(30) unsi […]

Continue reading
Posted in PHP · Tagged php递归, 无限级分类 · Leave a comment

文章导航

Previous 1 2 3 4 5 6 7 8 9 … 260 Next

近期文章

  • 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笔记 ·
程序猿 散文朗诵 鬼故事 佛学网