Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 3,221 total)

  • RE: Developers, developers, developers

    calhorg (3/11/2014)


    Taking a slightly different tact, I don't see myself doing development on an iphone. Apparently neither does the big MS. I've heard it stated that MS suggests developers stick...

  • RE: Copy file to folder with current date

    Jeff Moden (3/11/2014)


    Gary Varga (3/11/2014)


    Jeff has a great point and it shouldn't be an issue but please note:

    Applies To: Windows 8, Windows Server 2008, Windows Server 2012, Windows Vista

    That's what...

  • RE: Copy file to folder with current date

    Jeff has a great point and it shouldn't be an issue but please note:

    Applies To: Windows 8, Windows Server 2008, Windows Server 2012, Windows Vista

  • RE: Copy file to folder with current date

    bruce 1565 (3/11/2014)


    Get-ChildItem "D:\Solomon\Solomon IV\EventLog\DD500*.log"| Where-Object {$_.CreationTime -gt (Get-Date).Date} | Copy-Item -Destination "C:\Temp\Emailogs"

    There you go. Bruce 1565 has provided a far more elegant solution.

    I still prefer "_.CreationTime.Date -eq" over ".CreationTime...

  • RE: Developers, developers, developers

    Tobar (3/11/2014)


    While most of this audience aren't in the development space, some may be

    I am certainly one of those. I am quite enamored with sqlservercentral, and I am sure this...

  • RE: Developers, developers, developers

    IceDread (3/11/2014)


    ...One thing of note thou, big old companies are slow to move on to new tech. Some makes purchase but it's not common that they will on their own...

  • RE: Developers, developers, developers

    I am still waiting for a demand for the development of mobile line of business (LOB) applications in the enterprise market. I believe it is occurring in some sectors and...

  • RE: Copy file to folder with current date

    Here is how I built it up:

    #Loop through each file displaying it's creation time

    Foreach($f in Get-ChildItem "D:\Solomon\Solomon IV\EventLog\DD500*.log")

    {

    Write-Host $f.CreationTime

    }

    #Loop through each file displaying it's creation time (only...

  • RE: Continuous Delivery

    I agree that a key concept of Continuous Delivery (CD) is that CD <> Continuous Release.

    Not all development deliveries are suitable releases and the criteria for a development delivery is...

  • RE: An Integrated Process for Software Delivery.

    I find it frustrating that, from the software development side, when attempting to engage the DevOps (under whatever moniker) to find out how the development team can deliver in a...

  • RE: One size does not fill all

    Microsoft Access anyone??? :unsure:

  • RE: One size does not fill all

    A lot of this discussion appears to be based upon a single application utilising a single database. It often starts that way, however, that can easily change.

    This leads neatly to...

  • RE: Geeky Entertainment

    chris.puncher (3/7/2014)


    Jennifer Levy (3/5/2014)

    And (I know there has been talk about this for years, but...) they REALLY need to do Good Omens by Terry Pratchett and Neil Gaiman. But...

  • RE: Byte Me: Bugging Out

    calhorg (3/5/2014)


    Seems to me these things used to get squashed "with the next release." Then the stomping happened about every six months. Now they are sprayed weekly where I work....

  • RE: Is Rolling Back The Same as Failing?

    I am inclined to disagree with everyone and yet I feel that I agree too. I guess I am in a contrary mood today.

    Was it a success? Yes.

    Was it a...

Viewing 15 posts - 2,506 through 2,520 (of 3,221 total)