Care to explain why? I'm generally very happy with JetBrains products. I use ReSharper on a daily basis for 8 years now, and I also often use IntelliJ, Data Grip, PHP Storm and PyCharm. In a previous company, we used YouTrack. And with the exception of YouTrack (it still needs to mature a bit), everything else is awesome. I'm very curious to know with which of their product were you so disappointed that you avoid them just by hearing the company name.
Fedor Hajdu
Posts
-
How do I commit myself to side-projects? -
var tomorrow = ?You won't believe it but I found very similar line in our code a few days ago, just the variable name was "yesterday" and it was set to May 22. :-D
-
Multithreading done "right"It's not a winforms app, but even it were, it still don't make sense. GenerateTimeLineImage is a heavy function but it would still block the UI thread (if that's why you mentioned WinApp) because of the m_thread.Join() there.
-
Multithreading done "right"He's not, I'm his replacement... :)
-
Programming question removed... can't deleteThanks, I've opened a new thread here: http://www.codeproject.com/Feature/HallOfShame.aspx?msg=4258449#xx4258449xx[^]
-
Programming question removed... can't deleteThat's awesome, I've should have left the message. :laugh:
-
Multithreading done "right"I recently started working for a new company and found quite a few situations like this:
Thread m_thread = new Thread(new ThreadStart(GenerateTimeLineImage));
m_thread.Start();
m_thread.Join();I'm no expert on mulithreading but there are so many different (not just brainless copy-paste) of code like that, that it made me wondering is there some hidden magic behind that code that I'm not aware of. So, what's the difference between that and
GenerateTimeLineImage();
besides obvious performance loss due to creating a pointless thread?
-
Programming question removed... can't delete -
Copy large filesAnyone?
-
Copy large filesNo, I checked this, and it simply won'g work. The problem I have is that I can't access to share folder on machines. Using robocopy or anyonther command line tool would require some kind of share copy from one location to other, somewhere in the network. In my applications, I have client and server independent app's and I have to send file through .net remoting, like a parameter to method (IO.FileInfo, or byte array). Please help i'm :~ Thanks in advance Fedor
-
Copy large filesThat's great! Thanks
-
Copy large filesI think that robocopy won't work. As I saw on http://en.wikipedia.org/wiki/Robocopy[^] Robocopy works only with folders. That is not what I need, I need files to be copyed. About FTP classes, can you give me more info, how to do it? Thanks
-
Copy large filesThanks for the answer, I'll check that
-
Copy large filesHello, I'm creating .NET remoting application. I need to send files thoroug network. Files can be very large, and I would like to be sure files are send succesfully. What I've been thinking, is to split file on smaller ones (eg. 1MB), and send them one by one through net. With textual files this is very easy but what with binary files? How to split them? Also, how can I do CRC check at the end? Thanks in advance, Fedor
-
Monitor size questionAt home same as at work: 19" TFT 1280x1024. Some colleagues use wide-screen monitor, and I find those way better then regular monitors for VS, so I want one too :)
-
Formatting DateTimeI think you are trying to strip time because you think that small date time is only date field (lots of users think that, i don't know why, i guess there is something like that in Access), but that is not true. This data field just shortens range of valid values while keeping the time. Valid dates for a SMALLDATETIME column can range from January 1, 1900 to June 6, 2079. If I'm wrong, and that is not what error is about than you can simply strip time with: cpCreateDate.SelectedDate.Date;
-
asp .net exe:If I've understood you well you want to deploy ASP.NET application by e-mail. You can do it by "publishing" your web site (right click on project in VS and select publish) into a folder on file system (select "only files needed to run web application). Then ZIP all files in this folder and send it via e-mail. web applications does not have singe exe file to deliver...
-
Speed comparation VB6 vs. C#Thank you for answers. It helped a lot! Regards, Fedor
-
Speed comparation VB6 vs. C#Hey everybody. I would like to know speed differences between vb6 and C#. How much C# is slower because of the CLR? Do you know some good web site where this is tested? Thanks in advance, Fedor
-
Absolute positioning on mobile device [modified]Nobody :(( OK, does anybody knows where can i BUY a powerful mobile web calendar control (like Mediachase, but to work on mobile IE 5 ?? Please... Thanks in advance, Fedor