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
| <scheme name="Eclectide Monokai" version="124" parent_scheme="Default"> | |
| <option name="LINE_SPACING" value="1.0" /> | |
| <option name="EDITOR_FONT_SIZE" value="12" /> | |
| <option name="EDITOR_FONT_NAME" value="Consolas" /> | |
| <colors> | |
| <option name="ADDED_LINES_COLOR" value="295622" /> | |
| <option name="CARET_COLOR" value="bbbbbb" /> | |
| <option name="CARET_ROW_COLOR" value="" /> | |
| <option name="CONSOLE_BACKGROUND_KEY" value="272822" /> | |
| <option name="FILESTATUS_ADDED" value="629755" /> |
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
| /** @jsx React.DOM */ | |
| var BootstrapModalMixin = function() { | |
| var handlerProps = | |
| ['handleShow', 'handleShown', 'handleHide', 'handleHidden'] | |
| var bsModalEvents = { | |
| handleShow: 'show.bs.modal' | |
| , handleShown: 'shown.bs.modal' | |
| , handleHide: 'hide.bs.modal' |
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
| <?php | |
| /** | |
| * A more general PHP two-phase commit implementation. | |
| * | |
| * This assumes that we run on 5.3 or later. | |
| */ | |
| class TransactionException extends Exception {} | |
| /** |
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
| <?php | |
| /** | |
| * Simple two-phase commit for PHP couchbase. | |
| * | |
| * Michael Nitschinger (@daschl, 2012) | |
| * | |
| * Additional Remarks | |
| * ------------------ | |
| * - The Couchbase extension makes it currently pretty hard to write easy readable code when dealing with | |
| * CAS (compared to the ruby adapter). This could certainly be improved with closures. I also found that |
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
| xml2_sax_sample: xml2_sax_sample.c | |
| gcc -o xml2_sax_sample `xml2-config --cflags --libs` xml2_sax_sample.c | |
| clean: | |
| rm xml2_sax_sample |
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
| <?php | |
| echo "hello world!"; | |
| ?> |