Skip to content

Commit 49293bb

Browse files
committed
Update redirects
1 parent 2c172bb commit 49293bb

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ Other Style Guides
11091109
}
11101110
```
11111111
1112-
- For more information refer to [JavaScript Scoping & Hoisting](http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting) by [Ben Cherry](http://www.adequatelygood.com/).
1112+
- For more information refer to [JavaScript Scoping & Hoisting](http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting/) by [Ben Cherry](http://www.adequatelygood.com/).
11131113
11141114
**[⬆ back to top](#table-of-contents)**
11151115
@@ -1620,7 +1620,7 @@ Other Style Guides
16201620
})();
16211621
```
16221622
1623-
[Read more](http://stackoverflow.com/a/7365214/1712802).
1623+
[Read more](http://stackoverflow.com/questions/7365172/semicolon-before-self-invoking-function/7365214%237365214).
16241624
16251625
**[⬆ back to top](#table-of-contents)**
16261626
@@ -1989,7 +1989,7 @@ Other Style Guides
19891989
19901990
## ECMAScript 5 Compatibility
19911991
1992-
- [26.1](#26.1) <a name='26.1'></a> Refer to [Kangax](https://twitter.com/kangax/)'s ES5 [compatibility table](http://kangax.github.com/es5-compat-table/).
1992+
- [26.1](#26.1) <a name='26.1'></a> Refer to [Kangax](https://twitter.com/kangax/)'s ES5 [compatibility table](http://kangax.github.io/es5-compat-table/).
19931993
19941994
**[⬆ back to top](#table-of-contents)**
19951995
@@ -2028,7 +2028,7 @@ Other Style Guides
20282028
20292029
## Performance
20302030
2031-
- [On Layout & Web Performance](http://kellegous.com/j/2013/01/26/layout-performance/)
2031+
- [On Layout & Web Performance](http://www.kellegous.com/j/2013/01/26/layout-performance/)
20322032
- [String vs Array Concat](http://jsperf.com/string-vs-array-concat/2)
20332033
- [Try/Catch Cost In a Loop](http://jsperf.com/try-catch-in-loop-cost)
20342034
- [Bang Function](http://jsperf.com/bang-function)
@@ -2057,18 +2057,18 @@ Other Style Guides
20572057
20582058
- Code Style Linters
20592059
+ [ESlint](http://eslint.org/) - [Airbnb Style .eslintrc](https://github.com/airbnb/javascript/blob/master/linters/.eslintrc)
2060-
+ [JSHint](http://www.jshint.com/) - [Airbnb Style .jshintrc](https://github.com/airbnb/javascript/blob/master/linters/jshintrc)
2060+
+ [JSHint](http://jshint.com/) - [Airbnb Style .jshintrc](https://github.com/airbnb/javascript/blob/master/linters/jshintrc)
20612061
+ [JSCS](https://github.com/jscs-dev/node-jscs) - [Airbnb Style Preset](https://github.com/jscs-dev/node-jscs/blob/master/presets/airbnb.json)
20622062
20632063
**Other Style Guides**
20642064
20652065
- [Google JavaScript Style Guide](http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml)
2066-
- [jQuery Core Style Guidelines](http://docs.jquery.com/JQuery_Core_Style_Guidelines)
2067-
- [Principles of Writing Consistent, Idiomatic JavaScript](https://github.com/rwldrn/idiomatic.js/)
2066+
- [jQuery Core Style Guidelines](http://contribute.jquery.org/style-guide/js/)
2067+
- [Principles of Writing Consistent, Idiomatic JavaScript](https://github.com/rwaldron/idiomatic.js)
20682068
20692069
**Other Styles**
20702070
2071-
- [Naming this in nested functions](https://gist.github.com/4135065) - Christian Johansen
2071+
- [Naming this in nested functions](https://gist.github.com/cjohansen/4135065) - Christian Johansen
20722072
- [Conditional Callbacks](https://github.com/airbnb/javascript/issues/52) - Ross Allen
20732073
- [Popular JavaScript Coding Conventions on Github](http://sideeffect.kr/popularconvention/#javascript) - JeongHoon Byun
20742074
- [Multiple var statements in JavaScript, not superfluous](http://benalman.com/news/2012/05/multiple-var-statements-javascript/) - Ben Alman
@@ -2095,7 +2095,7 @@ Other Style Guides
20952095
- [Human JavaScript](http://humanjavascript.com/) - Henrik Joreteg
20962096
- [Superhero.js](http://superherojs.com/) - Kim Joar Bekkelund, Mads Mobæk, & Olav Bjorkoy
20972097
- [JSBooks](http://jsbooks.revolunet.com/) - Julien Bouquillon
2098-
- [Third Party JavaScript](http://manning.com/vinegar/) - Ben Vinegar and Anton Kovalyov
2098+
- [Third Party JavaScript](https://www.manning.com/books/third-party-javascript) - Ben Vinegar and Anton Kovalyov
20992099
- [Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript](http://amzn.com/0321812182) - David Herman
21002100
- [Eloquent JavaScript](http://eloquentjavascript.net/) - Marijn Haverbeke
21012101
- [You Don't Know JS: ES6 & Beyond](http://shop.oreilly.com/product/0636920033769.do) - Kyle Simpson
@@ -2105,18 +2105,18 @@ Other Style Guides
21052105
- [DailyJS](http://dailyjs.com/)
21062106
- [JavaScript Weekly](http://javascriptweekly.com/)
21072107
- [JavaScript, JavaScript...](http://javascriptweblog.wordpress.com/)
2108-
- [Bocoup Weblog](http://weblog.bocoup.com/)
2108+
- [Bocoup Weblog](https://bocoup.com/weblog)
21092109
- [Adequately Good](http://www.adequatelygood.com/)
2110-
- [NCZOnline](http://www.nczonline.net/)
2110+
- [NCZOnline](https://www.nczonline.net/)
21112111
- [Perfection Kills](http://perfectionkills.com/)
21122112
- [Ben Alman](http://benalman.com/)
21132113
- [Dmitry Baranovskiy](http://dmitry.baranovskiy.com/)
21142114
- [Dustin Diaz](http://dustindiaz.com/)
2115-
- [nettuts](http://net.tutsplus.com/?s=javascript)
2115+
- [nettuts](http://code.tutsplus.com/?s=javascript)
21162116
21172117
**Podcasts**
21182118
2119-
- [JavaScript Jabber](http://devchat.tv/js-jabber/)
2119+
- [JavaScript Jabber](https://devchat.tv/js-jabber/)
21202120
21212121
21222122
**[⬆ back to top](#table-of-contents)**
@@ -2132,7 +2132,7 @@ Other Style Guides
21322132
- **Avalara**: [avalara/javascript](https://github.com/avalara/javascript)
21332133
- **Billabong**: [billabong/javascript](https://github.com/billabong/javascript)
21342134
- **Blendle**: [blendle/javascript](https://github.com/blendle/javascript)
2135-
- **ComparaOnline**: [comparaonline/javascript](https://github.com/comparaonline/javascript)
2135+
- **ComparaOnline**: [comparaonline/javascript](https://github.com/comparaonline/javascript-style-guide)
21362136
- **Compass Learning**: [compasslearning/javascript-style-guide](https://github.com/compasslearning/javascript-style-guide)
21372137
- **DailyMotion**: [dailymotion/javascript](https://github.com/dailymotion/javascript)
21382138
- **Digitpaint** [digitpaint/javascript](https://github.com/digitpaint/javascript)
@@ -2145,15 +2145,15 @@ Other Style Guides
21452145
- **General Electric**: [GeneralElectric/javascript](https://github.com/GeneralElectric/javascript)
21462146
- **GoodData**: [gooddata/gdc-js-style](https://github.com/gooddata/gdc-js-style)
21472147
- **Grooveshark**: [grooveshark/javascript](https://github.com/grooveshark/javascript)
2148-
- **How About We**: [howaboutwe/javascript](https://github.com/howaboutwe/javascript)
2148+
- **How About We**: [howaboutwe/javascript](https://github.com/howaboutwe/javascript-style-guide)
21492149
- **Huballin**: [huballin/javascript](https://github.com/huballin/javascript)
21502150
- **HubSpot**: [HubSpot/javascript](https://github.com/HubSpot/javascript)
21512151
- **Hyper**: [hyperoslo/javascript-playbook](https://github.com/hyperoslo/javascript-playbook/blob/master/style.md)
21522152
- **InfoJobs**: [InfoJobs/JavaScript-Style-Guide](https://github.com/InfoJobs/JavaScript-Style-Guide)
21532153
- **Intent Media**: [intentmedia/javascript](https://github.com/intentmedia/javascript)
21542154
- **Jam3**: [Jam3/Javascript-Code-Conventions](https://github.com/Jam3/Javascript-Code-Conventions)
21552155
- **JSSolutions**: [JSSolutions/javascript](https://github.com/JSSolutions/javascript)
2156-
- **Kinetica Solutions**: [kinetica/javascript](https://github.com/kinetica/javascript)
2156+
- **Kinetica Solutions**: [kinetica/javascript](https://github.com/kinetica/Javascript-style-guide)
21572157
- **Mighty Spring**: [mightyspring/javascript](https://github.com/mightyspring/javascript)
21582158
- **MinnPost**: [MinnPost/javascript](https://github.com/MinnPost/javascript)
21592159
- **MitocGroup**: [MitocGroup/javascript](https://github.com/MitocGroup/javascript)
@@ -2172,7 +2172,7 @@ Other Style Guides
21722172
- **SeekingAlpha**: [seekingalpha/javascript-style-guide](https://github.com/seekingalpha/javascript-style-guide)
21732173
- **Shutterfly**: [shutterfly/javascript](https://github.com/shutterfly/javascript)
21742174
- **Springload**: [springload/javascript](https://github.com/springload/javascript)
2175-
- **StudentSphere**: [studentsphere/javascript](https://github.com/studentsphere/javascript)
2175+
- **StudentSphere**: [studentsphere/javascript](https://github.com/studentsphere/guide-javascript)
21762176
- **Target**: [target/javascript](https://github.com/target/javascript)
21772177
- **TheLadders**: [TheLadders/javascript](https://github.com/TheLadders/javascript)
21782178
- **T4R Technology**: [T4R-Technology/javascript](https://github.com/T4R-Technology/javascript)

0 commit comments

Comments
 (0)