Tabsofficial How to Install MSSQL 2000

December 22, 2008 | Posted in Programming, Source Codes and Algorithms, Procedures and Instructions | No Comments »

I have provided this to ease the burden of the students also with people in the IT industry in installing this software, though this is easy, I know that many poeple have questions wanted to be answered so to start off here are the 7 easy main steps of installing.

    We should always remeber that there are some preferences you will be needing and won’t be needed any more. Our teacher in Internet Technology taught us well, from detail to detail, and I want to share this to others. If you have some questions and inquiries feel free to email me or comment in this blog.

    Steps: Easy and Fast 

            1.  Open AutoRUN.exe

            2.  Choose Server 2000 Components.

            3.  Then later choose Install Database server.

            4.  Next, choose Local Computer

            5.  Then Choose Create new instance then select next.

            6.  Next -> input Name and Company

            7.  Next Lastly choose Mixed mode.

    If you think you are done already, well think again. You should find the SP4/Service Pack 4 after installation, then click its exe and run it. After installing it, go SQL2KSP4 folder in your DRIVE C and gradually find SETUP and extract the needed data. When you are asked to Check compatiblity Check the one which upgrades and required for installation. Then you are ready to go! Thank you and that is all.

Posted by: abzkei

Tabsofficial My cool plain Friendster Layout | Black and White

December 21, 2008 | Posted in Popular in the Web, Programming, Source Codes and Algorithms, Hot Features and Stuff | Comments (4)

/* {–friendster-layouts.com css code start–} */

/* michael’s friendster profile editor v4.1 */
/* http://www.editfriendster.com */

/* PAGE BACKGROUND */
body {
  background-image: url();
  background-attachment: fixed;
  background-color: #ffffff;
  cursor: ;
}
/* GLOBAL FONTS */
.usercontent {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
  text-transform: capitalize;
}
/* GLOBAL LINKS */
.usercontent a, .usercontent a:link, .usercontent a:visited, .usercontent a:hover, .usercontent a:active {
  color: #ffffff;
}
.usercontent a:hover {
  text-decoration: none;
  color: #999999;
}
/* MASTER BOXES */
.commonbox {
  border-width: 6px;
  border-color: #000000;
  border-style: solid;
  background-color: #000000;
}
.commonbox .evenrow {
  background-color: #000000;
}
/* MASTER HEADERS */
.commonbox h1, .commonbox h2 {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
  text-transform: capitalize;
  background-color: #808080;
}
/* CONTROL PANEL: BOX */
.controlpanel {
  border-width: 6px;
  border-color: #000000;
  border-style: solid;
  background-color: #000000;
}
/* CONTROL PANEL: USER PHOTO */
.controlpanel .imgblock200 {
  border-color: #000000;
}
/* CONTROL PANEL: DATA */
.controlpanel .q {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
}
.controlpanel .data {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
}
.data a {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
  text-decoration: ;
}
/* CONTROL PANEL: MORE ABOUT ME LINK */
a.more {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
  text-decoration: ;
}
/* CONTROL PANEL: BUTTONS */
#controlPanelButtons a, #controlPanelButtons a:link, #controlPanelButtons a:visited {
  font-family: Arial, Sans-serif;
  color: #ffffff;
  border-color: #000000;
  background-color: #000000;
  text-decoration: ;
}
#controlPanelButtons a:hover {
  font-family: Arial, Sans-serif;
  color: #000000;
  border-color: transparent;
  background-color: #e5e5e5;
  text-decoration: ;
}
/* MISC: TESTIMONIALS/REVIEWS TEXT */
.data {
  font-family: Arial, Sans-serif;
  color: #;
  text-transform: ;
}
/* MISC: VIEW ALL LINKS */
.commonbox .viewall {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
  text-transform: capitalize;
}
/* MISC: SMALL PHOTOS */
.commonbox .imgblock75, .ir {
  border-width: 6px;
  border-color: #000000;
  border-style: solid;
  background-color: #000000;
}
/* MISC: SMALL PHOTO NAMES */
.commonbox .dr {
  font-family: Trebuchet MS, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
  color: #ffffff;
  background-color: #000000;
}

/* {–friendster-layouts.com css code end–} */

Posted by: abzkei

Tabsofficial C++ simple Encrypt and Decrypt | Source code

December 15, 2008 | Posted in Programming, Source Codes and Algorithms | Comments (3)

By the way the password of this code as it is protected by the programmer is outlaw, try it guys this might be a guide for you and your friends. Also I got this from this valuable and informative link see it for more details.

I’ll be posting my own code after our assignments are passed and finished.

#include <iostream.h>
#include <stdlib.h>
#include <fstream.h>
#include <stdio.h>

bool password();

void doCrypt(char *cool)
{
     int cryp;//the main int this function uses
    char x;//to get the chars from the file
    ifstream in;//the input stream
    ofstream out;//the output stream
    in.open(cool);//opening the input file
    if(in.fail()){//check if it’s not there
         cout<<"Couldn’t open the IN file\n";//if it’s not, print
        return;
    }
    cout<<"enter the OUT file name: ";//enter the output filename
    cin>>cool;//get it
    out.open(cool);//open the output file
    in.get(x);//get the first char of input
    if(in.eof())//if read beyong end of file
         return;//quit
    while(x != EOF){//while x is not beyong End Of File
         cryp=x-0xFACA;//the crypting
        out<<(char)cryp;//print the crypted char
        in.get(x);//get another char
        if(in.eof())//if read beyong end of file
             break;
    }
    in.close();
    out.close();
    return;
}
void deCrypt(char *daf)
{
     int decr;//the main int
    char x;//the input char
    ifstream in;//input stream
    ofstream out;//output stream
    in.open(daf);//open the inout stream
    if(in.fail()){//see if it’s not there
         cout<<"Error couldn’t open the IN file\n";//print
        return;
    }
    cout<<"Enter the OUT file name: ";//ask for the out filename
    cin>>daf;
    out.open(daf);//open the outfile
    in.get(x);//get the input char
    if(in.eof())//if read beyong end of file
         return;
    while(x!=EOF){//while x is not beyong end of file
         decr=x+0xFACA;//the dectypring
        out<<(char)decr;
        in.get(x);//get the next char
        if(in.eof())//if read beyong the eon of file
             break;
    }
    return;
}
int main(void)
{
    if (password()) cout << "Access Granted: \n";
    else
    {
    cout << "You are not Authorized to use this program!\n";
    system("pause");
    return 0;
    }
    char *cool=new char[20];//the name pointer
    char nav;              //"navigation char"
    cout << "*———————————————*\n";
    cout << "| This is an encryption program.  I’m not     |\n";
    cout << "| taking credit for this.  This was a         |\n";
    cout << "| recent submission on planet-source-code     |\n";
    cout << "| I just added password protection to it.     |\n";
    cout << "*———————————————*\n\n";
    system("pause");
    cout << "\n\n";
    cout << "Use \"m\" for the Menu\n";//print instructions
     while(true){
         cin >> nav;
         switch(nav){
             case ‘m’:
                 cout << "COMMAND\tFUNCTION\n";
                cout << "e      \tencrypt\n"
                          "d      \tdecrypt\n"
                        "m      \t menu \n"
                        "q      \t quit \n";
                break;
             case ‘e’:
                 cout << "Enter the file name: \nExample: \"file\".txt\n";
                cin >> cool;
                doCrypt(cool);
                break;
            case ‘d’:
                 cout << "Enter the file name: ";
                cin >> cool;
                deCrypt(cool);
                break;
            case ‘q’:
                 exit(0);
                 break;
            default:
                 cout << "I do not understand you!\n";
                break;
        }
    }
}

bool password()
{
     char string1[50];
     cout << "Enter in the encryption password: \n";
     gets(string1);

     if (strcmp(string1, "outlaw")) return 0;
     return 1;
}

Posted by: abzkei

Tabsofficial Something I realized with C#

October 7, 2008 | Posted in Programming, Source Codes and Algorithms, Words and Emotions | No Comments »

    Men I am working so hard to have new ideas about our project in C#, but I can’t really put in to life. Maybe I am not that good in programming creating many algos and like features in mind that I think grabs the attention of the user. Although I made things right, there is an urge in me that want to do more, which I can see that I am not satisfied with my work. By then I became hungry, now I destroyed what I made and haven’t found yet the cure for debugging. Tonight, I’ll be coding again and again. OooOOOooh life! From the user interface, keys, and everything in between. Oh men, deadline is fast approaching I have to finish this or we will be a failure.

    This night I’ll be trying to create a new thing about this, hope this will work. I decided to make it as simple as ever. Oh, I am getting nervous what would be the outcome of this. 

Posted by: abzkei

Tabsofficial Getting Tired with C#

September 20, 2008 | Posted in Programming, Source Codes and Algorithms | No Comments »

    Oh damn! I din’t realize how big my work does. C# is really my darn weakness, I admit. As I am making this project the scope is getting even more bigger which is not anymore easy for me to handle. Although it is hard, it should be done as it is required for our project based subject system programming.

    The reason why I voluntarily get this to my appoint, it is because I want to learn it my own not thinking it is so hard. The bright side is I am learning already the basics, talking why only the basics? Yeah everything starts in basic things which serves as a you know the foundation of learning. Right now, I just finished log in form there are much work to be done. 

Posted by: abzkei