lubos hasko

5,599
reputation
630 views

Registered User

name lubos hasko
member for 1 year
seen 12 hours ago
website
location Sydney, AU
age 26
C# developer from Slovakia
Dec
15
accepted What sort of workloads would be appropriate for use on Amazon EC2 Spot Instances?
Dec
15
answered What sort of workloads would be appropriate for use on Amazon EC2 Spot Instances?
Dec
6
awarded  Mortarboard
Dec
3
accepted GUI border dilemma
Dec
2
accepted If Base class is marked Serializable are all child classes marked too?
Dec
2
revised If Base class is marked Serializable are all child classes marked too?
added 20 characters in body; added 8 characters in body
Dec
2
answered If Base class is marked Serializable are all child classes marked too?
Nov
24
answered Programmatically darken a Hex colour
Nov
16
comment Generating database tables from object definitions
the catch is that it's object database and therefore not based on superior relational model.
Nov
6
comment .NET solution - many projects vs one project
There is also circular dependency between System.Xml.dll and System.Configuration.dll
Nov
6
comment .NET solution - many projects vs one project
I don't find concept of projects within solution useful, putting individual layers into separate folders is equally working for me and for millions of others who are using happily other programming languages.
Nov
6
answered .NET solution - many projects vs one project
Nov
4
comment Single or multiple databases
Clustering doesn't work well for queries spanning more than one server.
Nov
4
answered Single or multiple databases
Nov
2
answered How do I create a windowless C# app that resides in the tray?
Oct
31
accepted Best practices of porting C# server logic to client JS?
Oct
26
comment Load dll’s from Environment Variable Path from a service
this has nothing to do with his problem because after restarting his computer, everything works.
Oct
13
comment What are the advantages of using a single database for EACH client?
edit the original question or just add the tag.
Oct
9
revised Mapping Stream data to data structures in C#
deleted 7 characters in body
Oct
1
revised C# - Executables decompilable (can be reverse engineered)?
deleted 1 characters in body
Oct
1
answered C# - Executables decompilable (can be reverse engineered)?
Sep
30
comment Too much coding at a job interview
their homepage was most likely done in half a day on job interview too
Sep
28
comment Why are weak pointers useful?
extension methods have absolutely nothing to do with GC and weak references.
Sep
25
accepted IDs for Information on More Than One DB/Server
Sep
25
comment .NET 4.0 and earlier versions
one application = one process
Sep
25
answered How do I change a Windows Service’s startup type in .NET (post-install)?
Sep
22
awarded  Enlightened
Sep
20
comment How to set custom “Host” header in HttpWebRequest?
Why do you need to set "Host" header by yourself. If you make request to www.google.com, it simply becomes host header.
Sep
20
revised Why not construct UI based on DB schema?
deleted 276 characters in body; added 27 characters in body; deleted 25 characters in body
Sep
20
answered Why not construct UI based on DB schema?
Sep
20
comment graphic design software for a programmer?
just get your logo from websites such as logomaid.com, otherwise do it yourself in Paint.NET (getpaint.net)
Sep
20
comment Inno Setup for Windows service?
you can try Filename: "net.exe"; Parameters: "start WinServ". if it doesn't work, you could just add one more switch --start to your c# application and start windows service directly from the program by using ServiceController class (msdn.microsoft.com/en-us/library/…).
Sep
20
accepted Inno Setup for Windows service?
Sep
20
revised Inno Setup for Windows service?
added 113 characters in body
Sep
20
answered Inno Setup for Windows service?
Sep
19
accepted Have any developers changed careers into the domain they were developing software for?
Sep
19
comment Improving soccer simulation algorithm
LOC = Lines of code
Sep
18
comment scan & save as PDF in c#
GdipSaveImageToFile function doesn't support PDF format.
Sep
18
answered IDs for Information on More Than One DB/Server
Sep
16
comment Fast parsing of PHP in C#
why can't you run PHP locally? you don't need webserver, just feed your script into PHP.exe or whatever it is and capture console output into your C# application.
Sep
16
answered Have any developers changed careers into the domain they were developing software for?
Sep
14
comment What Amazon S3 .NET Library is most useful and efficient?
Why don't you like LitS3? I'm using ThreeSharp without any issues.
Sep
13
comment How to logout previous session of a user,if he logins again on same or different browser.
@Extrakun, don't assume he is using PHP.
Sep
13
comment Is C really used for a lot of Scientific Computing?
"and it is rarely profitable to argue with professors"... lol
Sep
13
answered How to logout previous session of a user,if he logins again on same or different browser.
Sep
13
answered why does monodevelop need the .NET 3.5 framework to run on windows?
Sep
11
comment What is required for a career in web development?
sorry, I deleted my comment. you're right, you didn't say it.
Sep
10
comment Which code generation tools do you use?
@Charlie, not always your language of choice can abstract you from repetitive code and even if it can, it might not be practical for performance reasons.
Sep
8
answered MessageBox in c#
Sep
8
comment How can I have two .NET projects in the same domain
turn on errors for remote computers in your web.config so we can see why it fails.