- http://www.pluralsight.com/courses/meteorjs-web-application
- https://scotch.io/tutorials/learn-meteor-js-from-scratch-build-a-polling-app
- https://scotch.io/courses/building-a-slack-clone-in-meteor-js
- http://angular-meteor.com/tutorials/angular2/bootstrapping
- https://medium.com/@SamCorcos/building-campaignhawk-spacial-analysis-overview-part-16-f10bbf03a862
- https://www.udemy.com/learn-meteorjs-by-building-10-real-world-projects/
- http://react-in-meteor.readthedocs.org/en/latest/tutorial/
- https://github.com/ahmedshuhel/aurelia-meteor/
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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 catchAllRoute = branch('!posts/*.html'); | |
catchAllRoute.use(permalinks({ | |
relative: false | |
})); | |
This file contains 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
if executable('ag') | |
" Use Ag over Grep | |
autocmd VimEnter * set grepprg=ag\ --nogroup\ --nocolor | |
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore | |
unlet g:ctrlp_user_command | |
let g:ctrlp_user_command = 'ag %s -l --nocolor --hidden -g ""' | |
" ag is fast enough that CtrlP doesn't need to cache | |
let g:ctrlp_use_caching = 0 |
This file contains 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 form | |
function fnForm() { | |
console.log('function form: ', this); | |
} | |
fnForm(); // function form - this is the global object - (window) | |
// method form | |
var parent = function parent() { | |
var p = {}; |
This file contains 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
// Using closures for performance gains | |
// 1. This is bad because we assign names on the global scope | |
// and it might impact with other vars with same name in global | |
var names = ['zero', 'one', 'two', 'three', 'four', 'five']; | |
var digit_names = function(n) { | |
return names[n] | |
}; | |
console.log(digit_names(1)); |
This file contains 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
#!/usr/bin/env bash | |
func_check_for_root() { | |
if [ ! $( id -u ) -eq 0 ]; then | |
echo "ERROR: $0 Must be run as root, Script terminating" ;exit 7 | |
fi | |
} | |
func_check_for_root | |
#SETUP PARAMS |
This file contains 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
<configSections> | |
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" /> | |
<sectionGroup name="common"> | |
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" /> | |
</sectionGroup> | |
</configSections> | |
<common> | |
<logging> | |
<factoryAdapter type="Common.Logging.NLog.NLogLoggerFactoryAdapter, Common.Logging.NLog31"> |
This file contains 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
<configSections> | |
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" /> | |
</configSections> | |
<nlog throwExceptions="false" xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<time type="AccurateUTC" /> | |
<targets> | |
<target xsi:type="Chainsaw" name="Chainsaw" address="udp://127.0.0.1:7071" /> | |
<target xsi:type="Trace" name="Trace" layout="NLog | ${level:padding=5} | ${logger} | ${message}" /> | |
</targets> |
This file contains 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
_build/ | |
_site/ | |
Properties/ | |
# Use git add -f to force override .sln when required. Not needed in most cases. | |
# git add -f myProj.sln | |
*.sln | |
Project_Readme.html |