| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 3 months |
| seen | May 6 at 10:19 | |
| stats | profile views | 164 |
|
Nov 7 |
asked | Find maximum value in a list of dictionaries |
|
Nov 7 |
accepted | Sinatra gives me “not found” all the time instead of my page |
|
Nov 6 |
comment |
Sinatra gives me “not found” all the time instead of my page My url http://localhost:9292/Accept/?SomeKey=somevalue&Somekey2=someValue does not have foo before ? and I can't change it(this is a callback url), so I can't use your approach. |
|
Nov 6 |
accepted | How do I initialize a class variable in Ruby? |
|
Nov 6 |
asked | Sinatra gives me “not found” all the time instead of my page |
|
Nov 5 |
comment |
Using Smo in C# - skip constraint generating instructions at the beginning When I'm going to do it again, how could I pick up only foreign keys script instructions without tables' script ones? |
|
Nov 5 |
asked | Using Smo in C# - skip constraint generating instructions at the beginning |
|
Nov 4 |
comment |
Custom multi-threaded Http Server isn't a thread safe It's long and complex. Why don't you just ask my question: only yes or no? |
|
Nov 4 |
comment |
Custom multi-threaded Http Server isn't a thread safe It writes to/reads from it. I added lock for writing but it didn't help me. |
|
Nov 4 |
revised |
Custom multi-threaded Http Server isn't a thread safe deleted 1707 characters in body |
|
Nov 4 |
revised |
Custom multi-threaded Http Server isn't a thread safe deleted 1182 characters in body |
|
Nov 4 |
comment |
Custom multi-threaded Http Server isn't a thread safe For now I have to use my custom Http Server. |
|
Nov 4 |
accepted | Static method, static field and multitheading in C# |
|
Nov 4 |
revised |
Custom multi-threaded Http Server isn't a thread safe added 2 characters in body |
|
Nov 4 |
asked | Custom multi-threaded Http Server isn't a thread safe |
|
Nov 4 |
comment |
Static method, static field and multitheading in C# But SendRequestToServer was an instance method and if locker was an instance variable, would it be thread safe? I don't think so, since each thread would have its own copy of locker. |
|
Nov 4 |
comment |
Static method, static field and multitheading in C# I'm a bit confused by using lock. Must a locker object by a static variable or an intance one? See @CodeIgnoto example. |
|
Nov 4 |
comment |
How do I wait until Task is finished in C#? Why don't you call responseTask.Wait() before newTask.Task()? |
|
Nov 4 |
accepted | How do I wait until Task is finished in C#? |
|
Nov 4 |
comment |
Static method, static field and multitheading in C# Really? If many different threads start calling SendRequestToServer(), then there WON'T be any reason of using lock(locker) since each thread is going to have ITS OWN copy of locker object. |