Thread: How to write back to a temp file keeping the orginal or modifed org file format?

  1. #31
    Banned
    Join Date
    Aug 2017
    Posts
    861
    Quote Originally Posted by Hodor View Post
    I give up. You obviously have no intention of learning or even trying to become a better programmer.
    My coding style is perfectly fine just because it does not measure up to your way of thinking does not make it wrong. if you think it does then you are the one with issues not me.

  2. #32
    Banned
    Join Date
    Aug 2017
    Posts
    861
    looks to me that no one in here can even answer my question, other than Guest so you're all just looking for something to criticize about what I posted in here then telling yourselves and me I am not wanting to learn programming, when you and the others cannot even actually help me with the formatting of text to an output file, and I am the one being marked as a crappy programmer. hahaha

    and Hodor says what? He cannot even give me an answer to formatting to a file, he is just stuck on tab vs spaces. Have you been watching silicon valley?
    Last edited by userxbw; 11-15-2017 at 06:16 PM.

  3. #33
    misoturbutc Hodor's Avatar
    Join Date
    Nov 2013
    Posts
    1,787
    I don't recall mentioning tabs vs. spaces. Are you feeling ok?

  4. #34
    Lurking whiteflags's Avatar
    Join Date
    Apr 2006
    Location
    United States
    Posts
    9,612
    Quote Originally Posted by userxbw View Post
    looks to me that no one in here can even answer my question, other than Guest so you're all just looking for something to criticize about what I posted in here then telling yourselves and me I am not wanting to learn programming, when you and the others cannot even actually help me with the formatting of text to an output file.
    Part of that is your fault. We haven't gotten new code from you in a while.

    Did you follow any of Adrian's advice? If so, how? It's not as though anyone can guess how you changed things.

    If you want to get back on topic stop bickering, and post where you are with your problem.

  5. #35
    Banned
    Join Date
    Aug 2017
    Posts
    861
    Quote Originally Posted by Hodor View Post
    I don't recall mentioning tabs vs. spaces. Are you feeling ok?
    does that even deserve a response? it is a metaphorical statement or an analogy if you will. and you're calling me stupid? hahahaha

  6. #36
    Lurking whiteflags's Avatar
    Join Date
    Apr 2006
    Location
    United States
    Posts
    9,612
    Quote Originally Posted by Hodor View Post
    I don't recall mentioning tabs vs. spaces. Are you feeling ok?
    I do think he is slowly morphing into cyberjupiter. It is haunting, the difference between then and now.

  7. #37
    Registered User
    Join Date
    May 2010
    Posts
    4,632
    Code:
    if ( true)
    {
    do this
    }
    else if ( true )
    {
    do this
    }
    else
    {
    do this
    }
    // when it is legal to do this
    if ( true)
        do this
    else if ( true)
       do this
    else
      do this
    Who has been talking about legal? The talk has been mainly about consistency. And while that code is legal it is not consistent. And I'm not talking about the use or lack of use of the braces. The code itself not consistently formatted.

    This would be more consistently formatted.
    Code:
    if ( true )
    {
        do this
    }
    else if ( true )
    {
        do this
    }
    else
    {
        do this
    }
    // when it is legal to do this
    if ( true )
        do this
    else if ( true )
       do this
    else
      do this

  8. #38
    Banned
    Join Date
    Aug 2017
    Posts
    861
    Quote Originally Posted by whiteflags View Post
    I do think he is slowly morphing into cyberjupiter. It is haunting, the difference between then and now.
    How to write back to a temp file keeping the original or modified org file format?


    is what I asked and what did I get? surely not that.

    the difference is I am going into unknown territory, I come in here to then ask about how to and all I get is your "spacing and tabs" need work and sidestepping the questions I ask.
    Last edited by userxbw; 11-15-2017 at 06:32 PM.

  9. #39
    Lurking whiteflags's Avatar
    Join Date
    Apr 2006
    Location
    United States
    Posts
    9,612
    Yeah, well, again...

    Quote Originally Posted by whiteflags
    Part of that is your fault. We haven't gotten new code from you in a while.

    Did you follow any of Adrian's advice? If so, how? It's not as though anyone can guess how you changed things.


    If you want to get back on topic stop bickering, and post where you are with your problem.

  10. #40
    Banned
    Join Date
    Aug 2017
    Posts
    861
    Quote Originally Posted by whiteflags View Post
    Yeah, well, again...
    so in the mean time all of you decide to criticize my "spacing and tabbing skills" while waiting anxiously on the edge of your seats just to see what I have done so all of you can just go back to criticizing my "spacing and tabbing skills" because that seems to take more precedence over the code itself working the way it is suppose to.
    And that is how you pass the time of day?

    I've been busy researching and reading up is you must know.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Append a temp file to a log file
    By Randellk02 in forum C Programming
    Replies: 9
    Last Post: 11-07-2010, 01:46 PM
  2. How to write image data to binary PGM file format(P5)?
    By tommy_chai in forum C Programming
    Replies: 6
    Last Post: 11-03-2007, 10:52 PM
  3. handling file rb+ (write back into self)
    By IsmAvatar2 in forum C Programming
    Replies: 5
    Last Post: 01-23-2007, 09:47 PM
  4. Deleting a temp file
    By Oldman47 in forum C++ Programming
    Replies: 1
    Last Post: 01-02-2007, 07:04 PM
  5. How to read/write 8xp file format...
    By supertoad in forum Tech Board
    Replies: 2
    Last Post: 04-29-2005, 04:18 AM

Tags for this Thread