测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
会员
andyguo (andyguo)
第 83 位会员 / 2012-12-27
香港科技大学 @ 香港
14 篇帖子 • 56 条回帖
28 关注者
21 正在关注
4 收藏
GitHub Public Repos
  • awesome-chatgpt-prompts 0

    This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better.

  • evalscope 0

  • fastchart 0

  • promptbench 0

    A unified evaluation framework for large language models

  • deepeval 0

    The LLM Evaluation Framework

  • Sensitive-lexicon 0

    敏感词库旨在建立一个词汇集,用于识别和过滤文本内容中的不当或不适宜的语言,以保护用户免受有害信息的影响并维持沟通环境的健康。

  • botgroup.chat 0

    AI机器人群聊

  • SCCD 0

    SCCD:基于会话的中文网络欺凌检测数据集

  • JailBench 0

    JailBench:大型语言模型越狱攻击风险评测中文数据集 [PAKDD 2025]

  • - 0

    CyberMetric dataset

More on GitHub
  • 個人信息
  • 個人專欄
  • 帖子
  • 回帖
  • 收藏
  • 正在關注
  • 關注者
  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月15日

    这个有点难,可以发来试试啊

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月15日

    #25 楼 @foxconn123 好的

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月15日

    #23 楼 @suifeng 没啊

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月15日

    继续招聘中,欢迎投简历啊

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月15日

    #18 楼 @forestwow 发我公司邮箱吧 163 邮箱没收到啊

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月15日

    今天应该会收到面试通知了

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月14日

    #16 楼 @zdx0122 主要我是在服务端做测试,呵呵,不过有简历也可以发过来啊,我帮你推荐其他部门的

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月11日

    #9 楼 @forestwow 没,主要是看能力

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月11日

    #8 楼 @arkin 不一定非要了解安全测试啊,其他的也行啊

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月11日

    #10 楼 @lingyan 发邮件就行

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月11日

    北京

  • [北京] 360 招聘测试&测试开发工程师 (15~30K) at 2016年03月10日

    #1 楼 @monkey 20~30K

  • [北京沙龙] TesterHome 北京沙龙第四期 at 2016年03月09日

    已经报名,支持思寒

  • “京东钱包” 体验报告 at 2016年02月04日

    给力啊! 太专业了

  • 搭建自己的 crash 监控系统 at 2016年02月03日

    我在 centos 上安装的为什么 Reports 栏有数据,而 bugs 栏没数据呢,有遇到的吗,一起学习一下~谢谢

  • Android 内存泄漏之 RD 是如何检测-LeakCanary at 2016年02月01日

    关于 上传文件到服务器的这块有研究吗? myServer.uploadLeakBlocking(heapDump.heapDumpFile, leakInfo);
    这个 myServer 是如何定义的,有了解的吗?谢谢了!

  • 搭建自己的 crash 监控系统 at 2016年01月25日

    #24 楼 @243885978 这两天好了

  • 搭建自己的 crash 监控系统 at 2016年01月19日

    #1 楼 @yuweixx http://get.acralyzer.com/distrib-acra-storage 为什么 500 错误,你那有吗

  • 一个测试工程师的 2015 总结和 2016 年 小展望。 at 2016年01月13日

    太受益了

  • shell 管理 monkey 压力测试 at 2015年11月11日

    #26 楼 @sandman 谢了我已经搞定了,发现你 uptime 好像没有用上啊?这是我改写的在 linux 下测试的脚本,但是发现个问题,就是测试的过程中会充电,这样测试就不准确了,还是你的比较靠谱:

    #!/bin/bash

    echo "loop,uptime,battery_capacity,cpu_temperature,battery_voltage,battery_status,battery_health,cpufreq,Date_Time" >log/btm.csv
    loop=0
    # 判定高通和 MTK 兼容获取电池温度不同
    if [ adb shell ls /sys/class/power_supply/battery/ |grep -w temp ];then
    temp="/sys/class/power_supply/battery/temp"
    elif [ adb shell ls /sys/class/power_supply/battery/ |grep -w batt_temp ];then
    temp="/sys/class/power_supply/battery/batt_temp"
    fi

    echo $temp

    while true;
    do
    tmp3="adb shell cat /proc/uptime | xargs echo" #uptime

    tmp4="adb shell cat /sys/class/power_supply/battery/capacity"

    tmp5="adb shell cat $temp | xargs echo"

    tmp="${tmp3%?}"" ""${tmp4%?}"" ""${tmp5%?}"

    # 判定高通和 MTK 兼容获取电池温度不同
    if [ adb shell ls /sys/class/power_supply/battery/ |grep -w voltage_now ];then
    voltage_now=adb shell cat /sys/class/power_supply/battery/voltage_now
    voltage=awk 'BEGIN{print $1,'$voltage_now'/'1000'}'
    elif [ adb shell ls /sys/class/power_supply/battery/ |grep -w batt_vol ];then
    voltage=adb shell cat /sys/class/power_supply/battery/batt_vol
    fi

    # 电池状态
    tmp6=adb shell cat /sys/class/power_supply/battery/status
    tmp7=adb shell cat /sys/class/power_supply/battery/health
    tmp2="${tmp6%?}"" ""${tmp7%?}"
    echo "tmp2:" $tmp2

    part1=echo $tmp $voltage $tmp2|awk '{a=sprintf("%.0f",$1);b=$3;c=$4/10;d=sprintf("%.3f",$5/1000);e=$6;f=$7}END{printf a","b","c","d","e","f}'

    echo "part1:"$part1
    #cpu 频率
    part2=adb shell cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq|awk '{if(NR>1)printf "|";printf $1/1000}'

    echo "part2:"$part2
    data_t=date +%Y/%m/%d" "%H:%M:%S
    echo $loop","$part1","$part2","$data_t>>log/btm.csv
    loop=$((loop+1))
    if [ $loop -gt 500 ];then
    break
    fi
    sleep 1m
    done

  • shell 管理 monkey 压力测试 at 2015年11月10日

    对了你那有电量统计的文件样本吗?

  • shell 管理 monkey 压力测试 at 2015年11月10日

    root@guozhenhua-Latitude-E5430-non-vPro:/home/guozhenhua# adb shell cat /sys/class/power_supply/battery/voltage_now
    4317478

    我这温度怎么这么高啊,是不是我取的有问题?

  • shell 管理 monkey 压力测试 at 2015年11月09日

    #16 楼 @sandman 非常感谢,最近正在研究这块,打算把你的脚本看看能不能移到 pc 端实时,因为很多手机 root 不了,有些手机 root 了也办法写文件

  • WEB 端批量移动设备管理控制工具 STF 的环境搭建和运行 at 2015年11月09日

    #35 楼 @lihuazhang 谢了,我那问题已经解决了,当初启动命令后面跟的 ip 写错了

  • shell 管理 monkey 压力测试 at 2015年11月05日

    这个必须在 root 的手机上使用吧?

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

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