===
Changelog and major TODO list
Server
- Refactored behavior of the
Channelprototype into a small core with several modules - Refactored
Userprototype to be compatible with newChannelprototype
| """ | |
| ------------------------------------------------------------------------------- | |
| * "THE BEER-WARE LICENSE" (Revision 42): | |
| * <[email protected]> wrote this file. As long as you retain this notice you | |
| * can do whatever you want with this stuff. If we meet some day, and you think | |
| * this stuff is worth it, you can buy me a drink in return | |
| * - Calvin Montgomery | |
| ------------------------------------------------------------------------------- | |
| """ |
| const BRICK_WIDTH = 15; | |
| const BRICK_HEIGHT = 4; | |
| var Brick = function(image) { | |
| this.width = BRICK_WIDTH; | |
| this.height = BRICK_HEIGHT; | |
| this.image = image; | |
| } | |
| Brick.prototype = { |
| /** | |
| * NOTE: BRIDGE DEVELOPMENT HAS MOVED TO https://github.com/berrytube/bt-irc-bridge. | |
| * THIS GIST IS NO LONGER BEING ACTIVELY MAINTAINED | |
| */ | |
| /** | |
| * ### cyzon's berrytube/irc bridge ### | |
| * | |
| * Installation | |
| * - Requires nodejs (http://nodejs.org). Available for Windows/OSX/Linux and source code. |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <title>YouTube controls autohide bug</title> | |
| <meta charset="utf-8"> | |
| </head> | |
| <body> | |
| <div id="ytapiplayer"></div> | |
| <script src="https://www.youtube.com/iframe_api"></script> | |
| <script src="player.js"></script> |
I hereby claim:
To claim this, I am signing this object:
| # coding=utf8 | |
| """ | |
| youtube.py - Willie YouTube v3 Module | |
| Copyright (c) 2015 Calvin Montgomery, All rights reserved. | |
| Redistribution and use in source and binary forms, with or without modification, | |
| are permitted provided that the following conditions are met: | |
| Redistributions of source code must retain the above copyright notice, this list |