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
| function isItScrollableWithoutVisibleScrollbars(e) {return e&&(e.scrollHeight>e.offsetHeight)&&!(e.offsetWidth>e.scrollWidth);} |
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
| <!-- do you like this --> | |
| <body> | |
| <div id="foobar"> | |
| <header></header> | |
| <div class="torso"> | |
| ... | |
| </div> | |
| <footer></footer> | |
| </div> |
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
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| @mixin for-tablets-and-up { | |
| @media only screen and (min-width: 600px) { | |
| @content; | |
| } |
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
| <div></div> |
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
| <p> | |
| Lorem Ipsum. | |
| </p> |
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
| hamburgers.txt | |
| Seventeen State Street | |
| Five Guys | |
| The Port Tavern | |
| Lexi's | |
| Loretta's | |
| Port City |
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
| ░█▀█░█▀█░█▀▄░▀█▀░░░▀█▀░█▀█░█░█░█▀▀░█▀▄░█▀█ BURGERS: 0 | |
| ░█▀▀░█░█░█▀▄░░█░░░░░█░░█▀█░▀▄▀░█▀▀░█▀▄░█░█ | |
| ░▀░░░▀▀▀░▀░▀░░▀░░░░░▀░░▀░▀░░▀░░▀▀▀░▀░▀░▀░▀ FRIES: 0 | |
| ░█░░░█▀▀░█░█░▀█▀ BURGERS: 0 | |
| ░█░░░█▀▀░▄▀▄░░█░ | |
| ░▀▀▀░▀▀▀░▀░▀░▀▀▀ FRIES: 0 | |
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 | |
| class ExampleDatabase { | |
| static private $db = null; | |
| static public function connect($connection_string) | |
| { | |
| return self::$db = pg_connect($connection_string); | |
| } |
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 | |
| class ExampleDatabase { | |
| static private $instance = null; | |
| static public function getInstance() | |
| { | |
| if (self::$instance === null) { | |
| self::$instance = new self(); |
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 | |
| class ExampleDatabase { | |
| private $db = null; | |
| public function __construct($connection_string) | |
| { | |
| $this->db = pg_connect($connection_string); | |
| } |