We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!
| $(window).on("scroll", function() { | |
| var scrollHeight = $(document).height(); | |
| var scrollPosition = $(window).height() + $(window).scrollTop(); | |
| if ((scrollHeight - scrollPosition) / scrollHeight === 0) { | |
| // when scroll to bottom of the page | |
| } | |
| }); |
We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!
| <?php | |
| //Quotes: Replace smart double quotes with straight double quotes. | |
| //ANSI version for use with 8-bit regex engines and the Windows code page 1252. | |
| preg_replace('[\x84\x93\x94]', '"', $text); | |
| //Quotes: Replace smart double quotes with straight double quotes. | |
| //Unicode version for use with Unicode regex engines. | |
| preg_replace('[\u201C\u201D\u201E\u201F\u2033\u2036]', '"', $text); |
| /* | |
| I found it handy to reduce the amount of manual require() lines in a big | |
| project by grouping small modules together like below. | |
| If you put this code into "index.js" then it'll pick up any other | |
| JS modules in that directory and expose them as sub-modules. | |
| - Any exports in *this* module would be myPackage.exportName | |
| - Any exports in other modules would be myPackage.moduleName.exportName |