Skip to content

Instantly share code, notes, and snippets.

View abhirathore2006's full-sized avatar

Abhimanyu Singh Rathore abhirathore2006

View GitHub Profile
(function () {
// Establish the root object, `window` in the browser, or `global` on the server.
var root = this;
// Create a reference to this
var _ = new Object();
var isNode = false;
https://pixabay.com/en/mount-everest-himalayas-nuptse-276995/
https://pixabay.com/en/mount-mckinley-hiker-snow-landscape-898378/
@abhirathore2006
abhirathore2006 / windowNotDefined.txt
Created July 16, 2016 08:31
window not defined, $ not defined , document not defined fixes all of them on server side
require("jsdom").env("", function(err, window) {
if (err) {
console.error(err);
return;
}
global.document =window.document;
global.window=window;
global.$ = require("jquery")(window);
});
brian geotz - java oracle
anil gaur
James Gosling
https://www.youtube.com/watch?v=1OpAgZvYXLQ
Venkat Subramaniam
single method abstract interfaces
https://www.youtube.com/watch?v=JgiJZLgc5WA
/**
* jQuery goMap
*
* @url http://www.pittss.lv/jquery/gomap/
* @author Jevgenijs Shtrauss <pittss@gmail.com>
* @version 1.2.0
* This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
(function($) {
https://www.youtube.com/watch?v=MzVFrIAwwS8
http://jonathancreamer.com/
https://basarat.gitbooks.io/typescript/content/docs/project/tsconfig.html
http://henleyedition.com/implicit-code-splitting-with-react-router-and-webpack/
https://github.com/nfl/react-helmet