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
| # 1.install gource using HomeBrew | |
| $ brew install gource | |
| # 2.install avconv | |
| git clone git://git.libav.org/libav.git | |
| cd libav | |
| # it will take 3-5 minutes to complie, be patient. | |
| ./configure --disable-yasm | |
| make && make install |
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
| var ChatAppDispatcher = require('../dispatcher/ChatAppDispatcher'); | |
| var ChatConstants = require('../constants/ChatConstants'); | |
| var ChatMessageUtils = require('../utils/ChatMessageUtils'); | |
| var EventEmitter = require('events').EventEmitter; | |
| var ThreadStore = require('../stores/ThreadStore'); | |
| var merge = require('react/lib/merge'); | |
| var ActionTypes = ChatConstants.ActionTypes; | |
| var CHANGE_EVENT = 'change'; |
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
| /** | |
| * See: http://www.css-101.org/articles/base-styles-sheet-for-webkit-based-browsers/styles-sheets-optimization.php | |
| * 30px is an arbitrary value used to create space on each side of block-level elements | |
| * .8em is an arbitrary value used to create space above and below most block-level elements (except headings which are styled with different values) | |
| */ | |
| /* setting line-height and family while leaving default font-size using *rem* */ | |
| html { | |
| font: 62.5%/1.3 sans-serif; |
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
| #include <linux/module.h> | |
| #include <linux/kernel.h> | |
| #include <linux/i2c.h> | |
| #include <linux/irq.h> | |
| #include <linux/input.h> | |
| #include <linux/interrupt.h> | |
| #include <linux/delay.h> | |
| #include <linux/earlysuspend.h> | |
| #include <mach/gpio.h> | |
| #include <mach/vreg.h> |