Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
H

Hired Mind

@Hired Mind
About
Posts
131
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Why is Pakistan not being held to Account
    H Hired Mind

    RaviSant wrote:

    It gave sanctuaries to Al-Qaeda and other Jehadis. World knows same.
    But, Why US has keen interests in it?

    Because we do our best to put back together countries in which we've had to make war. Don't believe it? I invite you to Google the "Marshal Plan".

    Before .NET 4.0, object Universe = NULL;

    The Lounge question

  • Why is Pakistan not being held to Account
    H Hired Mind

    There were plans. The plans were already executed. Did ya miss it? In any case, the action in Afghanistan was much bigger because there were 20,000 Al-quaida members training there, and they were being sheltered by what passed for a government there. The action in Pakistan was smaller because it was only one guy and his henchmen. If you think that the USA is terrified of taking on a nuclear country, consider that the USA could glass the entire middle east in an afternoon, and it would be damn easier than sending in ground troops. The only thing stopping us from doing so is... that we're human beings, with compassion, and we don't like war. But we accept that war is sometimes necessary - enemies rarely give you a choice.

    Before .NET 4.0, object Universe = NULL;

    The Lounge question

  • VS 2010 color config - am I missing something?
    H Hired Mind

    I can't speak to the ability to change foregrounds/backgrounds on certain elements. I suspect it has to do with a particular element only changing the back/foreground, and relying on another element to provide the other one. But you can save yourself a lot of time by simply saving off your settings: Tools->Import and Export Settings At least you'll only have to do it once, and it saves all your keyboard customizations and many other things too.

    Before .NET 4.0, object Universe = NULL;

    The Lounge visual-studio com tutorial question career

  • Best blu-ray / netflix system
    H Hired Mind

    I don't own a BlueRay player so my only contribution is: I read here[^] that PS3 is the only game platform that can do 1080p at 60 frames/sec without problems. Hope that adds to the discussion :)

    Before .NET 4.0, object Universe = NULL;

    The Lounge question discussion

  • To all linux and windows users, please help me choose the better option.
    H Hired Mind

    As always, it really depends on what you want to do with your operating system. (All opinion here) Security - Linux, definitely. The OS is open for the whole world to see, so more security holes get found and fixed before it gets into a stable/popular distribution. In a security-critical server app, with no dependencies on Windows, I'd definitely go with Linux (or preferably *BSD). Of course this limits you to using a stable/popular distribution. If you run the bleeding-edge revision, you're probably going to have just as many security holes as Windows. Programming Experience - Windows. I've done both Linux and Windows programming, and in years past (with techs like MVC and ATL - bleh!) it really would have been a toss up. But in the last few years, Microsoft has moved ahead with techs like WCF, WPF/Silverlight, EF4, etc. There are analogous tools for Linux, integrated into one platform. I've seen people argue that Visual Studio is "locked down" so you're stuck with what MS gives you, but that isn't true. I've written several extensions for VS to do company-specific things - the platform is very extensible. You can write a tool to do anything that isn't already done by VS (like my favorite, ReSharper). Support - Toss up. Linux has much more online support, but it's spread out all over the place. If you've got some Google-fu skills, you'll find the answer. Microsoft has less support, but it's more centralized. A lot of people make the argument that just being able to call someone for support is necessary, but generally if professional programmers can't figure it out, it's a bug. And it's not like MS is going to fast-track a bug for you unless you routinely write 6 figure checks. Here[^]'s a bug that I've been dealing with for months. Edit: Forgot to add: My personal setup is a Windows 7 Pro PC with gobs of ram and a copy of VirtualBox, for those occasions where Linux is a better choice for a task.

    Before .NET 4.0, object Universe = NULL;

    modified on Tuesday, April 26, 2011 4:23 PM

    The Lounge linux security help question

  • Wanna drive across the U.S???
    H Hired Mind

    Just priced a flight from NYC to LA, and it was $629 and 6 hours time. These guys must have a money tree...

    Before .NET 4.0, object Universe = NULL;

    The Lounge com question

  • Hey I'm "Regular"!
    H Hired Mind

    Wow - the website can tell that? Codeproject's coders truly are wizards...

    Before .NET 4.0, object Universe = NULL;

    The Lounge

  • Office Pranks
    H Hired Mind

    Place a personals ad on Craigslist, with their picture, in the men seeking men section.

    Before .NET 4.0, object Universe = NULL;

    The Lounge

  • IE Invisible DIV Bug
    H Hired Mind

    aspdotnetdev wrote:

    The fix we decided on was to put a black image behind the images so that the transparent pixels will appear to be black.

    Could you use a background color that was 1 RGB value from from the transparent color? (e.g. #02050B instead of black) I think the difference wouldn't even be perceptible at that point.

    Before .NET 4.0, object Universe = NULL;

    The Weird and The Wonderful html css com architecture help

  • Bored of if..else?
    H Hired Mind

    LOL @ three halves :)

    Before .NET 4.0, object Universe = NULL;

    The Weird and The Wonderful csharp collaboration question

  • "Stephen Schnieder. Death of an unrepentant hypocrite"
    H Hired Mind

    Bob Emmett wrote:

    However, if you watch the whole of the press conference[^] you will note that, at the end, in spite of his 'tough questioning', Mr. McAleer is safe and well, seated among the audience, no gun to his head.

    Umm, it (the full press conference) clearly shows security guards revoking his pass, asking for cameras to be switched off, and him being "invited to leave."

    Before .NET 4.0, object Universe = NULL;

    The Back Room lounge com security career

  • try-catch code convention [modified]
    H Hired Mind

    They've implemented the most efficient source of Mystery Errors ever devised.

    Before .NET 4.0, object Universe = NULL;

    The Weird and The Wonderful career

  • YAVH - Yet another VBA horror
    H Hired Mind

    Eeeewww. Yeah I would definitely change that code. But if you do change it, make sure you change it to use query parameters instead of building SQL from scratch. It's not so bad when the tablename is hard-coded into the method itself but if passed in from outside, it's a huge security hole. (Some future slave might decide to call the method with user-provided input, and it won't be properly escaped) It's so hard to find good slaves today...

    Before .NET 4.0, object Universe = NULL;

    The Weird and The Wonderful database help career

  • What is best way to convert desktop app to web app?
    H Hired Mind

    Have a look at the MVVM pattern that is in common use in WPF coding. It's basic selling point is that it completely separates the UI from the business logic. You could re-code separate pieces of the app over time, with no change on the UI. This would allow your users to act as a last line of defense against UI-breakage ("Hey, after the last update, XYZ broke"). Then, when you're finished with this separation, your Web UI will be a mechanical process of coding UI's for each piece. You said that the app is multithreaded. Does that imply that it is computationally intensive? All business logic will be centralized so your server will have to be beefy enough to deal with it.

    Before .NET 4.0, object Universe = NULL;

    Windows Forms question csharp wcf design collaboration

  • It wouldn't be a Visual Studio release without an entire overhaul of the Help system.
    H Hired Mind

    I find the help system itself to be more stable, since (for me, anyway) it's running on MS servers - my context-help goes directly to FireFox and brings up a MSDN page. The gripe I really have about the help system is the same one I've had for years: the content. - Some methods throw exceptions that aren't in the help - Most of the help assumes that you already know everything about the class already. - Examples are incredibly simplistic, even for advanced classes (some of them just de-reference and print a few properties of the class, instead of showing me how the class is used in real life). Example is the WPF Treeview control - the data is created and bound in the XAML - who would do this?!?!? There is no example showing data bound from a DataContext, or MVVM style - Not enough thought has gone into linking classes to other classes, the way a real programmer uses them. Example: Exception class should have links all over it to AppDomain.UnhandledException. - non-working links. Example: String class. Click on String Operators. What's sad about this one is that a couple of these can be automated to ensure code-coverage. All that being said, it is getting better than years past. But once you've used Borland's Delphi/C++ Builder help, using MS's help is just depressing.

    Before .NET 4.0, object Universe = NULL;

    The Lounge question announcement csharp visual-studio com

  • It wouldn't be a Visual Studio release without an entire overhaul of the Help system.
    H Hired Mind

    I post this not to just be contrarian, but to encourage you - there are setups that work: I use VS2010 every day in a production environment, with hardly a trouble (perhaps once a month it crashes on me), and find it to be more stable than 2008 by far. So keep digging! I'm using the latest hardware, drivers, and Win7 Pro, if that makes any difference. (It does crash every time if I try to build a project for the .NET Compact Framework - in upgrading to 2010 and removing 2008, somehow I got that platform munged. Luckily I only do embedded programming for fun :))

    Before .NET 4.0, object Universe = NULL;

    The Lounge question announcement csharp visual-studio com

  • Eunuch in jail, officials can't decide on gender
    H Hired Mind

    Wow - you'd think the Y chromosome (or lack thereof) would be a dead giveaway...

    Before .NET 4.0, object Universe = NULL;

    The Lounge com

  • CD Ripping
    H Hired Mind

    I 2nd the CDEX recommendation. I had about 300 CDs to rip, and I got through them in about 3 days by doing it in the background while I was working. It did all the gruntwork for me, once I got it configured: just pop a new CD in when the tray opens, click a button, repeat.

    Before .NET 4.0, object Universe = NULL;

    The Lounge data-structures question

  • I am back!
    H Hired Mind

    d@nish wrote:

    Hitman Codename 47

    Man what a great game that was. If you liked it, you'll like the "Tom Clancy's Splinter Cell" as well. (10 USD on Steam)

    Before .NET 4.0, object Universe = NULL;

    The Lounge question

  • What is the word or words
    H Hired Mind

    GoogleBaters.

    Before .NET 4.0, object Universe = NULL;

    The Lounge question csharp android com tools
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups