Skip to content

Instantly share code, notes, and snippets.

View Miura55's full-sized avatar
🎯
Focusing

Koki Miura Miura55

🎯
Focusing
View GitHub Profile
@frank9615
frank9615 / install_ros_kinetic_raspian_buster.sh
Last active March 15, 2022 15:40
Install ros kinetic on raspbian buster
#!/bin/bash
# Install ros kinetic on raspian buster
cd ~
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
tar xvzf boost_1_58_0.tar.gz
mkdir ~/build
cd boost_1_58_0/
sudo ./bootstrap.sh
sudo ./b2 install —prefix="../build"
@matsu7874
matsu7874 / knj.py
Created September 9, 2017 05:34
Project KNJ
import collections
import random
import bisect
BOL = '\\^'
EOL = '\\$'
def main():
word_word_cnt = collections.defaultdict(lambda: collections.defaultdict(int))
reversed_word_word_cnt = collections.defaultdict(lambda: collections.defaultdict(int))
@okdtsk
okdtsk / .chalice_config.json
Last active January 12, 2021 13:47
line-botsdk-python example for pycon
{
"version": "2.0",
"app_name": "./line-bot-for-pycon",
"stages": {
"dev": {
"api_gateway_stage": "dev",
"environment_variables": {
"LINEBOT_CHANNEL_ACCESS_TOKEN": "blahblahblah",
"LINEBOT_CHANNEL_SECRET": "blahblahblah"
}