Skip to content

Instantly share code, notes, and snippets.

View youtalk's full-sized avatar

Yutaka Kondo youtalk

View GitHub Profile
@voluntas
voluntas / shiguredo_model.rst
Last active December 26, 2023 21:46
時雨堂を支えるビジネスモデル

時雨堂を支えるビジネスモデル

更新:2023-12-08
作者:@voluntas
バージョン:2023.2
URL:https://voluntas.github.io/

タイポなどは Twitter の @voluntas までお願いします。

@colspan
colspan / Dockerfile
Last active March 7, 2021 13:53
Dockerfile for ROCm based Cupy and Chainer
FROM rocm/rocm-terminal
LABEL maintainer "Kunihiko Miyoshi <miyoshik@preferred.jp>"
LABEL OBJECT="ROCm based CUPY Environment"
## MEMO rocm-dkms package must be installed on host
RUN sudo apt-get update && sudo apt-get install -y \
wget software-properties-common \
hipblas hipsparse rocrand
#!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2018, Tokyo Opensource Robotics Developers
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
@aibax
aibax / SlackInvitation.gs
Last active May 9, 2021 14:22
Google Form を使用した Slack の自動招待フォーム用 Google Apps Script
/*
* [SETUP]
* 1. Slack のAPIトークンを発行する
* 2. Google Form でフォームを作成する
* - 必要な項目はメールアドレスのみ
* - Google Form で指定したメールアドレスの項目名を FORM_ITEM_TITLE に設定する
* 3. スクリプトエディタでこのスクリプトを登録
* - SLACK_API_TOKEN にAPIトークンを指定
* - SLACK_API_ENDPOINT にチーム名を指定
* 4. フォームの送信時のトリガーに onFormSubmit を指定(要認証)
@ruffsl
ruffsl / Dockerfile
Last active February 28, 2024 23:49
Small ROS Network Example
FROM ros:indigo-ros-base
# install ros tutorials packages
RUN apt-get update && apt-get install -y \
ros-indigo-ros-tutorials \
ros-indigo-common-tutorials \
&& rm -rf /var/lib/apt/lists/