Page 1 of 2 1 2 LastLast
Results 1 to 15 of 18

Thread: paying for an c++ work.Little experience of coder i need

  1. #1
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747

    paying for an c++ work.Little experience of coder i need

    So the whole thing is that i have source code and everything which is needed for project.u just need to compile and connect ,and if it works i will pay for your work.

    if anyone is avaliable reply me,thanks




    T-PAIN is gay.
    Confirmed 10/10.

  2. #2
    registered user MusicDemon's Avatar
    Join Date
    Apr 2009
    Location
    The Netherlands
    Age
    31
    Posts
    1,314
    Blog Entries
    5
    Native C++? Either way, I can compile it.
    Yours sincerely,
    MusicDemon

    Retired: Technical supporter / EuroBattle Programmer.

    My blog
    PvPGN Supporter (=Server software EBNet is using.)
    Warcraft III/TFT Supporter
    New Eurobattle.net pre-loader client.[
    My interview


    Made my day (Last update: 03-09-2012):
    Hidden Text click here to show

  3. #3
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747
    Leave me some your contact,msn/skype and well see to make it.




    T-PAIN is gay.
    Confirmed 10/10.

  4. #4
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747
    Looks like he doesnt respond :/ any other coder,i will pay..




    T-PAIN is gay.
    Confirmed 10/10.

  5. #5
    New User Archimonde^'s Avatar
    Join Date
    Apr 2012
    Location
    Hatay
    Age
    31
    Posts
    2
    why don't you just try on a computer lab or library or something like that? it's not that hard to compile and run a project. this is way too suspicious.
    facebook.com/seckin92

    twitter.com/seckin92

    seckin@akillirobot.com

  6. #6
    Administrator Cen's Avatar
    Join Date
    Sep 2006
    Location
    Slovenia
    Age
    32
    Posts
    15,685
    Blog Entries
    2
    Quote Originally Posted by Archimonde^ View Post
    why don't you just try on a computer lab or library or something like that? it's not that hard to compile and run a project. this is way too suspicious.
    an average or even above computer user does not know how to compile a program. Unless he's an actual programmer which he's clearly not.

    Undefeated Mad Balls Arena champion

  7. #7
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747
    Quote Originally Posted by Cen View Post
    an average or even above computer user does not know how to compile a program. Unless he's an actual programmer which he's clearly not.
    +1

    i need assistance with that..i kinda compiled to visual c++ sucescfuly..but now i need to make it from .dll to shared library .so ...who could do that for me..:/

    I fixed warnings etc..




    T-PAIN is gay.
    Confirmed 10/10.

  8. #8
    the roXor <3 Arbalest's Avatar
    Join Date
    Jan 2008
    Location
    above
    Age
    37
    Posts
    1,015
    try to put some details of what the application is supposed to do that should help understanding , u're using just the visual ? a consol application? did you try using qt? if so you should get ur dll files directly from qt sdk files once u compile it just double click on the .exe it would name the dll files u need then u run a search from ur files directly

  9. #9
    New User Archimonde^'s Avatar
    Join Date
    Apr 2012
    Location
    Hatay
    Age
    31
    Posts
    2
    Quote Originally Posted by Cen View Post
    an average or even above computer user does not know how to compile a program. Unless he's an actual programmer which he's clearly not.
    I see. But i cant stop myself from asking the question, how and why did anyone gets a source code and compiles it to use the software? If you're a programmer, you can compile it. An open source project, and you made a plug-in? No problem, you should be able to compile. Even an above-average computer user shouldn't need a source code i think. Isn't there a compiled version?

    Anyways, i'm not experienced in C++ very much (i use java a lot, i'd rather use c++ but school requires java, so i can't turn back into C++ before finishing my study) but i can try, and for the record i dont want any payment. This is not a process that requires payment, or i just don't know how things are going.
    No affence!
    p.s. i'm a computer engineering student.

    #edit : i realized that might be a homework or something like that but, still doesnt remove the question fully.
    Last edited by Archimonde^; 20th April 2012 at 11:55 PM. Reason: enlightenment
    facebook.com/seckin92

    twitter.com/seckin92

    seckin@akillirobot.com

  10. #10
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747
    WEll dunno how to expalin,i have .dll file and c++ project files ( source ),i just need to compile to shared library to .so format,so it can work for linux platform.I tryed with cygwin shell,fuck doesnt work..

    anyone have program for easier compile?




    T-PAIN is gay.
    Confirmed 10/10.

  11. #11
    Administrator Cen's Avatar
    Join Date
    Sep 2006
    Location
    Slovenia
    Age
    32
    Posts
    15,685
    Blog Entries
    2
    .dll won't help you because linux doesn't know them. You need full source code and compile it on linux with gcc. If it reports errors you need to recode the parts that are windows specific (if they use windows.h library or some others).

    Undefeated Mad Balls Arena champion

  12. #12
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747
    well mate,yes i have full source,and also files included for compiling,everything.i cant compile there on linux operating system because i dont know how to add include files.I have my own dedicated server and centos 6 there,still failed.If anyone knows,please let me know..




    T-PAIN is gay.
    Confirmed 10/10.

  13. #13
    Administrator Cen's Avatar
    Join Date
    Sep 2006
    Location
    Slovenia
    Age
    32
    Posts
    15,685
    Blog Entries
    2
    Depends which include files. If they are C++ native libraries you do not have to do anything since compiler will get them automatically. If they are custom libraries you need to add them in same directory as your source. But if they are windows specific libraries, then you need to recode the source and not use them.

    Undefeated Mad Balls Arena champion

  14. #14
    Registered User .DeitY.'s Avatar
    Join Date
    Jun 2008
    Location
    Heaven
    Age
    29
    Posts
    3,747
    Quote Originally Posted by Cen View Post
    Depends which include files. If they are C++ native libraries you do not have to do anything since compiler will get them automatically. If they are custom libraries you need to add them in same directory as your source. But if they are windows specific libraries, then you need to recode the source and not use them.
    Khm,dunno..they are same format files as source..i can upload you here if u could take a look,and guide me somehow,or if here anyone can compile for me...If needed,illpay,just gotta figure out crappy project..




    T-PAIN is gay.
    Confirmed 10/10.

  15. #15
    Administrator Cen's Avatar
    Join Date
    Sep 2006
    Location
    Slovenia
    Age
    32
    Posts
    15,685
    Blog Entries
    2
    ok, send me and I'll take a look

    Undefeated Mad Balls Arena champion

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Affiliates