测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
版主
Lihuazhang (恒温)
第 110 位会员 / 2013-10-21
阿里巴巴 @ 上海
405 篇帖子 • 7861 条回帖
2538 关注者
33 正在关注
33 收藏
人生很多事情你也已经经历了。从我们35岁开始,到60岁、70岁,也就是经历一些生老病死的日常事情。加油!
打赏支持
GitHub Public Repos
  • ai-agents-with-llama3 12

  • lihuazhang.github.com 9

    my blog

  • juit5-json-params 7

    juit5-json-params

  • MediaCrawler 1

    小红书笔记 | 评论爬虫、抖音视频 | 评论爬虫、快手视频 | 评论爬虫、B 站视频 | 评论爬虫、微博帖子 | 评论爬虫

  • javascript-algorithms 1

    Algorithms and data structures implemented in JavaScript with explanations and links to further r...

  • ahchoo 1

    test for cloudfoundry

  • AutoClick 1

    基于Robotium的自动遍历方案

  • UI-Testing-Cheat-Sheet 1

    How do I test this with UI Testing?

  • revolt-fx 0

  • letsmove 0

More on GitHub
  • 個人信息
  • 個人專欄
  • 帖子
  • 回帖
  • 收藏
  • 正在關注
  • 關注者
  • 软件测试怎么能提高研发的提测质量? at 2021年09月02日

    感觉小道消息可以侃一期这个话题~

  • python 多进程,共享字典在子进程无法调用吗? at 2021年09月01日
    import os
    import random
    import time
    from multiprocessing import Process, Queue, Manager
    
    
    def consumer(queue, shared_dict: dict):
        while True:
            res = queue.get()
            time.sleep(random.randint(1, 3))
            print(shared_dict.keys())
            print('\033[43m%s 吃 %s\033[0m' % (os.getpid(), res))
    
    
    def producer(queue, shared_dict):
        for i in range(10):
            time.sleep(random.randint(1, 3))
            res = '包子%s' % i
            shared_dict[i] = i
            queue.put(res)
            print('\033[44m%s 生产了 %s\033[0m' % (os.getpid(), res))
    
    
    if __name__ == '__main__':
    
        with Manager() as manager:
            share = manager.dict()
            q = Queue()
            print(share)
            # 生产者们:即厨师们
            p1 = Process(target=producer, args=(q, share))
    
            # 消费者们:即吃货们
            c1 = Process(target=consumer, args=(q, share))
    
            # 开始
            p1.start()
            c1.start()
            p1.join()
            c1.join()
            print('主')
    
    

    try this!

  • 基于 Kubernetes 实现高可用的动态 Jenkins Slave at 2021年09月01日

    搞个 github,放下 demo 呗~

  • Docker-OSX 来啦, CI/CD 不用再买 mac mini 了吧~ at 2021年08月31日

    可以做很多事情啊,想象力丰富一点。

  • 支付宝 - 蚂蚁森林 - 保护地巡护 - 乱码 at 2021年08月31日

    修复的好快。

  • 资深沪漂,IT 十年(一) at 2021年08月30日

    还有谁要漂?

  • 小团队质量管理破局之路 (一篇来自 2019 年的笔记) at 2021年08月29日

    大部分稳定模块的回归测试工作量通过自动化替代

    这一块,怎么让它不会腐烂呢?可能一直跑,都是通过的,但是线上还是会出问题。

  • 中国移动测试编年史(2016) at 2021年08月29日

    2016 年的还在整理,大家有没有 2016 年相关的印象深刻的移动测试技术?

  • 小团队质量管理破局之路 (一篇来自 2019 年的笔记) at 2021年08月29日

    引入自动化,确定可以释放工作量么?

  • cucumber 踩坑 at 2021年08月29日

    公司有内部框架,cucumber 也挺好的。

    高端的食材,只需要最朴素的烹饪方式。

  • cucumber 踩坑 at 2021年08月27日

    cucumber 现在还有在用哦?外企么?

  • Perfdog 要收费了,请问,有没有好一点的性能测试工具推荐 at 2021年08月27日

    perfdog 有社区版的吧?

  • 中国移动测试编年史(2016) at 2021年08月25日

    元宇宙吧

  • 有人用 JMeter 做过 ThingsBoard 开源框架的性能测试吗? at 2021年08月25日

    我看比较普遍的解法是买个 10 几台阿里云机器。。

  • 有人用 JMeter 做过 ThingsBoard 开源框架的性能测试吗? at 2021年08月25日

    jmeter 也有 mqtt 的插件,可以在社区搜索下。

  • 杭漂十年,聊聊这十年的职业生涯 (一) at 2021年08月25日

    波澜壮阔

  • 杭漂十年,聊聊这十年的职业生涯 (一) at 2021年08月24日

    包皮公司

    ...

  • jenkins 进行 infer 静态扫描,给工作群发送报告通知 at 2021年08月24日

    现在 infer 用的多么。。。

  • 中国移动测试编年史(2016) at 2021年08月23日

  • 北漂,十年 (一) at 2021年08月23日

    艾辉老师的团队都是美女,战斗力非常强大。

  • 中国移动测试编年史(2016) at 2021年08月23日

    我还记得当时你也很活跃

  • 中国移动测试编年史(2016) at 2021年08月23日

    投入是值得的~

  • 北漂,十年 (一) at 2021年08月23日

    岁月留下的痕迹~

  • 中国移动测试编年史(2016) at 2021年08月23日

    和 TesterHome 一起成长的这一批人,算是完整的见证了移动互联网的兴起和衰弱了。

  • 【经典电梯测试用例】- 持续更新,群策群力。 at 2021年08月17日

    想起当初可以赚钱的广告墙

  • 上一页
  • 1
  • 2
  • 3
  • …
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • …
  • 270
  • 271
  • 272
  • 下一页
  • 关于 / 活跃用户 / 中国移动互联网测试技术大会 / 反馈 / Github / API / 帮助推广
    TesterHome社区,测试之家,由众多测试工程师组织和维护的技术社区,致力于帮助新人成长,提高测试地位,推进质量发展。Inspired by RubyChina
    友情链接 WeTest腾讯质量开放平台 / InfoQ / 掘金 / SegmentFault / 测试窝 / 百度测试吧 / IT大咖说
    简体中文 / 正體中文 / English

    ©testerhome.com 测试之家   渝ICP备2022001292号
      渝公网安备 50022202000435号    版权所有 © 重庆年云聚力信息技术有限公司