Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old May 6th, 2008, 4:41 PM   #1
nannu
Newbie
 
Join Date: Apr 2008
Posts: 19
Rep Power: 0 nannu is on a distinguished road
$$$ Need C programmer for Operating Systems programs

Hello there. I was a financing major in school. I don't know that much about programming. Besides doing some very basic programs in C/C++. I need three little project done. I have been told that the projects are not that difficult, but not being a programmer, this does not help me. If you are interested, please contact me ASAP. This is very urgent. I am willing to pay. Please get back to me whenever you get a chance.
Thank You
nannu is offline   Reply With Quote
Old May 6th, 2008, 6:22 PM   #2
nannu
Newbie
 
Join Date: Apr 2008
Posts: 19
Rep Power: 0 nannu is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

Pleaseeeeeee, somebodyyyyyy.
nannu is offline   Reply With Quote
Old May 6th, 2008, 6:45 PM   #3
lectricpharaoh
Caffeinated Neural Net
 
lectricpharaoh's Avatar
 
Join Date: Jun 2005
Location: Dry west coast of Canada
Posts: 1,038
Rep Power: 5 lectricpharaoh will become famous soon enough
Re: $$$ Need C programmer for Operating Systems programs

I'm not sure if I'd be up for it, but if you give some details, such as what kind of program, you might get more responses.
__________________
And once again, Probability proves itself willing to sneak into a back alley and service Drama as would a copper-piece harlot.
- Vaarsuvius, Order of the Stick
lectricpharaoh is offline   Reply With Quote
Old May 6th, 2008, 7:45 PM   #4
Ancient Dragon
PFO God In Training
 
Ancient Dragon's Avatar
 
Join Date: Jun 2005
Location: near St Louis, MO. (USA)
Posts: 550
Rep Power: 4 Ancient Dragon is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

>>I was a financing major in school
So what is your major now? Are you still in school ? Are you asking someone to write programs for you to turn in as your own at school ? You know that's cheating and will teach you nothing. I suppose you might say I'm questioning your motives for getting these programs.
__________________
True Terror is to wake up one morning and discover that your high school class is running the country - Kurt Vonnegut Jr.
Ancient Dragon is offline   Reply With Quote
Old May 7th, 2008, 11:54 AM   #5
nannu
Newbie
 
Join Date: Apr 2008
Posts: 19
Rep Power: 0 nannu is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

Hello there
I have been out of school for years now. I have been working for a private financing company for a while now; Nothing too big and nothing too special. What I love about little companies is that they give us the opportunity to have a close relationship with all of the employees. Our IT department is made up of 3 guys and I interact with them a lot. After seeing all of the cool stuff they can do, I thought that I would give the course a shot. The course that I am taking is not for credit or anything. Like I said before, I just signed up for the class to help me better understand Programming even though my studies were related to financing/ Acc. But after taking the class, I see that for me personally, Programming is very challenging and I have even more respect for what the guys do at my work. They work long hours and are always tired, I used to wonder what was up with that, but now I understand. I have an easier time looking at the programs and then understanding what is going on, but besides that how to write it up and all, that is not happening. I have been on other forums and tried to get some help, but am not getting very much feedback for the three programs that I listed. I am kind of disappointed at myself for not getting it, I am always up for a challenge but I can't believe I am saying this, but this time I got by Bu** kicked. I need these done, because the class is only a few weeks long. I am listing the programs that need to be completed below. I should have done that earlier. I really hope someone can help and hopefully it can probably be a challenge for someone out there to refresh their memory. Hope to hear from someone soon.
Thank you guys

***********************************************
I HAVE BEEN TOLD THESE MUST BE DONE IN C.
***********************************************
Program 1:
Mutual Exclusion
Write a program with two threads sharing a variable. One threads repeatedly
subtracts a constant values from the shared variable, while the second
repeatedly adds the same value. If the number of transactions that the threads
execute is the same, then the value of the shared variable after the threads
complete should be the same as the initial value – that is assuming access to the
shared variable is mutually exclusive.

First write the program without any code to protect the critical section, and test it
with a large number of iterations (hopefully the final value should deviate from
the original). Then incorporate a mutex lock into the solution and test it again.
That should ensure data consistency, and the program output should confirm it.

**************************
Program 2:

Networking
You are to implement a multi-threaded server that logs all messages sent to it by
clients. In addition to the messages, the log includes a timestamp of every
message stored. Whenever the server receives a message from the client, it
outputs the entire log of messages to stdout. A log can be represented simply as
a character string with a maximum size of 1000 characters. Since all the threads
are sharing the log, you must protect access to it.


******************************
Program 3:
Write a program in C that will do the following.
- declare a structure with two fields, one of which must be a string (declared as a char*)
- create an array of 5 pointers to the structure declared, and then allocate memory for the structures ( that includes allocating memory for the fields)
- populate the array of structures with user-entered date.
- print all the structures ( perform this step again after the next step)
- sort the contents of the array on the string field ( this should not require copying of any data, just pointer manipulations)
Implement each of the steps, 2 through 5, as a function.
*************************************************

Last edited by nannu; May 7th, 2008 at 12:07 PM.
nannu is offline   Reply With Quote
Old May 7th, 2008, 3:10 PM   #6
Ancient Dragon
PFO God In Training
 
Ancient Dragon's Avatar
 
Join Date: Jun 2005
Location: near St Louis, MO. (USA)
Posts: 550
Rep Power: 4 Ancient Dragon is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

>>Programming is very challenging and I have even more respect for what the guys do at my
>>work. They work long hours and are always tired
All the programmers I have known are like that. Programming is not for the faint of heart.

Those do not look like newbe programs. The third one is faily simple but the other two require a fair amount of C knowledge as well as networking and threads.

Deposite $1,000,000.00 USD in my PayPal account and I'll write them for you That price IS negotiable.
__________________
True Terror is to wake up one morning and discover that your high school class is running the country - Kurt Vonnegut Jr.
Ancient Dragon is offline   Reply With Quote
Old May 7th, 2008, 3:23 PM   #7
mbd
Programmer
 
Join Date: Nov 2007
Posts: 86
Rep Power: 1 mbd is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

program 1 I would estimate 3 hours, program 2 6 hours, program 3 1 hour. That is a nice round 10 hours. I will do it at $50/hour.
mbd is offline   Reply With Quote
Old May 7th, 2008, 3:38 PM   #8
nannu
Newbie
 
Join Date: Apr 2008
Posts: 19
Rep Power: 0 nannu is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

Ok, now that I am conscious again. 1K for all three. Wow, I didn't think it was gonna be that much. I was thinking more like a $100 a piece. Wow that is steep. I am seriously shocked right now. With my low income of 30K per year including commission..... OK WOW. I'm still looking at that number to make sure that is what it says. I know when you say negotiable, you don't mean that low. But even at a $100 bucks a piece I am just stretching myself.

WAIT just a minute guys, are you just pulling my leg. I know I'm not a programmer, but is this what the programs would really go for. I've heard of people getting programs written for like $50 a piece, that is why I actually came here for help. Now Now lets not get greedy.

Is there anyone willing to do them for like below a $100 bucks a piece.
Thanks
p.s. Still in total shock
nannu is offline   Reply With Quote
Old May 7th, 2008, 3:47 PM   #9
Ancient Dragon
PFO God In Training
 
Ancient Dragon's Avatar
 
Join Date: Jun 2005
Location: near St Louis, MO. (USA)
Posts: 550
Rep Power: 4 Ancient Dragon is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

When you hire professional programmers it is going to cost you lots of money. To us this is a business, not Wheel Of Fortune where you can get something for nothing. If you want it done cheaply then either (1) write them yourself (preferable), or (2) get a college student to write them.
__________________
True Terror is to wake up one morning and discover that your high school class is running the country - Kurt Vonnegut Jr.
Ancient Dragon is offline   Reply With Quote
Old May 7th, 2008, 4:41 PM   #10
mbd
Programmer
 
Join Date: Nov 2007
Posts: 86
Rep Power: 1 mbd is on a distinguished road
Re: $$$ Need C programmer for Operating Systems programs

i am pretty sure ancient's million dollar (not thousand dollar) quote is pulling your leg.
mbd is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Frustrated Programmer (If I am even considered a programmer) csrocker101 Coder's Corner Lounge 13 Apr 1st, 2008 12:09 PM
Looking for programmer to help with SMS script! Ultima-X97 Paid Job Offers 3 Aug 24th, 2007 8:24 PM
Agricultural Data Systems programming job offer faheja Paid Job Offers 2 Dec 28th, 2005 7:38 AM
the best way to pass data between two programs nindoja C# 7 Dec 26th, 2005 11:54 PM
Confidence in Developing Programs noliviawalton Community Introductions 20 Jul 14th, 2005 2:51 PM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 12:11 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC