Looking for a coder or someone that can use python (will pay)

Discussion in 'Programming General' started by inpherus, Jan 2, 2012.

Looking for a coder or someone that can use python (will pay)
  1. Unread #1 - Jan 2, 2012 at 1:34 AM
  2. inpherus
    Joined:
    Jul 25, 2005
    Posts:
    3,301
    Referrals:
    4
    Sythe Gold:
    17
    Two Factor Authentication User Tier 1 Prizebox (5)

    inpherus inpherus-upgrades.com
    Inpherus Donor

    Looking for a coder or someone that can use python (will pay)

    It seems like a pretty simple task

    I have a long list of coding, that i need some numbers changed

    Theres about 30k lines that have "0000" in them, and i need them changed to be ascending (e.g. 0000-9999) I could do this by hand and change them 1 by 1, but thats fucked, is there anyone that can do some scripting shit to do it by program? let me know
     
  3. Unread #2 - Jan 2, 2012 at 8:52 AM
  4. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Looking for a coder or someone that can use python (will pay)

    This is easy to do as long as the characters are not encrypted.
    Upload the file n i'll make a proggy for it.
     
  5. Unread #3 - Jan 2, 2012 at 8:58 AM
  6. novice
    Joined:
    Jun 21, 2008
    Posts:
    111
    Referrals:
    0
    Sythe Gold:
    0

    novice Active Member

    Looking for a coder or someone that can use python (will pay)

    Something like this?

    Code:
    inputFile = open("input.txt", "r")
    
    lines = inputFile.readlines()
    inputFile.close()
    
    outputFile = open("output.txt", "w")
    
    for lineNumber, line in enumerate(lines):
        newLine = line.replace("0000", str('%04d' % lineNumber))
        outputFile.write(newLine)
        
    outputFile.close()
     
  7. Unread #4 - Jan 2, 2012 at 2:49 PM
  8. Nullware
    Joined:
    Jan 30, 2007
    Posts:
    1,761
    Referrals:
    4
    Sythe Gold:
    0

    Nullware Guru

    Looking for a coder or someone that can use python (will pay)

    I'd probably do it for free in Python if you be a little more specific or upload the file. Can't really uniquely number 30k lines with 0000-9999.
     
  9. Unread #5 - Jan 4, 2012 at 2:18 AM
  10. inpherus
    Joined:
    Jul 25, 2005
    Posts:
    3,301
    Referrals:
    4
    Sythe Gold:
    17
    Two Factor Authentication User Tier 1 Prizebox (5)

    inpherus inpherus-upgrades.com
    Inpherus Donor

    Looking for a coder or someone that can use python (will pay)

    Damnit, seems like i need one of you guys now, pmed all of you
     
  11. Unread #6 - Jan 4, 2012 at 4:38 AM
  12. iJava
    Joined:
    Nov 21, 2011
    Posts:
    1,197
    Referrals:
    11
    Sythe Gold:
    485
    Discord Unique ID:
    220055593568829441

    iJava .Previously known as RSGoldRush
    $200 USD Donor New

    Looking for a coder or someone that can use python (will pay)

    Must it be done in Python?
     
  13. Unread #7 - Jan 4, 2012 at 5:57 AM
  14. inpherus
    Joined:
    Jul 25, 2005
    Posts:
    3,301
    Referrals:
    4
    Sythe Gold:
    17
    Two Factor Authentication User Tier 1 Prizebox (5)

    inpherus inpherus-upgrades.com
    Inpherus Donor

    Looking for a coder or someone that can use python (will pay)

    any program that can do it i'll be happy with
     
  15. Unread #8 - Jan 5, 2012 at 3:22 PM
  16. Blupig
    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant

    Blupig BEEF TOILET
    $5 USD Donor

    Looking for a coder or someone that can use python (will pay)

    I can make you this too if you want, PM me. It'll take me like 10 minutes.
     
  17. Unread #9 - Jan 5, 2012 at 4:30 PM
  18. inpherus
    Joined:
    Jul 25, 2005
    Posts:
    3,301
    Referrals:
    4
    Sythe Gold:
    17
    Two Factor Authentication User Tier 1 Prizebox (5)

    inpherus inpherus-upgrades.com
    Inpherus Donor

    Looking for a coder or someone that can use python (will pay)

    It's ok guys, this can be closed I already found someone to do it for me, turned out to be 370k lines ( 5mb .txt file), thanks for the requests!
     
< Sqlmap | Script Editor? >

Users viewing this thread
1 guest


 
 
Adblock breaks this site