Thursday, December 10, 2009

Exam question - passing a pointer to a function

After doing that OOP exam, Is anyone wondering how to pass a pointer to a function?
Well if you are, check this site out it should help. Click Here.

Hope it helps.

Bitwise solutions

I found some resources that can help you with bitwise expressions. Check out this site BTP 300

Have fun

Bitwise operators

If anyone out there can teach me how to use bitwise operators in OOP please respond to my blog and teach me a thing or two. If I learn it within the next few days I will post something on my blog. Thanks everyone

Linked Lists Made Easy

Hi everyone,

If anyone out there has trouble grasping the idea of Linked Lists. Here is something that helped me.

The very thought of Linked lists and Stack and Queue and so on, was enough to make me tremble. Someone told me to check out the BTP 300 website to gain a better understanding of what linked lists were.

Believe me, if you check this site out you will not regret it, in fact you will thank me.

By the way there are a lot of other topics covered in the site which you can look at as well. Here is a link to the rest of the site

Have fun.

Wednesday, December 9, 2009

ANSWER to SVN at SCHOOL

Okay everyone I've figured it out. Just sign in to putty or SSH whichever you prefer.
Then type:
1. mkdir foldername
2. cd foldername
3. svn checkout ("repository")

The word repository should be replaced with the address of the repository. In this case "svn://zenit.senecac.on.ca/oop344".

Thank you and happy SVN'ing.

SVN at school, or on SSH

I came to school to study.
The first thing I tried to do is print out the notes from the school computers, only to realize that the GUI version of SVN doesn't exist at school. I looked around and found that there is a version of SVN installed on Putty and SSH. The only thing I have to do now is discover a way to use it.
If anyone has any insight, please shed some light.

BTW, If I figure out the solution I will keep you posted.


Thank you

Wednesday, September 23, 2009

A Stab at the Delete Key or DEL_KEY

Hi everyone in OOP Nation, I took the liberty of writing the switch for the DEL_KEY in the CIOL.C CODE. I hope you all take a look and give me some feedback on whether there are any bugs or not.

Here it is:
case DEL_KEY:
for(i=*offset+*curpos;str[i] != 0;i++){
str[i] = str[i+1];
}
if(*curpos != fieldlen - 1){
while(str[i] != 0){
str[i]= str[i+1];
}
}

Thanks for Blogging