Wednesday, May 11, 2011

Make favicon easily, flash like favicon







Just browse the image from your folder and you will be able to make the favicon

You can also make the flash like favicon.

For making flash like favicon Just go to the site and click Create New Favicon and design your first frame and then click create frame and make the second frame and you will be able to make many frame as you like and just mention the time frame so that the next frame will be called and this way you will be abele to make a flash like favicon.

You can also use and edit the favicon in the existing site.

For favicon this is the best site i have ever found.

Make favicon easily, how to make favicon, how to make an image that is in the head of the site, that is on the title of the site, ways to make the image for the tab bar
http://www.favicon.cc/

This is the site where we can create the favicon online.

    How does it work ?

    Click on the squares and paint your logo
    Choose a color
    Download when you are finished
    Put the favicon.ico file into your webserver directory
    Optionally publish it under the CC (Creative Commons) license


Thursday, May 5, 2011

How to send mail to the candidates who have applied to the post?






Dear Rupak Nepali,
To participate in the Written Test, You must visit Real Solutions Office on ***** or ***** in office hour to collect written test ADMIT CARD. To collect ADMIT CARD, you must:
  • bring and submit
    • Two PP size photographs
    • Updated Resume/CV
    • Photocopies of Marks-sheet of SLC and Transcripts of intermediate/10+2 and Bachelor's degree (You must have minimum second division marks or CGPA 2.50 at Bachelor Degree)
    • Photocopy of citizenship 
  • bring a valid Identification Card (citizenship card or any other but having photograph on it.)
Note: Unable to follow the above important instructions may disqualify you for the written test
Click here for location map of Real Solutions Office.

The written test will be held on ----------. The Time and Venue of written test will be mentioned in the ADMIT CARD. However, the written will be in the following format:

Section A (Objective)
General Knowledge
Computer Knowledge
Verbal Ability
Logical Reasoning
Visual Logic
Quantitative Analysis
Total Number of questions: 60
Total Marks for Section A: 90
Section B (Subjective)
Analytical Writing
Total Number of questions : 1
Total Marks for Section B : 10
------------------------------------------------------------------------------------------
Total Duration : 60 minutes (1 hour)
Total Marks : 100
Regards,
Selection Division
Real Solutions - Human Resource Consulting
Old Baneshwor, Kathmandu
Tel: 01 - 4497230, 4481262
Office Hour: 10 A.M to 5.00 P.M
Email: commercialbank@realsolutions.com.np
Web: www.realsolutions.com.np/bulletin.htmwww.merojob.com/combank

This email is confidential. If you are not the addressee tell the sender immediately and destroy this email without using, sending or storing it. Emails are not secure and may suffer errors, viruses, delay, interception and amendment. Real Solutions Private Limited does not accept liability for damage caused by this email and may monitor email traffic.
This information has been sent to your provided email address.


Send Mail to the candidates when they fall in the shortlisted.

Wednesday, May 4, 2011

Joomla Testing is going on....





Joomla Testing is going on and is specially dedicate to my friends and collegues. Although i am unable to collect all the photos of my BCIS group i have included three of my friend with flash on the photo.

Click the below link to visit the joomla testing site



CLICK TO VISIT RUPAK JOOMLA DEMO

Thanking You
Rupak Nepali

Example from Getting Started with A Circle class derived from Point





// Borland C++ - (C) Copyright 1991 by Borland International

/* CIRCLE.CPP--Example from Getting Started */

// CIRCLE.CPP A Circle class derived from Point

#include // graphics library declarations
#include "point.h" // Location and Point class declarations
#include // for getch() function

// link with point2.obj and graphics.lib

class Circle : Point { // derived privately from class Point
// and ultimately from class Location
int Radius; // private by default

public:
Circle(int InitX, int InitY, int InitRadius);
void Show(void);
void Hide(void);
void Expand(int ExpandBy);
void MoveTo(int NewX, int NewY);
void Contract(int ContractBy);
};

Circle::Circle(int InitX, int InitY, int InitRadius) : Point(InitX,InitY)
{
Radius = InitRadius;
};

void Circle::Show(void)
{
Visible = true;
circle(X, Y, Radius); // draw the circle
}

void Circle::Hide(void)
{
unsigned int TempColor; // to save current color
TempColor = getcolor(); // set to current color
setcolor(getbkcolor()); // set drawing color to background
Visible = false;
circle(X, Y, Radius); // draw in background color to erase
setcolor(TempColor); // set color back to current color
};

void Circle::Expand(int ExpandBy)
{
Hide(); // erase old circle
Radius += ExpandBy; // expand radius
if (Radius < 0) // avoid negative radius
Radius = 0;
Show(); // draw new circle
};

void Circle::Contract(int ContractBy)
{
Expand(-ContractBy); // redraws with (Radius - ContractBy)
};

void Circle::MoveTo(int NewX, int NewY)
{
Hide(); // erase old circle
X = NewX; // set new location
Y = NewY;
Show(); // draw in new location
};

main() // test the functions
{
// initialize the graphics system
int graphdriver = DETECT, graphmode;
initgraph(&graphdriver, &graphmode, "..\\bgi");

Circle MyCircle(100, 200, 50); // declare a circle object
MyCircle.Show(); // show it
getch(); // wait for keypress
MyCircle.MoveTo(200, 250); // move the circle (tests hide
// and show also)
getch();
MyCircle.Expand(50); // make it bigger
getch();
MyCircle.Contract(75); // make it smaller
getch();
closegraph();
return 0;
}

Example from Getting Started with A Circle class derived from Point, how to code for the graphics, collection of the computer graphics code for BCIS, BE, BIM

BARCHART Example Program for computer graphics





// Borland C++ - (C) Copyright 1991 by Borland International

// BARCHART Example Program

#include
#include
#include
#include
#include
#include

#define MAX 50
#define ARRAYMAX 10

void makegraph(float p[]);

void main(void)
{
int i;
int scores[ARRAYMAX];
float percents[ARRAYMAX];

for (i = 0; i < ARRAYMAX; i++)
{
printf("\nEnter score between 0 and %d: ", MAX);
scanf("%d", &scores[i]);
}
for (i = 0; i < ARRAYMAX; i++)
percents[i] = ((float) scores[i]) / MAX;

printf("\n\n\n\tSCORE\tPERCENT");
for (i = 0; i < ARRAYMAX; i++)
printf("\n%d. \t%d\t%3.0f", i + 1, scores[i], (percents[i] * 100));
getch();
makegraph(percents);
}

void makegraph(float p[])
{
int g_driver, g_mode;
int i, left, top, wide, bottom, deep;

detectgraph(&g_driver, &g_mode);
initgraph(&g_driver, &g_mode, "..\\bgi");
wide = (int)((getmaxx()) / ((ARRAYMAX * 2 ) + 1));
bottom = getmaxy() - 20;
deep = (int) (wide / 4);
left = wide;
for (i = 0; i < ARRAYMAX; i++)
{
top = (bottom) - ((int)(p[i] * 300));
bar3d(left, top, (left + wide), bottom, deep, 1);
left += (wide * 2);
}
getch();
closegraph();
return;
}


learn c and C++ with example, bar chart example of C and C++, how do i make bar chart in the C, How do i make the bar chart in the C++, easiest example to make the bar chart

Why Nepal is the best place to visit





See why Nepal is the best place to be visited?




Monday, May 2, 2011

How to make joomla website with software "Artisteer"-By Rupak Nepali






First of all see the video above it is not published by me but i recommend you to see it.

Now go to the link below and download the latest version of the "Artisteer"


Then install it, if the .net framework is not installed in your system then do it first.
When installation is complete you run the first time for the Aristeer and you will asked to activate or use the trial version and just click the activate. You are asked to fill up the activation form

Now let's get the value to fill up the form

Go to the following link
http://www.mediafire.com/?1q6vdvz5wo7776n
Download the "Artisteer.key.zip" file and unzip it and run it and input the Installation code from the activation form. You will get the License and the key, input them to the activation form and you will be able to use the Artisteer freely.

Artisteer is not only for joomla but you can work it for Joomla templates, Wordpress themes, Drupal themes, Blogger templates and DNN skins.

Thanking You Rupak Nepali

how to crak the artisteer software, keygen of the artisteer, the easiest way to make the joomla, durpal, wordpress tempaltes, popular method to create the template, simply make the templates, 10 minutes to make a template, use the theme, template making software, software to make the tempalte of joomla, wordpress, durpal and so man, how to make the blogger template so easily, easily make the blogger template, blogger template making software.

Sunday, May 1, 2011

fUNNY mOVIE WHEEL ON THE MEAL




Saturday, April 30, 2011

funny songs by sakaira Prank








funny songs by sakaira

Running Competition By Berni funny cartoon







Funny running competition of the berni carton