| bio | website | SLaks.net |
|---|---|---|
| location | New Jersey | |
| age | 22 | |
| visits | member for | 4 years, 6 months |
| seen | 1 min ago | |
| stats | profile views | 47,553 |
Schabse Laks
Developer, C# MVP

Contact: SLaks@LaksFamily.com
Twitter: @Schabse
I've been programming since I was 12.
I started with VB6, then moved to C# 2 Beta 2 when I was 14. I never liked VB6, but I found my calling in C#, and I've stuck with it ever since.
Since then, I've also mastered web development with jQuery.
I also wrote a jQuery tutorial.
My best of SO:
- Tracking down a bug in the .Net runtime
- An exercise in psychic debugging (see the question history)
- Working around a C# compiler limitation
- Decoding a Javascript virus
- jQuery selector magic
- Simple coroutines using iterators
- Understanding Javascript scoping in inline event handlers
WM_NCHITTESTmagic- A bug in the C# compiler
|
17m |
comment |
Am I able to display my custom error message? Read your code carefully. What part don't you understand? |
|
20m |
comment |
JSON.net preserve comments in file JSON doesn't support comments at all. What are you talking about? |
|
21m |
revised |
Using an array inside a map = { [ ] } in Javascript added 218 characters in body |
|
25m |
comment |
Using an array inside a map = { [ ] } in Javascript @user2010496: The same way you did in your question. |
|
1h |
comment |
how to decrypt this password hash? @KaustubhG.Padwad: It must never be possible to do that. |
|
1h |
comment |
Splitting only returns System.String[] instead of actual value How do you want to convert the array to a string? |
|
1h |
comment |
How can i make Recursion Asynchronous using Async and Await Keyword? There is no point in making it async unless you have an actual async operation inside (which you don't) |
|
1h |
comment |
Using an array inside a map = { [ ] } in Javascript @Sam: It also fully answers the question |
|
1h |
answered | Using an array inside a map = { [ ] } in Javascript |
|
2h |
comment |
Why some Collections extends Abstract also Implements interface? @MrA: No; not all collections inherit the abstract classes. |
|
2h |
comment |
All references in list point to 'this' @I4V: That's not what he's trying to do. |
|
2h |
comment |
Make Asynchronous method Synchronous javascript Sorry; you need to use callbacks. Promises can make this much easier, though. |
|
2h |
comment |
how to decrypt this password hash? The whole point of a hash is that this is completely impossible. |
|
2h |
comment |
What is a verbatim string? msdn.microsoft.com/en-us/library/vstudio/ms228362.aspx |
|
2h |
answered | Why some Collections extends Abstract also Implements interface? |
|
2h |
comment |
Calling /../file.js function from inline declared html js gives - ReferenceError: function is not defined What do you see in the dev tools? |
|
2h |
comment |
Jquery thumbnails scrollbar with mosueover effect? What did you try? What are you having trouble with? |
|
11h |
comment |
Is it generally considered a bad practice to alter the object's state via its getter method? You're misunderstanding the question. He's asking about returning mutable objects. |
|
11h |
comment |
Is it generally considered a bad practice to alter the object's state via its getter method? You're asking whether it's a good idea to return mutable objects from getters. Answer: Sometimes. |
|
11h |
answered | Javascript functions: var func = someFunction() and var func = someFunction? |