Problem NOTE: the Javascript is all I’m concerned about, the HTML/CSS is just DEMO code. One caveat is ARIA states […]
Stack Code Review
Creating a Generic Template Interface/Class and injecting into another object
Problem I would like to create a generic template class for my document processor. Assuming the template has a source […]
Countdown module that hides an element when a specified date is reached
Problem I have the following piece of code which hides an element when a specified date was reached. I would […]
Autofac DI container in console app
Problem Just used DI containers in MVC projects, via constructor injection, and I’d need to now inject a service into […]
Remove and Add items from array in nested javascript object [closed]
Problem Closed. This question is off-topic. It is not currently accepting answers. Lacks concrete context: Code Review requires concrete code […]
Do I need ninject when implementing DAL with generic repository and unit of work?
Problem I am implementing generic repository and unit of work for the first time. I would be glad if someone […]
Is there a better way to write this jQuery UI effect animation?
Problem I’m writing some code to perform some simple form validation and I would like to display error messages inside […]
Note taking app (saves notes to an array)
Problem I created the following app (only saves the notes in an array so no a proper note taking app). […]
Push an item onto the end of array in Java
Problem I want to make a method arrayIntPush(3, {5,4,8}) that will return {5,4,8,3}. This method seems to work: public static […]
Composite GetHashCode function
Problem I’ve built a small library for comparing objects based on their members here (related SO question). There’s a need […]