- 1: Glitched out Isaac
- 2: White Tear
- 3: Default Familiar (Brother Bobby)
- 4: Live Bomb (Player)
- 6: Yellow Tear (Hovers in the air)
- 7: Rock Debris
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
| # This gist demonstrates a simple method to create a WebSockets proxy for a MQTT broker. | |
| # I use this method to provide a WebSockets interface for the Mosquitto MQTT broker. | |
| # This lets my browser based MQTT applications to access my MQTT broker. | |
| # I consider this approach simpler than the common alternative which is to run lighttpd | |
| # with the mod_websocket addon which can be complex to setup. | |
| # | |
| # Dependencies are Python, Twisted and Autobahn. | |
| # | |
| # This example sets up a WebSockets server listening on localhost:9000. Messages received from | |
| # WebSocket clients are forwarded to the MQTT broker using the endpointforward plugin provided |
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
| # Oona Räisänen 2013 | |
| # http://windytan.com | |
| # ssh-keygen -l -f ~/.ssh/id_rsa.pub | perl emoji.pl | |
| @emoji = qw( 🌀 🌂 🌅 🌈 🌙 🌞 🌟 🌠 🌰 🌱 🌲 🌳 🌴 🌵 🌷 🌸 | |
| 🌹 🌺 🌻 🌼 🌽 🌾 🌿 🍀 🍁 🍂 🍃 🍄 🍅 🍆 🍇 🍈 | |
| 🍉 🍊 🍋 🍌 🍍 🍎 🍏 🍐 🍑 🍒 🍓 🍔 🍕 🍖 🍗 🍘 | |
| 🍜 🍝 🍞 🍟 🍠 🍡 🍢 🍣 🍤 🍥 🍦 🍧 🍨 🍩 🍪 🍫 | |
| 🍬 🍭 🍮 🍯 🍰 🍱 🍲 🍳 🍴 🍵 🍶 🍷 🍸 🍹 🍺 🍻 |
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
| import requests | |
| import json | |
| from urlparse import urlparse | |
| sip_domain = "SIP_DOMAIN.COM" | |
| username = "USERNAME@SIP_DOMAIN.COM" | |
| password = "YOUR_LYNC_PASSWORD" | |
| def extractAuthURL(str): | |
| start = str.find('MsRtcOAuth'); |
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
| This playbook has been removed as it is now very outdated. |
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
| To remove a submodule you need to: | |
| Delete the relevant line from the .gitmodules file. | |
| Delete the relevant section from .git/config. | |
| Run git rm --cached path_to_submodule (no trailing slash). | |
| Commit and delete the now untracked submodule files. |
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
| /* | |
| A trivial Arduino sketch to mimic iRobot Virtual Wall for Roomba | |
| ---------------------------------------------------------------- | |
| Based on information found at: | |
| http://sites.google.com/site/irobotcreate2/createanirbeacon | |
| Uses "A Multi-Protocol Infrared Remote Library for the Arduino": | |
| http://www.arcfn.com/2009/08/multi-protocol-infrared-remote-library.html |
NewerOlder