ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>STL File Viewer</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r68/three.min.js" | |
| ></script> | |
| <script src="https://rawgit.com/mrdoob/three.js/master/examples/js/controls/TrackballControls.js" | |
| ></script> | |
| <script src="loader.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def ways(N, Memo): | |
| print 'N', N, Memo | |
| if N < 0: return 0 | |
| if N in Memo: | |
| return Memo[N] | |
| else: | |
| Memo[N] = N+1 | |
| if N == 1: | |
| Memo[N] += 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <tables> | |
| <row> | |
| <cols> | |
| <col name="Metric" href="http://google.com/">Disti Quoting</col> | |
| <col name="Error Count" href="http://naver.com.com/">95</col> | |
| <col name="_IW_COLOR">RED</col> | |
| <col name="_IW_ICON_BLINK">yes</col> | |
| </cols> | |
| </row> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding: utf-8 -*- | |
| """ | |
| The SocketServer module does not provide support for multicast. This module | |
| provides a subclass of SocketServer.UDPServer that can listen on multicast | |
| addresses. | |
| This only supports IPv4 | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding: utf-8 -*- | |
| # | |
| # windows 에서 multicast join 상태 보는법 | |
| # netsh interface ip show joins | |
| # linux 에서 multicast join 상태 보는법 | |
| # netstat -g | |
| import socket | |
| import struct |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding: utf-8 -*- | |
| import socket | |
| MCAST_GRP = '225.0.0.1' | |
| MCAST_GRP2 = '226.0.0.1' | |
| MCAST_GRP3 = '227.0.0.1' | |
| MCAST_PORT = 10000 | |
| sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP) |