dong706 最近的时间轴更新
dong706

dong706

V2EX 第 159242 号会员,加入于 2016-02-17 17:28:38 +08:00
今日活跃度排名 13223
有没有这样的配音导出工具
程序员  •  dong706  •  12 天前  •  最后回复来自 dong706
4
怎么获取 appstore 里某 app 的所有评论?
程序员  •  dong706  •  14 天前  •  最后回复来自 dong706
4
求推荐一个简洁的久坐提醒工具(win 环境)
  •  2   
    程序员  •  dong706  •  13 天前  •  最后回复来自 konakona
    96
    dong706 最近回复了
    @MoRanjiang 找到办法了,在备份和恢复菜单里可以选择之前备份的文件夹
    12 天前
    回复了 dong706 创建的主题 程序员 有没有这样的配音导出工具
    @AMZsowhat 每个月有 10w 个字的额度,应该够用了,感谢支招
    @dier 大佬太牛逼了,这个细节都注意到了,我一直在想我没配置 nodePort 来着
    ```
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    name: cssp-cloud-component
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
    name: redis-config
    namespace: cssp-cloud-component
    data:
    update-node.sh: |
    #!/bin/sh
    REDIS_NODES="/data/nodes.conf"
    sed -i -e "/myself/ s/[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}/${MY_POD_IP}/" ${REDIS_NODES}
    exec "[email protected]"
    redis.conf: |+
    port 7001
    protected-mode no
    cluster-enabled yes
    cluster-config-file nodes.conf
    cluster-node-timeout 15000
    #cluster-announce-ip ${MY_POD_IP}
    #cluster-announce-port 7001
    #cluster-announce-bus-port 17001
    logfile "/data/redis.log"
    ---
    ```

    ```
    ---
    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
    labels:
    app: redis-cluster
    name: redis-cluster
    namespace: default-component
    spec:
    replicas: 2
    selector:
    matchLabels:
    app: redis-cluster
    serviceName: redis-cluster
    template:
    metadata:
    labels:
    app: redis-cluster
    spec:
    containers:
    - command:
    ["/bin/bash", "/usr/local/etc/redis/update-node.sh", "redis-server", "/usr/local/etc/redis/redis.conf"]
    #args:
    # - /usr/local/etc/redis/redis.conf
    # - --cluster-announce-ip
    # - "$(MY_POD_IP)"
    env:
    - name: MY_POD_IP
    valueFrom:
    fieldRef:
    fieldPath: status.podIP
    - name: TZ
    value: Asia/Shanghai
    image: 'redis:6.0.10'
    imagePullPolicy: IfNotPresent
    name: redis
    ports:
    - containerPort: 7001
    hostPort: 7001
    name: redis-port
    protocol: TCP
    volumeMounts:
    - mountPath: /data
    name: redis-cluster-data
    subPath: data
    readOnly: false
    - mountPath: /usr/local/etc/redis
    name: redis-config
    readOnly: false
    dnsPolicy: ClusterFirst
    volumes:
    - name: redis-config
    configMap:
    name: redis-config
    volumeClaimTemplates:
    - metadata:
    name: redis-cluster-data
    namespace: default-component
    spec:
    storageClassName: "default-storage-class"
    accessModes: ["ReadWriteMany"]
    resources:
    requests:
    storage: 1Gi
    ---
    apiVersion: v1
    kind: Service
    metadata:
    labels:
    app: redis-cluster
    name: redis-cluster
    namespace: default-component
    spec:
    ports:
    - name: redis-port
    port: 7001
    protocol: TCP
    targetPort: 7001
    selector:
    app: redis-cluster
    type: ClusterIP
    clusterIP: None
    ```

    @dier 其实没有敏感信息,就是部署 redis 集群时碰到的莫名其妙的错误...上面就是全部的脚本
    14 天前
    回复了 dong706 创建的主题 程序员 怎么获取 appstore 里某 app 的所有评论?
    @qsnow6 好吧,孤陋寡闻了 哈哈哈
    14 天前
    回复了 dong706 创建的主题 程序员 怎么获取 appstore 里某 app 的所有评论?
    @qsnow6 我发现 7 麦数据就可以,嘿嘿
    https://www.appinn.com/wnr-work-and-rest/ 这个工具看起来也不错,就是有点大,功能挺多
    这个应该可以,才 700 多 K ,感觉还不错
    @conge 在下载了,但是为啥安装包有 115M 大?.... 在我看来这样的功能不应该超过 1M 大
    关于   ·   帮助文档   ·   博客   ·   nftychat   ·   API   ·   FAQ   ·   我们的愿景   ·   广告投放   ·   实用小工具   ·   4543 人在线   最高记录 5556   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 128ms · UTC 05:53 · PVG 13:53 · LAX 22:53 · JFK 01:53
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.