Computer Programmers Please Come In

Daily chitchat.

Moderators: Moderators, Junior Moderators

Forum rules
This General Forum is for general discussions from daily chitchat to more serious discussions among Somalinet Forums members. Please do not use it as your Personal Message center (PM). If you want to contact a particular person or a group of people, please use the PM feature. If you want to contact the moderators, pls PM them. If you insist leaving a public message for the mods or other members, it will be deleted.
caburiye1
SomaliNet Heavyweight
SomaliNet Heavyweight
Posts: 1831
Joined: Mon Jul 04, 2011 6:46 pm

Computer Programmers Please Come In

Post by caburiye1 »

If there is any Computer Programmer here I need your help. If you help me on this project and we succeed, there would be a a descent gift for you.

I want to create a little program on Microsoft Access 2010 for Xalaal Meat credit/ dayn enteries.

I need to create a program that would allow me to enter the

1) purchased on credit items ( hilib, caano, sonkor etc)
2) amount of money for each item
3) total balance ( either automatic or can allow me to sum it up.)
4) can allow me to pull up a customer by name or by ID
5) Can allow me to view the list of customers and the amount owed by each of them in one list.

What can I do? I know it is possible to create such a program on Microsoft access. Pm me or ask me to pm you or post the instruction here whatever works.
caburiye1
SomaliNet Heavyweight
SomaliNet Heavyweight
Posts: 1831
Joined: Mon Jul 04, 2011 6:46 pm

Re: Computer Programmers Please Come In

Post by caburiye1 »

I can't believe there is no single computer Programmer in here. Somalis are really not good at technology. Maybe because we are lazy and don't want to think. I being one of them.
caburiye1
SomaliNet Heavyweight
SomaliNet Heavyweight
Posts: 1831
Joined: Mon Jul 04, 2011 6:46 pm

Re: Computer Programmers Please Come In

Post by caburiye1 »

still waiting for Programmers
User avatar
Rightwing
SomaliNet Super
SomaliNet Super
Posts: 9248
Joined: Mon Dec 23, 2002 7:00 pm
Location: Maqaamka lagu xadreeyo MEDED, MEDED
Contact:

Re: Computer Programmers Please Come In

Post by Rightwing »

Why do you want Microsoft Access 2010 !? i think you have to consider C# or Java so developers can help you. if you need our help you must visit the right section:
viewforum.php?f=3
Fortran
Posts: 44
Joined: Tue Mar 10, 2009 2:02 pm
Location: Rock City

Re: Computer Programmers Please Come In

Post by Fortran »

I have notice most somalies study computer networks, I have met few programmers and most are beginners.

For solving you're problem: Think of you're problem as three separate entities that interact. Customers, Products and Order(transaction between the Customers & Products). This task won't require any programming skills, basic computer literacy


-Start with drupal. Drupal is open source CMS that can support small scale shopping cart.
-Investigate shopping cart module(add on), like ubercart.
-look into Views module(add on), views module will allow you to manage customers, products, and orders.

or look into third part vendor like Shopify, perfect for small scale. http://www.shopify.com
User avatar
afisoone
SomaliNet Super
SomaliNet Super
Posts: 5509
Joined: Wed Jul 22, 2009 9:46 pm
Location: We all want to become president even though Amisom controls Mogadishu

Re: Computer Programmers Please Come In

Post by afisoone »

Fortran wrote:I have notice most somalies study computer networks, I have met few programmers and most are beginners.

For solving you're problem: Think of you're problem as three separate entities that interact. Customers, Products and Order(transaction between the Customers & Products). This task won't require any programming skills, basic computer literacy


-Start with drupal. Drupal is open source CMS that can support small scale shopping cart.
-Investigate shopping cart module(add on), like ubercart.
-look into Views module(add on), views module will allow you to manage customers, products, and orders.

or look into third part vendor like Shopify, perfect for small scale. http://www.shopify.com
:lol: :lol: :lol:
He asked basic stuff. It is easy to do it. What I don't understand is that does he want OOP or web App

Is this guy really need help? Or just want to have for sake of questions.....

Fortran says drupals. :lol: :lol: :lol: :lol: :lol:

Where you learn from programming mr Fortran.. It is funny to me Somalida qaarkood isma yaqaanaan walaahi. Yaa!..
User avatar
Rightwing
SomaliNet Super
SomaliNet Super
Posts: 9248
Joined: Mon Dec 23, 2002 7:00 pm
Location: Maqaamka lagu xadreeyo MEDED, MEDED
Contact:

Re: Computer Programmers Please Come In

Post by Rightwing »

drupals ! anba waan ka yaabay waxa meelahaas gaadhsiiyey Mr. Fartan! cabudhiye asked database based on access and I proposed c# and java.
caburiye1
SomaliNet Heavyweight
SomaliNet Heavyweight
Posts: 1831
Joined: Mon Jul 04, 2011 6:46 pm

Re: Computer Programmers Please Come In

Post by caburiye1 »

Rightwing wrote:drupals ! anba waan ka yaabay waxa meelahaas gaadhsiiyey Mr. Fartan! cabudhiye asked database based on access and I proposed c# and java.
:D
User avatar
IRONm@N
SomaliNet Super
SomaliNet Super
Posts: 5122
Joined: Tue May 01, 2001 7:00 pm
Location: Jannatul-Fardowsa
Contact:

Re: Computer Programmers Please Come In

Post by IRONm@N »

caburiye1 wrote:If there is any Computer Programmer here I need your help. If you help me on this project and we succeed, there would be a a descent gift for you.

I want to create a little program on Microsoft Access 2010 for Xalaal Meat credit/ dayn enteries.

I need to create a program that would allow me to enter the

1) purchased on credit items ( hilib, caano, sonkor etc)
2) amount of money for each item
3) total balance ( either automatic or can allow me to sum it up.)
4) can allow me to pull up a customer by name or by ID
5) Can allow me to view the list of customers and the amount owed by each of them in one list.

What can I do? I know it is possible to create such a program on Microsoft access. Pm me or ask me to pm you or post the instruction here whatever works.
you could do most of these on Microsoft excel, unless you want something sophisticated.

but if you gonna do a C or C++ you could set up an array of names or structures.

For example a simple C program calculating the totals of five items and their tax

#include <stdio.h>
int main ()
{
float item1, item2, item3, item4, item5;
float tax_rate, total_price, tax_payable;

printf ("please enter five items\n");
scanf("%f%f%f%f%f", &item1, &item2, &item3, &item4, &item5); //scans five items
total_price=item1 + item2 + item3 + item4 + item5;
printf("total= %.2f\n", total_price);
printf("please enter tax rate\n");
scanf("%f", &tax_rate); // scans tax rate
tax_payable= total_price * tax_rate/100;
printf("%f \n",tax_rate*total_price);
printf("%f \n",tax_rate*total_price+ total_price); // totals
system("pause");
return 0;
}
compile and run results

please enter five items
5
4
3
2
1
total= 15.00
please enter tax rate
.15
2.250000
17.250000
Press any key to continue . . .
User avatar
IRONm@N
SomaliNet Super
SomaliNet Super
Posts: 5122
Joined: Tue May 01, 2001 7:00 pm
Location: Jannatul-Fardowsa
Contact:

Re: Computer Programmers Please Come In

Post by IRONm@N »

when you talking about something as like a list of ppl each having their own file under their name, you need struct or an array.

sample struct program.

struct album
{
char number[MAXNUM];
char name[MAXNAME];
int year;
};


int main()
{

void printEmps(struct file, int);

struct file customer;

customer.social= 222335555;
strcpy(customer.number, "(612)-222-3333");
strcpy(customer.name, "Abdi Mohamed");

system("pause");

return EXIT_SUCCESS;

}
qeysfive
Posts: 1
Joined: Sat Oct 01, 2011 11:59 am

Re: Computer Programmers Please Come In

Post by qeysfive »

lol are you still looking for a programer let me know your email i help you out
if your still looking for someone to help
User avatar
Nanees
Posts: 0
Joined: Tue Sep 27, 2011 8:23 pm
Location: Chilling on Cardassian Beaches in a Burqini

Re: Computer Programmers Please Come In

Post by Nanees »

unless you have somebody on site who can troubleshoot access of c++ program if things go wrong, you're better off on excel.
Locked
  • Similar Topics
    Replies
    Views
    Last post

Return to “General - General Discussions”