The build status checks that all url links below are correct (not 404).
- Intro Programming
- Primitive data types and variables
- Operators and expressions
- Console input output
- Conditiolanl statements
- Loops
- Arrays
- Multidimensional arrays
- Methods
- Numeral systems
- Using classes and object
- String and text processing
- Exception handling
- Text files
- Defining classes part 1
- Defining classes part 2
- LINQ extensions, methods, delegates
- OOP Principles part 1
- OOP Principles part 2
- Common type system
- Code formatting
- Naming indetifiers
- Documentatiion and commenting
- Variable expression and constants
- Controlflow conditional statements and loops
- High quality methods
- High quality classes
- Defensive programming
- Code tuning and optimizations
- Unit testing homework
- Test driven development
- Refactoring
- Developer tools
- Creatonal patterns
- Structural patterns
- Behaviorial patterns
- Mocking
- Data structures algorithms complexity
- Liear data structures
- Trees
- Hash tables sets dictionary
- -Workshop-
- Advanced data structures
- Data structures efficiency
- Recoursion
- -Workshop-
- Combinatorics
- Sorting algorithms
- -Workshop-
- Dinamic programing
- Graphs
- -Workshop-
- -Workshop-
- Data types and variables
- Operators and expressions
- Conditional statement
- Loops
- Arrays
- Functions
- Using object
- Array methods
- Strings
- Regular expressions
- HTML 5 Canvas
- SVG fundamentals
- Kinetic Js animations
- DOM operations
- Event model
- jQuery
- jQuery plugins
- DOM Handlebars
- HTML Templates
- Functions and function expressions
- Closures and scope
- Classical inheritance
- Prototype inheritance
- Modules and patterns
- XML basics
- XML processing
- JSON processing
- Database systems
- MS SQL server and MySQL
- Database modeling
- Structured query language - SQL
- Advanced SQL
- Transact SQL
- ADO .NET
- Entity framework - code first
- Entity framework - performance
- Database performance
- Intoduction to Web API
- Consuming Web Service
- Unit Testing (MyTestedWebApi)
- WCF services
- Cloud Services
- Introductions
- Intro Web Forms
- ASP .NET Web controls
- Master pages
- Data binding
- Data source controls
- File upload
- State management
- Sitemap homework
- Validation controls
- User controls
check url links
$('#readme a[href*="M-Yankov"]')
.each(function (ind, el) {
var link = 'https://github.com/' + $(el).attr('href');
$.get(link, function() {
// alert("success");
})
.done(function() {
console.info(link + ' has passed the test!');
})
.fail(function() {
console.error(link + ' is not correct');
})
})