It's google related website for social networking. http://www.orkut.com/ basically it is a fair site for communicating and social activities.
i don't know if it's worth switching from facebook/twitter to orkut and am not a big fan of social websites but i made me a page on google's one =P
peace and all good stuff~
=)
Programmer, psp/ds/pc & mmo gamer, pink hater & other stuff girl
Monday, October 24, 2011
Friday, October 21, 2011
how am i supposed to move on?
three weeks earlier
well, the story is as follows:
i spent A LOT of time trying to solve a problem with C
if learning programming requires practicing
how am i supposed to improve my programming skills if i can't solve some kind of impossible-solution-looking problems??
within the time i was practicing, there was a problem which looked at the beginning so hard to got it and also there were some following problems related to that one and they looked much much much harder.
the thing is that i couldn't till now solve that damn problem
how am i supposed to learn if nothing seems as normal as programming >.<
and how am i supposed to move on if i'm stuck for almost a month and half still trying to solve that issue?
i'm really confused
and this really depressed me that i'm starting to hate the whole programming thing if i couldn't move a little single step forward.
any suggestions/strategies to follow??
or am i just a stupid person and not made for programming. *Whisper* i'm really scared of being that >.<
sometimes it really gets so hard to figure it out
and makes me feel im totally stuck and can't go any longer
when should i worry about my improvement way and when shouldn't i?
there must be some points. i can't make sure that i'm on the right track
i don't want to fail solving a problem which i already passed the level of.
it feels bad. i experienced that many times
don't feel like skipping any problems facing me to be sure that i'm doing well
=(
well, the story is as follows:
i spent A LOT of time trying to solve a problem with C
if learning programming requires practicing
how am i supposed to improve my programming skills if i can't solve some kind of impossible-solution-looking problems??
within the time i was practicing, there was a problem which looked at the beginning so hard to got it and also there were some following problems related to that one and they looked much much much harder.
the thing is that i couldn't till now solve that damn problem
how am i supposed to learn if nothing seems as normal as programming >.<
and how am i supposed to move on if i'm stuck for almost a month and half still trying to solve that issue?
i'm really confused
and this really depressed me that i'm starting to hate the whole programming thing if i couldn't move a little single step forward.
any suggestions/strategies to follow??
or am i just a stupid person and not made for programming. *Whisper* i'm really scared of being that >.<
sometimes it really gets so hard to figure it out
and makes me feel im totally stuck and can't go any longer
when should i worry about my improvement way and when shouldn't i?
there must be some points. i can't make sure that i'm on the right track
i don't want to fail solving a problem which i already passed the level of.
it feels bad. i experienced that many times
don't feel like skipping any problems facing me to be sure that i'm doing well
=(
Wednesday, October 19, 2011
stupid HCT stupid Omantel stupid life
STUPID HCT?? LOOONG STORY....... STUPID OMANTEL??? WHAT THE HELL IS THAT 24 HOURS 1 GB SERVICE?!!??! GROW UP DEAR OMANTEL.....STUPID LIFE, GOTTA GO TO SLEEP, I'M DONE!!! POSTING OVER PHONE..AND I AM VERY MAD AT THE MOMENT...SWEET DREAMS!
Thursday, September 1, 2011
Facebook under attack!!!
Hi~ long time no XD
anyway, i'm so excited to see what's going to happen to facebook. Anonymous are so interesting lately. They announced they're going to smash facebook underground. Personally for the time being it's a bit expected to succeed hacking facebook but some people would think like ... come on it's facebook impossible to hack it. but wait, SONY was hacked and some other websites were also hacked by anonymous. so would you re-think about it? XD
anyway there's a poll over there on the right to see what most of you has in mind.
peace & all good stuff~
=)
anyway, i'm so excited to see what's going to happen to facebook. Anonymous are so interesting lately. They announced they're going to smash facebook underground. Personally for the time being it's a bit expected to succeed hacking facebook but some people would think like ... come on it's facebook impossible to hack it. but wait, SONY was hacked and some other websites were also hacked by anonymous. so would you re-think about it? XD
anyway there's a poll over there on the right to see what most of you has in mind.
peace & all good stuff~
=)
Saturday, August 6, 2011
One of the good articles talking about 'How To Become A Programmer'
It's simply one of the most usefull articles I've ever read in Programming field.
I would love to share it:
http://www.arabic-os.co.cc/2011/08/blog-post.html
peace and all good stuff~
I would love to share it:
http://www.arabic-os.co.cc/2011/08/blog-post.html
peace and all good stuff~
Wednesday, August 3, 2011
Do you want to share? =D
I've got a book called 'C Programming: A Modern Approach', it's the text book students of C Programming use for refering. Since weeks back I've been reading this book to recall my knowledge in C and trying to catch some more information & experience. The main point now is 'Arrays section'. I've never learn arrays in C. I was only dealing with arrays in Java and they really look much nicer in Java than in C lols..
Anyway, there is a problem I was hitting on since couple of days and til now there is no answer.
let me show it to you:
To be honest I spent a long period to understand that code. I didn't start solving the problem until I got the idea about it =D
anyway, I want to share the question with you guys, I think it's fun for all of us to think and try to come with a solution or an idea about how the answer code will be.
Here's the exercise:
Modify the repdigit.c program (The above program) so that it shows which digits (if any) were repeated:
Enter a number: 93977
Repeated digit(s): 7 9
didn't figure it out yet but I'm still trying. Here's what I went through so far:
#include<stdio.h>
#define TRUE 1;
#define FALSE 0;
typedef int Bool;
main()
{
Bool digit_seen[10]={0};
Bool repeated_digit[10];
int digit;
long int n;
printf("Enter a number: ");
scanf("%d", &n);
while (n > 0)
{
digit=n%10;
if (digit_seen[digit])
{repeated_digit[digit]=digit;
}
digit_seen[digit] = TRUE;
n /= 10;
}
if (repeated_digit[digit])
{printf("Repeated digit\n\n");
printf("%d", repeated_digit[digit]);}
else
{printf("No repeated digit\n\n");
printf("%d", n);}
return 0;
}
it's a wrong answer and I've been changing it from the beginning to now =D
enjoy it =)
peace~
Anyway, there is a problem I was hitting on since couple of days and til now there is no answer.
let me show it to you:
/* Checks number for repeated digits */
#include<stdio.h>
#define TRUE 1;
#define FALSE 0;
typedef int Bool;
main()
{
Bool digit_seen[10]={0};
int digit;
long int n;
printf("Enter a number: ");
scanf("%d", &n);
while (n > 0)
{
digit=n%10;
if (digit_seen[digit])
break;
digit_seen[digit] = TRUE;
n /= 10;
}
if (n > 0)
printf("Repeated digit\n\n");
else
printf("No repeated digit\n\n");
return 0;
}
#define TRUE 1;
#define FALSE 0;
typedef int Bool;
main()
{
Bool digit_seen[10]={0};
int digit;
long int n;
printf("Enter a number: ");
scanf("%d", &n);
while (n > 0)
{
digit=n%10;
if (digit_seen[digit])
break;
digit_seen[digit] = TRUE;
n /= 10;
}
if (n > 0)
printf("Repeated digit\n\n");
else
printf("No repeated digit\n\n");
return 0;
}
To be honest I spent a long period to understand that code. I didn't start solving the problem until I got the idea about it =D
anyway, I want to share the question with you guys, I think it's fun for all of us to think and try to come with a solution or an idea about how the answer code will be.
Here's the exercise:
Modify the repdigit.c program (The above program) so that it shows which digits (if any) were repeated:
Enter a number: 93977
Repeated digit(s): 7 9
didn't figure it out yet but I'm still trying. Here's what I went through so far:
#include<stdio.h>
#define TRUE 1;
#define FALSE 0;
typedef int Bool;
main()
{
Bool digit_seen[10]={0};
Bool repeated_digit[10];
int digit;
long int n;
printf("Enter a number: ");
scanf("%d", &n);
while (n > 0)
{
digit=n%10;
if (digit_seen[digit])
{repeated_digit[digit]=digit;
}
digit_seen[digit] = TRUE;
n /= 10;
}
if (repeated_digit[digit])
{printf("Repeated digit\n\n");
printf("%d", repeated_digit[digit]);}
else
{printf("No repeated digit\n\n");
printf("%d", n);}
return 0;
}
it's a wrong answer and I've been changing it from the beginning to now =D
enjoy it =)
peace~
Tuesday, June 28, 2011
Linux!!!
Hi, how are you? =)
I have something new on my laptop, it's Linux operating system =D
I've installed Ubuntu version and there was a variety of fails before I reached my Desktop there XD . Now I'm writing this post over ubuntu =)
I was really impressed by the set of softwares, both embedded and available to download. Some examples: LibreOffice, internet messenger, media, firefox and more.
I liked a property that's called 'Workspace switcher'. It's really nice benefit of the system, where user can easily switch among the applications running at a session.
Here is a screenshot: XD
And, you can very easily take a screenshot by just one step. Hit the Printscreen button(PrtSc) and you're done. Name it and save it.
I loved the system I really did. May I mention that it's very very simple?!
Almost forgot, if you liked to try it without installing, YOU CAN. Linux is unbelievable isn't it?XDDD
peace and all good stuff~
I have something new on my laptop, it's Linux operating system =D
I've installed Ubuntu version and there was a variety of fails before I reached my Desktop there XD . Now I'm writing this post over ubuntu =)
I was really impressed by the set of softwares, both embedded and available to download. Some examples: LibreOffice, internet messenger, media, firefox and more.
I liked a property that's called 'Workspace switcher'. It's really nice benefit of the system, where user can easily switch among the applications running at a session.
Here is a screenshot: XD
And, you can very easily take a screenshot by just one step. Hit the Printscreen button(PrtSc) and you're done. Name it and save it.
I loved the system I really did. May I mention that it's very very simple?!
Almost forgot, if you liked to try it without installing, YOU CAN. Linux is unbelievable isn't it?XDDD
peace and all good stuff~
Subscribe to:
Posts (Atom)