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
| my $gistfile = 'gistfile'; | |
| open(FILE, ">> $gistfile") || die "problem opening $gistfile\n"; | |
| print FILE $item{text}; | |
| close(FILE); |
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
| # vim:ft=config | |
| servers = ( | |
| { | |
| address = "irc.freenode.net"; | |
| chatnet = "freenode"; | |
| port = "6697"; | |
| use_ssl = "yes"; | |
| ssl_verify = "yes"; | |
| ssl_capath = "/etc/ssl/certs/"; |
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
| sdfsdfsd | |
| fsdf | |
| sd | |
| f | |
| sd | |
| fs | |
| df | |
| sd | |
| fs | |
| df |
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
| js/bundle.* | |
| *.log | |
| node_modules | |
| .DS_Store | |
| .tmp | |
| dist | |
| deploy/node_modules |
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
| js/bundle.* | |
| *.log | |
| node_modules | |
| .DS_Store | |
| .tmp | |
| dist | |
| deploy/node_modules |
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
| <script src="https://gist.github.com/c91f042df215af310dc7.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
| js/bundle.* | |
| *.log | |
| node_modules | |
| .DS_Store | |
| .tmp | |
| dist | |
| deploy/node_modules |
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
| js/bundle.* | |
| *.log | |
| node_modules | |
| .DS_Store | |
| .tmp | |
| dist | |
| deploy/node_modules |
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 React = require('react'); | |
| var Bootstrap =require('react-bootstrap'); | |
| var Navbar = Bootstrap.Navbar; | |
| var Nav = Bootstrap.Nav; | |
| var NavItem = Bootstrap.NavItem; | |
| var PageHeader = Bootstrap.PageHeader; | |
| var Header = React.createClass({ |
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
| Promise = require 'bluebird' | |
| module.exports = | |
| class Dog | |
| _size: null | |
| _remains: null | |
| constructor: (size) -> | |
| _size = size | |
| Promise.promisify(@) |