Skip to content

Instantly share code, notes, and snippets.

View yuta-imai's full-sized avatar

Yuta Imai yuta-imai

View GitHub Profile
@yuta-imai
yuta-imai / WioLTE-J_EC21-J_AT_debug.ino
Created January 29, 2021 08:07 — forked from ma2shita/WioLTE-J_EC21-J_AT_debug.ino
AT debug console for EC21-J on WioLTE
/*
Working exapmle on Console;
```
>> Waiting for AT command
+CPIN: READY
+QUSIM: 1
@yuta-imai
yuta-imai / config-git-proxy.txt
Created April 29, 2019 13:49 — forked from bynil/config-git-proxy.txt
Use git over socks5 proxy
Port: 1080
1. Create a file /YOUR PATH/gitproxy.sh with content:
#!/bin/sh
nc -X 5 -x 127.0.0.1:1080 "$@"
2. Edit your ~/.gitconfig
# For git://
@yuta-imai
yuta-imai / gist:dba47d581d8637d2b45cc6400f4fa325
Created November 9, 2016 23:23 — forked from sebsto/gist:19b99f1fa1f32cae5d00
Install Maven with Yum on Amazon Linux
sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo
sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo
sudo yum install -y apache-maven
mvn --version