Skip to content

Instantly share code, notes, and snippets.

View vanx2's full-sized avatar

Shigeto Yatani (for work) vanx2

  • IDC Frontier
  • Japan
View GitHub Profile

Containerize Your Go Developer Environmentシリーズの翻訳

Containerize Your Go Developer Environment

part1

開発チームに参加すると、生産的になるにはある程度の時間がかかります。 これは通常、コードベースの学習と環境設定の組み合わせです。 多くの場合、あなたの環境を設定するためのある種のオンボーディングドキュメントがありますが、私の経験では、これは決して最新のものではなく、どのようなツールが必要なのか、常に誰かに助けを求めなければなりません。

mvn --version
Apache Maven 3.8.6
$ java --version
openjdk 11.0.16.1
@voluntas
voluntas / webrtc.rst
Last active January 13, 2025 22:40
WebRTC の未来
@tegansnyder
tegansnyder / disable mcafee endpoint protection.md
Last active October 29, 2024 13:49
Disable McAffee Endpoint Protection OSX

method 1

sudo /usr/local/McAfee/AntiMalware/VSControl stopoas

alternatively

sudo defaults write /Library/Preferences/com.mcafee.ssm.antimalware.plist OAS_Enable -bool False
sudo /usr/local/McAfee/AntiMalware/VSControl stop
sudo /usr/local/McAfee/AntiMalware/VSControl reload
@voluntas
voluntas / trello.rst
Last active August 20, 2020 14:55
Trello のススメ
@ympbyc
ympbyc / FunctionalJs.md
Last active November 2, 2024 00:52
Functional JavaScript

Functional JavaScript

2013 Minori Yamashita ympby@gmail.com

-- ここにあなたの名前を追記 --

目次

@hayajo
hayajo / changelog_en.md
Last active April 1, 2025 14:37
ChangeLog を支える英語

ChangeLog を支える英語

ChangeLog を書く際によく使われる英語をまとめました。

ほとんど引用です。

基本形

@santisaez
santisaez / gist:3187798
Created July 27, 2012 12:57
State of the Art: STUN + TURN servers on Linux (July 2012)

STUN implementations

  • stund
  • Content: server daemon and test client for STUN, RFC-3489 only
  • URL does not load, the project seems abandoned
  • The code is also available on SourceForge, last update was on January 2012
  • TCP and TLS modes not supported
  • The server needs two IPs, it’s mandatory and can not be configured
  • C++, no extra libraries required, Windows port available
  • Version = 0.97 (0.96 package available on Debian, 5 years without updates)
@ovaillancourt
ovaillancourt / index.html
Created May 29, 2012 23:15
Socket io + static file serving with connect
<!-- This should be served by your server -->
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>