Thursday, November 10, 2011

Website!!!

I've decided instead of making an app, to make a website for my self instead, this way I dont have to learn a new language, which I dont have the time to learn at the moment, and I can use this site as a portfolio to show off other projects I've done or the app if I come back to it.


Other than that, had mid terms this week, and we started php in the web tech class.(only done bitwise arithmetic so far)

Tuesday, November 1, 2011

nov 1st

So one of my friends from work who goes to the U of M was telling me about how he and a group of others came up with an idea for a mobile app, which got me thinking "what can I do that I can put in my portfolio". Something that I think will be easy enough, but still a strong enough concept that I can say "I did this" and still be proud of it, is a World of Warcraft add-on.

The first thing I have to do is learn quite a bit of Lua, which is the language that Blizzard uses to program add-ons.

Second, my initial idea is to make a program that adds all auctions that you have up for auction on the auction house and print how much money you would get if everything would sell at that point.


On other notes we start PHP next Monday, at the moment we are working on javascript.
Our first project was to create a table with the numbers 1-10 and their squares, then add all the  numbers in the column at the bottom of the page.
http://webspace.globeuniversity.edu/arthur.taylor/unit4.html

Thursday, October 27, 2011

whats going on...

I've been extremely busy the last 3-4 weeks, but everything has cooled down at least for the moment.

So what ive been up to then....

If I havnt said yet, for my Web Tech class, we are making a web site for the VFW(post 5555). At the moment im in charge of gathering pictures, and more of a non-assignment item, gathering information. At the present time we have a mock up of the home page, and I think someone is working on making mock ups for each page on the navigation bar. But anyway were having the person from the VFW come back so we can talk about what he wants on each page.

2 Ideas that I would personally like to pull off are a facebook page; I noticed that when the rep from the VFW was showing us a few other pages he liked a few had facebook pages.
The other is a meetup page, this comes from seeing that they have a lot of random events going on, and a meetup page would help them organize who is coming and who may be going , however, someone mentioned a calender might be better for that goal, which it may, but we will have to see how the rest of the site turns out.

I decided to drop Programming 2 and do an audit of Programming 1. I feel that I need to get a better understanding of the fundamentals of C++ before I can move on to more advanced things like searching and sorting.

We have been talking about many things in intercultural communications. For the last 2 weeks the topic has been on religion and its part in society, we had to write a paper on one of 3 different choices, mine was on negative portrayals of religion in film. I went further and focused on Atheism because the text book that I am using mentions them once by name and secularists twice(and make the mistake of saying secularists say "there is no god")

There was also an error in our text book that read something like "Moses was the founder of Judaism" My instructor asked me and another student(about another error he found) to write letters to the authors of the book about the errors we found in the book.

That is all for the moment

Tuesday, October 11, 2011

10/9

The semester started on Monday last week.

Programming 2: we started on recursion in the first week, its a rather simple concept, Its more/less a min loop, but instead of starting at the first case, it starts with the last case. An example is in the previous post; what we wanted to do for that assignment is find the greatest common divisor.
We first had to define the largest and smallest numbers in the list to find the modulo, the if statement asks "if this "smaller" number is bigger than this "larger" number then redefine "larger" and smaller(smaller and larger being the parameters) we then put larger against smaller for the modulo, if the answer we got was 0 we returned it as is, if it wasnt, we redefined larger to smaller and smaller to rem and then returned it.





Wednesday, October 5, 2011

10/5

Recursion program to find the greatest common divisor(update latter)

#include <cstdlib>
#include <iostream>

using namespace std;

int gcd(int a, int b);

int main(int argc, char *argv[])
{
    int larger;
    int smaller;
    int temp;
   
cout << "Hello, "
     << endl;
cout << "This program will calculate the greatest common divisor"
     << endl;


cout << "Please enter a first number number: "
     << endl;
cin >> smaller;
cout << "Please enter a second number: "
     << endl;
cin >> larger;

cout << gcd(smaller, larger) << endl;


   
    system("PAUSE");
    return EXIT_SUCCESS;
}

int gcd(int smaller, int larger)
{   
   
     int temp;
     int rem;
    
     if (smaller > larger)
     {
                 temp = larger;
                 larger = smaller;
                 smaller = temp;
}
     rem = larger % smaller;
     if (rem == 0)
      //if rem >9000....
        return smaller;
     else
         return(smaller, rem);
        

}

Wednesday, September 14, 2011

9/14

I got my laptop back today. A circuit in the hard drive severed, which made it unusable; so I did a fresh install of windows 7. Also something I didn't do was have a back up, which is pretty much a given for anyone in IT...guess I'm not in IT....
At the moment I have a few programs are up and running, mostly personal items, bur all the updates, drivers and such are done.

If I havn't put it down yet, I got my new schedule for school; my classes for this semester are as follows: Web technologies, programming 2 and inter-cultural communications.

I'M rather looking forward to it, in Web tech I'm going to start PHP. Its one of the languages I've seen almost universally through out applications. I was talking to a few friends who are in the IT field, and 2 of the 3 said that C++ is out of date as far as programming goes, and that most companies use ASP .net or Java(Script).
Inter-cultural leads to most psychology classes, which if anything is something like a minor for me(we dont have minors at MSB)


Note:
Since my old drive is fried I lost all my previous school work. I do beileve that I have a paper copy of my report on social media, I'll have to look around.

Note 2:
I start next semester on Oct, 8th. And I now have a hard drive to back up my laptop...