Skip to content

Instantly share code, notes, and snippets.

View diskshima's full-sized avatar

Daisuke Shimamoto diskshima

View GitHub Profile
@diskshima
diskshima / Gemfile
Last active April 19, 2018 04:47
Mackerel CLI
source 'https://rubygems.org'
gem 'mackerel-client'
# A Ruby implementation to confirm when assignments happen.
# Inspired by https://ericlippert.com/2019/01/18/indexer-error-cases/
# Prints
# A
# B
# C
# catch
def a
@diskshima
diskshima / bitrise_workflow_downloader.py
Created May 25, 2025 13:52
Script to download Workflow files from Bitrise.
import os
import json
from optparse import OptionParser
import http.client
BITRISE_URL = 'api.bitrise.io'
BASE_PATH = '/v0.1'
class BitriseApp:
def __init__(self, slug, repo_slug):