Andrei Rinea

2,166
Reputation
610 views

Registered User

Name Andrei Rinea
Member for 1 year
Seen 18 hours ago
Website
Location Romania (Europe, east side), Bucharest
Age 28
Passionated about software. Perfectionist.

Software technologies that I currently use :
.NET Framework 3.5 SP1
ASP.NET (including ASP.NET AJAX and ASP.NET MVC)
SQL Server 2008
LINQ, WCF, JavaScript

Working for TeamNet International.

Feel free to drop me a line at : andrei@rinea.ro
.. or read my blog at http://blog.andrei.rinea.ro
Nov
15
revised Mobile device is detected as non mobile device
Added asp.net tag
Nov
13
awarded  Notable Question
Nov
6
comment How can I convince Visual Studio to not omit access modifiers when generating code?
I don't like quitting :(
Nov
6
asked How can I convince Visual Studio to not omit access modifiers when generating code?
Oct
29
awarded  Notable Question
Oct
23
accepted RPC_E_SERVERFAULT when automating Microsoft Word
Oct
21
awarded  Popular Question
Oct
21
comment ADO.NET DataService: Passing parameter to [WebInvoke] Method
Yes, michaelf1977, that's true :( But having had problems with the GUID prefix I thought it was worth mentioning here.
Oct
18
accepted asp.net mvc localization
Oct
17
comment From DataTable to BindingList
that sucks man.. :(
Oct
15
answered ADO.NET DataService: Passing parameter to [WebInvoke] Method
Oct
15
accepted Testing ASP.NET MVC View Model
Oct
13
comment ASP .NET C# - Put round SqlDataSource into square DataTable hole?
Please post the Exception details (message and stacktrace especially)
Oct
13
answered Certification for Asp.net MVC
Oct
13
answered Testing ASP.NET MVC View Model
Oct
13
comment How do I Unit Test a function that inserts a record into a RIA Services DB?
tough one...... :(
Oct
13
comment Are .NET languages really making any kind of dent in consumer desktop applications?
Well if not entirely then how much? 50%?
Oct
13
answered Are .NET languages really making any kind of dent in consumer desktop applications?
Oct
8
comment Synchronous ADO.NET dataservices calls in Silverlight
Good question, a common problem in Silverlight
Oct
8
answered Synchronous ADO.NET dataservices calls in Silverlight
Sep
26
comment silverlight tcp tunneling / bridging
thank you!
Sep
26
comment silverlight tcp tunneling / bridging
I checked out the two port forwarding utilities you linked to but neither one has satisfied me so I wrote one myself and it works :D
Sep
25
comment silverlight tcp tunneling / bridging
thanks, I will go search for this term also :)
Sep
25
asked silverlight tcp tunneling / bridging
Sep
23
comment Custom authorization in ADO.NET Data Services
Great answer! +1
Sep
22
comment Explicit or implicit execution control statement use
true, I agree upon failing early but in this case this is the first check so I can't make it any earlier than this.
Sep
22
revised Explicit or implicit execution control statement use
added 139 characters in body
Sep
22
asked Explicit or implicit execution control statement use
Sep
19
comment .NET WTF?s
.NET 3.5 SP1 is even more WTF-ier than plain old 3.5
Sep
19
comment What is the worst real-world macros/pre-processor abuse you’ve ever come across?
notre poule dans votre cour (our chicken in your yard in french or my d**k in your a** in romanian) =)))))))
Sep
18
comment Is Socket.SendAsync thread safe effectively?
Thank you!
Sep
18
asked Is Socket.SendAsync thread safe effectively?
Sep
14
comment Speed of code execution: ASP.NET-MVC versus PHP
"As a bytecode interpreted platform, ASP.NET" - there is no interpretation for Java or .NET whatsoever. There is a 2-stage compilation : 1-source code to bytecode / IL, 2-bytecode/IL to native code. In the end only native code is executed.
Sep
12
comment Do you, as a programmer, have lunch break(s)?
@T.E.D. : I don't get it : Why IT persons are discriminated?!
Sep
11
asked Bogus InvalidOperationException (in a DataServiceRequestException)
Sep
10
comment What’s the business case for upgrading to .Net 4.0?
I guess beta-testing for Microsoft :P
Sep
8
awarded  Popular Question
Sep
4
awarded  Tumbleweed
Sep
3
revised Expand whole TreeView in Silverlight
added context
Sep
3
comment Expand whole TreeView in Silverlight
I keep getting null on TreeView.ItemContainerGenerator.ContainerFromIndex on all indices.. don't get it why..
Sep
2
comment Expand whole TreeView in Silverlight
I guess it should work (the sample).
Sep
2
comment Possible to Compile ASP.NET to Machine Code?
+1! this is what I was referring to in my answer. AFAIK xenocode works for any .NET assemblies so it should work fine for ASP.NET assemblies too.
Sep
2
comment Possible to Compile ASP.NET to Machine Code?
Adrian, giorgian is referring to pre-compiling ASP.NET Web Site projects just like an ASP.NET Web Application project is compiled. Nothing fancy there.
Sep
2
comment Possible to Compile ASP.NET to Machine Code?
CIL which was formerly known as MSIL is now simply called IL.
Sep
2
comment Possible to Compile ASP.NET to Machine Code?
NGen does nothing more than the JIT-er does except it does it in advance.
Sep
2
comment Expand whole TreeView in Silverlight
Expand all is an extension method but it doesn't do anything so it doesn't help. Sorry :(
Sep
2
asked Expand whole TreeView in Silverlight
Sep
2
comment Hidden Features of C#?
Yes, No, Dunno
Sep
2
comment Hidden Features of C#?
The namespaces aliases remind me of the yucky c++ :-S
Sep
2
comment Hidden Features of C#?
You can abuse it and have a NullReferenceException down your road later when you could have had a InvalidCastException earlier.