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
D

Daniel Flower

@Daniel Flower
About
Posts
6
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Call Dispose on anything
    D Daniel Flower

    IEnumerable<object> objects = ...;
    foreach (IDisposable disposable in objects.OfType<IDisposable>())
    {
    disposable.Dispose();
    }

    (OfType<T> is an extension method for IEnumerable<T> in the System.Linq namespace)

    Clever Code question

  • Publication (web): Object reference not set to an instance of an object.
    D Daniel Flower

    That used to happen when the root folder of the website was '/' (rather than the default website name). Try changing the root folder (properties on web site project) and see if it works. If that's the problem, there was probably a hotfix or something for it (?)

    ASP.NET csharp visual-studio com debugging question

  • It all begins with a single atom
    D Daniel Flower

    Maybe I'm the only one who misunderstands quantum entanglement here, but how is this in anyway teleportation, or even communication? I thought that when two atoms where entangled, when you observe one, and then the other, you will both see the same thing. However, because you cannot influence the measured result, you cannot communicate. Furthermore, because you don't know when one has been measured, even if the collapse of the wave function happens instantaneously, a message using standard, slower than light communication would need to be transmitted. In other words, entanglement lets you see a random value, with the (amazing) catch that someone with the other particle will see the same random value, when they look.

    The Lounge com question announcement

  • //TODO: Comment parser
    D Daniel Flower

    But it only shows the tasks from files you have open, so if you want to view all the TODOs in your solution, you need to open every file, no?

    The Lounge algorithms question

  • Just in case you guys aren't watching...
    D Daniel Flower

    http://www.codeproject.com/KB/threads/ThreadingDotNet.aspx[^]

    The Lounge csharp

  • Irony.NET
    D Daniel Flower

    I'm currently writing a (GW) BASIC-to-JavaScript compiler using Irony.NET (CodeProject article coming soon). I think Irony.NET is a brilliant project as it allows you to write an interpreter without really needing to do any scanner/parsing implementation, and just having everything in .NET code makes it seem so much more convenient than using, say, LEX or something. It's a little scant on documentation though.

    The Lounge csharp com question discussion
  • Login

  • Don't have an account? Register

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