Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Chunlea
@chunlea
高级会员
第 2653 位会员 / 2012-06-25

Chowbus
Vancouver, 🇨🇦
47 篇帖子 / 1141 条回帖
36 关注者
14 正在关注
29 收藏
GitHub Public Repos
  • jekyll-tailwindui 8

    A jekyll theme to easy integrating with tailwindui

  • computer-use-with-nanokvm 2

  • flutter-actions-go 1

  • next.js 0

    The React Framework

  • meetingsdk-headless-li... 0

    A demo on creating a headless meeting bot using the Zoom Meeting SDK for Linux and Docker

  • react-router-templates 0

  • setup-ruby 0

    An action to download a prebuilt Ruby and add it to the PATH in 5 seconds

  • vscode-markdown-mermaid 0

    Adds Mermaid diagram and flowchart support to VS Code's builtin markdown preview

  • vercel-ai-chatbot 0

    A full-featured, hackable Next.js AI chatbot built by Vercel

  • vscode 0

    Visual Studio Code

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • [上海][2021-07-20] Ruby 聚会召集 at 2021年07月15日

    羡慕,🇨🇦 远程 👍

  • GeekNote,一个专为 Geek 设计的博客服务 at 2021年07月15日

    什么时候支持 GitHub 登陆?

  • 程序员如何工作到 60 岁? at 2021年07月13日

    我是觉得我干不到六十岁,所以时刻准备着随时转行。

  • 有没有人可以帮个忙啊各位大佬 at 2021年03月14日

    没有备案,导致 caddy 没法访问验证你的域名,自然无法签发证书。

  • [上海] 北美的美团 - Chowbus 中国研发中心招聘 Ruby 后端工程师 (20-40k) at 2021年01月14日

    @lgn21st 感谢 🙏

  • Google Analytics 存在的问题 at 2021年01月14日

    https://plausible.io/ https://github.com/plausible/analytics/

    用了 Clickhouse

  • [上海] 北美的美团 - Chowbus 中国研发中心招聘 Ruby 后端工程师 (20-40k) at 2020年12月01日

    需要内推请找我 chunli.ju##chowbus.com

  • 我的黑苹果之路 at 2020年09月25日

    最近直接用 OSX-KVM 在 proxmox 上建了一个果黑当 CI 用

  • [广州][深圳] 友好速搭招聘 Ruby & Web 前端工程师 at 2020年05月16日

    信炮哥,得永生

  • 又过了两年半,赌博负债累累,回头走 IT 路 at 2020年01月18日

    简历,你懂的

  • 没人感觉 graphql.cn 的文档写的太垃圾么? at 2019年09月10日

    勇敢的点击这里 https://github.com/xitu/graphql.github.io/edit/zh-Hans/site/index.html.js

  • 记一次 Ruby 内存泄漏的排查和修复 at 2019年08月05日

    Instruments,随 XCode 一起提供的

  • [有奖调研] GitHub 周边免费送!你在用什么代码托管工具? at 2019年05月20日

    同样好奇到底提供啥服务,GitHub.cn ?

  • [绍兴柯桥 / 杭州萧山] 有数派 诚聘 Ruby 后端工程师 / 长期有效 ( 15K - 30K ) at 2019年04月08日

    支持一下!非常 cool 的技术栈

  • 记一次 Ruby 内存泄漏的排查和修复 at 2019年04月02日

    只是为了说明问题 😂 不严谨,改成 minute 了。

  • [成都 + 武汉] Tower 诚聘初级产品工程师 / 前端 + 后端 / 长期有效 at 2019年03月31日

    人肉支持一下

  • 记一次 Ruby 内存泄漏的排查和修复 at 2019年03月31日

    自我检讨,文风太差了。关键信息提取如下:

    Ruby 2.6.0 引入了一个新类:Enumerator::ArithmeticSequence 搞崩了 Rails 上的一个方法,但是这个问题已经在 https://github.com/rails/rails/pull/34899 给出了修复。

    虽然问题修复了,但是还是有性能问题。所以我们要这么用:(1..200).step(8.seconds) #=> (1..200).step(8.seconds.to_i)

    介绍了一个找内存泄漏的方法,参考: https://speakerdeck.com/watson/how-to-optimize-ruby-internal

  • RubyMotion 这个项目还在维护么?大佬求助 at 2019年03月30日

    不过我已经叛逃到 flutter 了

  • RubyMotion 这个项目还在维护么?大佬求助 at 2019年03月30日

    你是部署到 iOS 还是 Android?一般来说,RM 会在苹果发布了新版 SDK 之后一到两周提供支持,可能是还没来得及支持。

  • 请问大家的 CI/CD 方案 (测试 / 部署方案) 使用的是什么流程?Docker+Drone+Swarm? at 2019年02月10日

    贴一下我的 GitHub Actions workflow。

    workflow "Build Docker for master branch" {
      on = "push"
      resolves = [
        "Push Frontend Image to Tencent Cloud",
        "Push Backend Image to Tencent Cloud",
      ]
    }
    
    action "Filters for GitHub Actions" {
      uses = "actions/bin/filter@b2bea0749eed6beb495a8fa194c071847af60ea1"
      args = "branch master"
    }
    
    action "Docker Registry" {
      uses = "actions/docker/login@c08a5fc9e0286844156fefff2c141072048141f6"
      needs = ["Filters for GitHub Actions"]
      secrets = [
        "DOCKER_USERNAME",
        "DOCKER_PASSWORD",
      ]
      env = {
        DOCKER_REGISTRY_URL = "ccr.ccs.tencentyun.com"
      }
    }
    
    action "Build Frontend Image" {
      uses = "actions/docker/cli@c08a5fc9e0286844156fefff2c141072048141f6"
      needs = ["Docker Registry"]
      args = "build -t frontend frontend"
    }
    
    action "Build Backend Image" {
      uses = "actions/docker/cli@c08a5fc9e0286844156fefff2c141072048141f6"
      needs = ["Docker Registry"]
      args = "build -t backend backend"
    }
    
    action "Tag Frontend Image" {
      uses = "actions/docker/tag@c08a5fc9e0286844156fefff2c141072048141f6"
      args = "frontend ccr.ccs.tencentyun.com/xxx/xxx-frontend"
      needs = [
        "Build Frontend Image",
        "Build Backend Image",
      ]
    }
    
    action "Tag Backend Image" {
      uses = "actions/docker/tag@c08a5fc9e0286844156fefff2c141072048141f6"
      args = "backend ccr.ccs.tencentyun.com/xxx/xxx-backend"
      needs = ["Tag Frontend Image"]
    }
    
    action "Push Frontend Image to Tencent Cloud" {
      uses = "actions/docker/cli@c08a5fc9e0286844156fefff2c141072048141f6"
      args = "push ccr.ccs.tencentyun.com/xxx/xxx-frontend"
      needs = ["Tag Backend Image"]
    }
    
    action "Push Backend Image to Tencent Cloud" {
      uses = "actions/docker/cli@c08a5fc9e0286844156fefff2c141072048141f6"
      args = "push ccr.ccs.tencentyun.com/xxx/xxx-backend"
      needs = ["Tag Backend Image"]
    }
    

    可以参考我写的这篇文章:

    https://mp.weixin.qq.com/s?__biz=Mzg4MzAzMDE5Nw==&mid=2247483692&idx=1&sn=73b776c3c7f41838ad6fa0d35c36b7ca&chksm=cf4ce0f6f83b69e012439ee61a0145ed6a8e890443daed51236dc9e7c3ea4942606041b28a40&token=1885576722&lang=zh_CN#rd

  • 请问大家的 CI/CD 方案 (测试 / 部署方案) 使用的是什么流程?Docker+Drone+Swarm? at 2019年01月28日

    我现在用 GitHub Actions 来构建 docker 镜像😂

  • [技术交流] 基于 Elixir-GraphQL-React 的新一代社区系统设计雏形 at 2019年01月28日

    技术跟我现在在用的好像!Phoenix + Absinthe 后端,前端 Create React App 配合一下。

    👍

  • It's never too late to learn Postgres at 2018年11月28日

    期待《跟炮哥学 Postgres》!

  • Awesome Ruby China at 2018年11月15日

    @Vucius 参考:https://marketplace.visualstudio.com/items?itemName=rebornix.Ruby#user-content-debugger

  • 假如我出一个 Elixir Phoenix 的实践,会有人购买吗? at 2018年07月31日

    我发现 Elixir 最佳实践是 Elixir + Plug + Cowboy,Phoenix 是啥 😂 😂 😂

  • 有没有人用 Rails 做过封闭信息系统产品开发的呢?来谈谈经验? at 2018年07月02日

    单纯的 Web 管理界面?用 Rails 我怕路由器都启动不起来。这个时候你应该转投:https://ruby-china.org/topics/31921

  • Mac 构架 Ruby 环境,运行 Rails 时出错 at 2018年06月12日

    最新教程看这里,各种系统,各种版本都有。https://gorails.com/setup/osx/10.13-high-sierra

  • Travis CI 网站:从删库到跑路 at 2018年04月11日

    讲个跟 Rails 无关的事情,有一次我下载了 Swift 的网络库 https://github.com/Alamofire/Alamofire/issues/1512 跑了一下测试,它就把我的 Mac 搞炸了……

    还敢在生产环境上面跑测试,也是心大。似乎也证明了 Travis CI 的管理有多混乱……

  • Stripe 推出 Atlas,想要使用 Stripe 来作为支付渠道的可以尝试 at 2018年04月11日

    我并没有申请这个,可以发邮件问一下他们。

  • GitHub 个人账户如何删除 Billing 账号? at 2017年11月21日

    你应该需要先降级……再删除。 就在你这个页面的最下面。

  • 1
  • 2
  • 3
  • …
  • 34
  • 35
  • 下一页
关于 / RubyConf / Ruby 镜像 / RubyGems 镜像 / 活跃会员 / 组织 / API / 贡献者
由众多爱好者共同维护的 Ruby 中文社区,本站使用 Homeland 构建,并采用 Docker 部署。
服务器由 赞助 CDN 由 赞助
iOS 客户端 / Android 客户端 简体中文 / English