Don’t Worry, Be Happy!

November 22, 2008

Adobe Photoshop 7.0

Filed under: School, My Discoveries, Computer Graphics Applications - kAreN maE @ 5:55 pm

People nowadays are usually having the habit of picture taking. Yes, picture taking – pictures to be kept in memories for life, because of hi – tech technologies in this current generation, people can easily take pictures instantly in many ways, through cell phones, digital cameras and etc. And because we have this kind of habit, of course, we want our pictures to be taken perfectly, so then, there goes the image editing.

We edit photos to make it more beautiful and good to look at(of course)...now, talking about photo editing, there’s this famous software that can help us to edit our photos easily. The Adobe Photoshop or simply Photoshop is a graphics editing program developed and published by Adobe Systems. It is the current and primary market leader for commercial bitmap and image manipulation, and is the flagship product of Adobe Systems. It has been described as "an industry standard for graphics professionals" and was one of the early "killer applications" on Macintosh.

The Adobe Photoshop 7.0 was the latest and the newest version of Adobe Photoshop today. It delivers powerful, industry – standard photo – editing for professional designers who want to produce sophisticated graphics and photos for the Web and for print. Included with Adobe Photoshop 7.0 is ImageReady 7.0 and its powerful set of Web tools for optimizing and previewing images, batch – processing images with droplets in the actions palette, and creating rollovers and GIF animations. Photoshop and Imageready combined offer a comprehensive environment for designing graphics and pictures in the web.  

FREE Adobe Photoshop Download → CLICK HERE

November 8, 2008

Genealogy of Programming Languages

Filed under: School, Programming - kAreN maE @ 5:37 pm

1954Fortran

1957Cobol

1958Algol

1958Lisp

around 1958Comit

1960APL

1960Algol 60

1962Snobol

1964PL/I

1964Simula

1964Basic

1964TRAC

around 1965CPL

around 1966Algol W

1967BCPL

1968Logo

1969B

1969Smalltalk

1970Forth

1970Prolog

1970Pascal

1970Algol 68

1970Icon

1971C

1971sh

1972PL/M

1974Clu

1975Modula

1975Scheme

1978awk

1978csh

around 1978InterPress

1978JaM

1979Rex

1979Ada

1980C with Classes

1981ABC

1982ksh

1983Turbo Pascal

1983Objective-C

1983C++

1983ML

1984PostScript

1984Neon

1984Concurrent C

1984Common Lisp

1985Object Pascal

1986Eiffel

1987Oberon

1987Perl

1987Caml

1988Tcl

1988Modula 3

1989Yerk

1989Clos

1989bash

1991Python

1991NetRexx

1991Java

1991Sather

around 1991Visual Basic

around 1993Mops

1993Ruby

1995Delphi

1995PHP

1996J

1996Objective Caml

2000C#

2000Internet C++

August 31, 2008

DBMS: ER Diagram Sales System

Filed under: School, Database - kAreN maE @ 8:27 pm

In our DBMS2 (Database Management System 2) course, we are ask to make a system that suits the need of a certain company to their problem. In our case, our group has decided to choose the Telton Pharmacy located at Mabini St. Ext. Blvd., Davao City to make them help their current problem in their company. The thing is that they uses the manual method in recording their sales. The problem with this method is that they have a difficulty in monitoring their sales in a day, they can’t accurately maintain their records intact and it is also very time consuming. Our solution to their problem is that we have created a web – based application sale system that can view, add, edit and delete their sales transactions easily, accurately and efficiently. As we have gone through our project, we come up with the analyzation of this ER Diagram. Which explains in a way that in every OR their is one OR Detail and in every OR detail contains one or more item/s. As of now, we are still currently working on the designing stage of our system and as of in the 2nd week of September, we are hoping to work in the coding stage. Hope we can do it! Goodluck guys…! emoticon

August 2, 2008

C#: Code for Inheritance

Filed under: School, Programming - kAreN maE @ 10:32 pm

Form.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {


        }

        private void button1_Click(object sender, EventArgs e)
        {
           
            if (comboBox1.SelectedItem.ToString() == "male")
            {
                Male x = new Male();
                x.Name = textBox1.Text;
                x._gender = Gender.Male;
                MessageBox.Show(x.Talk());
            }

            else
            {
                Female x = new Female();
                x.Name = textBox1.Text;
                x._gender = Gender.Female;
                MessageBox.Show(x.Talk());
            }
           
        }
    }

}

Male.cs

using System;
using System.Collections.Generic;
using System.Text;

namespace WindowsApplication1
{
    class Male : human
    {
        public override string Talk()
        {
            return base.Talk() + "I am a boy";

        }
    }
}

Female.cs

using System;
using System.Collections.Generic;
using System.Text;

namespace WindowsApplication1
{
    class Female : human
    {
        public override string Talk()
        {
            return base.Talk() + "I am a girl";

        }
    }
}

Human.cs

using System;
using System.Collections.Generic;
using System.Text;
namespace WindowsApplication1
{
    public enum Gender
    {
        Male,
        Female
    }
    public class human
    {
        public human()
        {
            humanCounter++;
        }

        private string name;
        private Gender gender;
        public virtual string Talk()
        {

            return "my name is " + name + " and i am a " + gender + ".nCurrent Number of Instance of human" + humanCounter;

        }

        private static int humanCounter = 0;
        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                name = value;
            }
        }

        public Gender _gender
        {
            get
            {
                return gender;
            }

            set
            {
                gender = value;
            }


        }

    }

}

C#: Code for HumanType

Filed under: School, Programming - kAreN maE @ 10:18 pm

Form1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {

          
        }

        private void button1_Click(object sender, EventArgs e)
        {
            human x = new human();
            x.Name = textBox1.Text;
            if (comboBox1.SelectedItem.ToString() == "Male")
            {
                x._gender = Gender.Male;
            }
            else
            {
                x._gender = Gender.Female;
            }
            MessageBox.Show(x.Talk());
        }
    }

    }

Human.cs

using System;
using System.Collections.Generic;
using System.Text;
namespace WindowsApplication1
{
    public enum Gender
    {
        Male,
        Female
    }
    public class human
    {
        public human()
        {
            humanCounter++;
        }

        private string name;
        private Gender gender;
        public string Talk()
        {

            return "my name is " + name +" and i am a " + gender +".nCurrent Number of Instance of human" + humanCounter;

        }

        private static int humanCounter = 0;
        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                name = value;
            }
        }

        public Gender _gender
        {
            get
            {
                return gender;
            }

            set
            {
                gender = value;
            }


        }

    }

}

March 13, 2008

Advanced Web Programming: Customer Profiling

Filed under: School - kAreN maE @ 4:52 pm

Our project in Advanced Web Programming is all about PHP MySQL. I think we’ve been talking and talking and talking and discussing it all through out this semester…so tiring, yet so enjoyable! Enjoyable, in a sense that I’ve really learned a lot from it! But of course, the semester has to end and we have to apply all what we have learned from the start through our project. Our project’s main concern is to build a certain website that is capable of storing its information in a database. Actually, MySQL is a database itself; it is the most popular open source database server. In regards to this, we choose the Customer Profiling as our project. You might ask what is customer profiling, right? Well, when we say customer profiling, it is the practice of dividing a customer base into groups of individuals that are similar in specific ways relevant to marketing. Through customer profiling, a certain company can capture and analyze critical customer demographics and behavior using a single platform. The more information gathered about an enterprise’s customers, the better equipped that enterprise is to anticipate and cater to their customers’ needs. Customer profiling can afford a clear view of customers by category that can be used to produce targeted marketing messages, campaigns, offers, and products. Actually, we are not yet finish for this project; we do have a very hard time working for it. We can’t just instantly finished the project because of its complexity and time-in-time we encountered errors in the codes. As of now, we are still currently on the process of doing our very best to produce a must be proud of output! I hope we could finish this before the due date of checking. Good luck to our group! emoticon May we’ve done it successfully…! emoticon

Get free blog up and running in minutes with Blogsome
Theme designed by Alex King