Well I try to be realistic with issues, not all facts that I present here are factual. I do research in my mind. Brain-storming is a power within, wealth. I love to talk about technology, telecommunications and domains.
Other industries I'd love to leave a mark include housing and transport.
Techies- members of the tech cult. You will see them, everywhere in town. A sign of one is a bag-pack on their back. That's a laptop they're carrying back there. Quite a healthy practice to walk with weights all over in town. Of these techies there is coders and non-coding techies. I'll blog about the coding ones and leave the rest for another day.
These are of two types
CODERS COPY & PASTE(C-ctrl+ctrlv): These are the fortunate ones to discover google. They somehow learnt that whenever you consult google, you will always get free code for whatever you want. They are bright and are propelled by a middle's man spirit (or brokers mindset - for lack of a worse word). They are genius and at the slightest eavesdrop of an idea, they are quick to look for the REAL coders to 'work with them' on the same <== not so cool. This is just the era of 'bus-stop entrepreneurs' who earn from 'filling a bus/mat'. The work done by the same is nil but they feel they deserve a pay for making people board a mat.smh! C&P coders are no better.
CODERS-from scratch(CFS): These appreciate that coding is a practice of creativity and the more you subject yourself to coding the better it feels to be called a coder. They are mostly pushed by obsession to learn and create stuff from what they've learnt. They understand what they're doing and are what everybody is looking for.
I'd thought of creating a company/group/movement called from-scratch ™ where only people who do stuff from scratch synergize (work together).
Interestingly, Coders from scratch are not many and everybody is looking for them. Among these few coders many don't have resources (The needed for them to get up and do stuff). On the other side the C&P geniuses are highly alert with all it takes to be in the know of an idea that could be floating in the hands of an ignorant genius. smh!
Seriously if you think we can start something ping me and let me know what.
PS: CFS can check out africacoders a real coders repository coming up soon. Let's build solutions that touch lives. I am btw ;)
Case1 : Somebody created a page on facebook. It's their personal fanpage. They are your friend and so they asked you to 'like' their page. You had to in order to maintain you relationship, sorry :-\ (you had to like)
Case 2 : Your other friend recently started a start-up and on the day they found you online (on chat) they requested you to do the same and like their page. Mind you you don't know why, how it helps you or worse, you may not even like the page in reality but cause of friendship you liked.
Case 3 : Your friend asked you to like a page so that their chances of winning something fore referring likes would increase. You wanted them to win the prize and so you joined their quest to winning the prize (and then congratulate them later)- not bad that's being a well wisher.
The word like-verb according to the dictionary on reference.com means to find agreeable of to take pleasure in. Recently there's been an increased craving of people wanting likes on Facebook pages.Don't mistake me for trying to tell you not to obey your 'friends' favor requests, they are your friends whom you choose.
My beef, if any, would be on the owners of the pages. I know you're happy counting likes and that translates to a wider audience and eventually you have a platform to influence others.
There are a few reasons why this won't work for the people who wanted likes from anybody
1. Interests: The people who end up in the sum of your 'likes' have no interests there. Don't market beef to vegetarians please.
2. Adverts: There are adverts and on Facebook they can be targeted to a people with a certain interest. Your adverts will always end up with the wrong kind of people who liked a page but in reality have not the slightest interests similar with the liked pages.
3. Growth: I like to think, "Rome was not built in a day". The part of this which i like is that there's the joy that is brought by growth; normal growth. Getting a thousand likes a week is enjoyable but the rate of growth won't last. It matters, it gives you a history, a story to tell. There's a normal growth curve which is observed by every growing entity/Org, yours is no exceptional.
A perfect example of pushing a product users is G+, they literally registered people physically while people register themselves on twitter and continue to grow the network by word of mouth. Look at pinterest, It's become so popular yet no much effort was used to sign up users (I presume) Facebook itself grew as it's usage spread among friends.
Or simply chema chajiuza kibaya chajitembeza
So to my point, create a product or service that touches lives and the people will like it. Naturally. I will, be all ears,
var input=prompt("Enter Course Name, Grade and credit hours as shown in the text field below of click okay with no data to terminate.","Course/Grade/Credit hours");
if (input!=null && input!=" "){
var mySplitResult = input.split("/"); // splits the input using by the '/' positions
var input=prompt("Enter Course Name, Grade and credit hours as shown in the text field below of click okay with no data to terminate.","Course/Grade/Credit hours");
if (input!=null && input!=" "){
var mySplitResult = input.split("/"); // splits the input using by the '/' positions
After clicking the start button, you're asked to say the number of subjects you should input- good
It prompts you for the 5 subjects to be entered in the format 'Course/Grade/Credit hours'- good
after doing that It's supposed to compute the totals of all the subjects you entered, unfortunately it only does the computation of the last subject, care to help?
//function start is called when the start button is clicked on the page
var input=prompt("Enter Course Name, Grade and credit hours as shown in the text field below of click okay with no data to terminate.","Course/Grade/Credit hours");
if (input!=null && input!=" "){
var mySplitResult = input.split("/"); // splits the input using by the '/' positions
Once the course grades have been stored, the page should compute the student's overall GPA. According to the XYZ University Bulletin, grade point averages are computed as follows:
1. Grade points (a.k.a. quality points) are assigned to each course based on the grade and number of credit hours:
A yields 4 points for each hour
B+ yields 3.5 points for each hour
B yields 3 points for each hour
C+ yields 2.5 points for each hour
C yields 2 points for each hour
D yields 1 point for each hour
F, AF, and WF yield 0 points for each hour
2. The grade point average (a.k.a. quality point average) is computed by dividing the total number of grade points earned by the total number of credit hours.
For example, suppose a student entered the following course information (with each line entered in a different dialog box):
THL100 B+ 3
PHL107 A 3
ENG120 C+ 3
MTH245 A 4
CSC221 A 3
The total number of grade points earned by this student is
Dividing this total by the number of credit hours completed yields a GPA of 58/16 = 3.625.
Your page should display the total number of grade points, number or hours, and GPA, as well as all of the course information in a readable form. This information should not be displayed in the page until all user input has been processed. For example,