Home

Forums

Web development

 

 

 

 
     
 
dna88 Web development and Technology Forum
 
Profile   Register   Memberlist   Usergroups   FAQ   Search  Log in
Just Paste what you copied last time
Goto page Previous  1, 2, 3, 4  Next
 
Post new topic   Reply to topic    dna88 Forum Index -> General Discussion
Author Message
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

ESTIMATED COSTS:
__ Labor fees (design, art direction, production, copywriting, client services, etc.) are estimated at a total of $_________ or ____ see attached estimate sheet for specifications.

__ Consultation fees are estimated at a total of $ __________ or ____ see attached estimate sheet for specifications.

__ Materials costs (RC/film/neg output, scanning, project specific materials, etc.) are estimated at a total of $__________ or ___ see attached estimate sheet for specifications.

Total estimated cost of project: $____________ Project estimates are valid for 90 days from the date of estimate. Project may be reestimated if, upon receipt of all project elements, the designer determines the scope of the project has been altered dramatically from the originally agreed upon concept. Printing fees will be estimated separately and payment arrangements made between client and printer.
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Fri Sep 03, 04 6:13 am
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
dude
Power User
Power User


Joined: 10 Mar 2004
Posts: 376
Location: Savar, Dhaka

Post Post subject: Reply with quote

What was the house that Jack built?
Fri Sep 03, 04 8:55 am
Back to top
dude View user's profile Send private message Visit poster's website
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

{
if (strlen($str) > $len) {
$xl = strlen($el);
if ($len < $xl) {
return substr($str, 0, $len);
}
$str = substr($str, 0, $len-$xl);
$spc = strrpos($str, ' ');
if ($spc > 0) {
$str = substr($str, 0, $spc);
}
return $str . $el;
}
return $str;
}
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Fri Sep 03, 04 11:12 pm
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

Answering back and see what happens....
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Fri Sep 03, 04 11:21 pm
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
dude
Power User
Power User


Joined: 10 Mar 2004
Posts: 376
Location: Savar, Dhaka

Post Post subject: Reply with quote

[http://2methods.com/secondmethod/]
Sat Sep 04, 04 6:27 am
Back to top
dude View user's profile Send private message Visit poster's website
dude
Power User
Power User


Joined: 10 Mar 2004
Posts: 376
Location: Savar, Dhaka

Post Post subject: Reply with quote

[http://2methods.com/secondmethod/]
Sat Sep 04, 04 6:28 am
Back to top
dude View user's profile Send private message Visit poster's website
dude
Power User
Power User


Joined: 10 Mar 2004
Posts: 376
Location: Savar, Dhaka

Post Post subject: Reply with quote

DIV.overflow {
position:absolute;
top:335px;
left:12px;
z-index:1;
width:772px;
height:205px;
overflow: scroll;
}
Mon Sep 06, 04 10:37 pm
Back to top
dude View user's profile Send private message Visit poster's website
emm
Power User
Power User


Joined: 13 Jul 2004
Posts: 310

Post Post subject: Reply with quote

<link rel="stylesheet" href="templates/MSSimplicity/MSSimplicity.css" type="text/css">
_________________
“You might say reality is the result of complex negotiations between the observer and the observed. But that is simply a point of view…”
Digital Bangladesh
Tue Sep 07, 04 4:43 am
Back to top
emm View user's profile Send private message
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

Watching my window I was led like a
child
As the roadway lamplights
misguided my mind through the night
a shadow of limits
We were racing the rain
my hands held the wheel
My eyes tried to hold their place

there must have been a time
when I thought that you were
watching
It had to be when my senses lost
control
I thought I'd slipped away
I thought I could still feel us
moving
It must have been a cloud
no bigger than a man's hand

Every reason I risk my life
To come back to you
Is locked behind your door
You're my immunity
Outside I watched you burn
Heavy hearts were bleeding
A cry for help, a familiar voice
My melting hands streaked the glass

As I walked away
I wondered what had really
happened
had I run out of time
did I push myself too far
As my last step fell
I felt my hands upon the wheel
had I come back to life
or did I ever leave at all

In higher lives
We seem to be
always a moment too late
We're past the time
when we looked on
Now we're
THE ONES WHO HELP TO
SET THE SUN
this time for real
I locked the door behind me
My mind was still a wreck
from what I saw
For when my hands are still
I'll recognize the message
never again will my senses lose
control
In higher lives
We seem to be
Always a moment too late
We're past the time
when we looked on
Now we're
THE ONES WHO HELP TO
SET THE SUN
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Tue Sep 07, 04 11:51 am
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

import javax.swing.*;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class ChildAddition extends Applet implements ActionListener
{
Label lblnum1=new Label(" NUMBER 1");
Label lblnum2=new Label("NUMBER 2");
Label lblsum=new Label(" SUM");
Label lbloutcome=new Label(" OUTCOME");

TextField txtNum1=new TextField(17);
TextField txtNum2=new TextField(17);
TextField txtSum=new TextField(17);

TextArea txtAreaOutcome=new TextArea(5,26);

Button add=new Button(" Generate Numbers to Add ");
Button check=new Button("CHECK");
Button close=new Button(" close ");

//-----------------------------------------------------------declare essential labels,textArea,buttons,textFields

public void init()
{
add(lblnum1);
add(txtNum1);
add(lblnum2);
add(txtNum2);
add(lblsum);
add(txtSum);
add(lbloutcome);
add(txtAreaOutcome);
add(add);
add(check);
add(close);

add.addActionListener(this);
check.addActionListener(this);
close.addActionListener(this);
txtNum1.setEditable(false);
txtNum2.setEditable(false);
check.setEnabled(false);
txtAreaOutcome.setEnabled(false);

setBackground(new Color(136,207,149));
add.setBackground(new Color(179,173,231));
check.setBackground(new Color(179,173,231));
close.setBackground(new Color(179,173,231));
lblnum1.setBackground(new Color(136,207,149));
lblnum2.setBackground(new Color(136,207,149));
lblsum.setBackground(new Color(136,207,149));
lbloutcome.setBackground(new Color(136,207,149));


/*exit.setBackground(new Color(179,173,231));
num1.setBackground(new Color(136,207,149));
num2.setBackground(new Color(136,207,149));
sum.setBackground(new Color(136,207,149));
result.setBackground(new Color(136,207,149));*/

Font f1 = new Font("Comic Sans MS",Font.BOLD, 15);

lblnum1.setFont(f1);
lblnum2.setFont(f1);
lblsum.setFont(f1);
lbloutcome.setFont(f1);
add.setFont(f1);
check.setFont(f1);
close.setFont(f1);
}

public void actionPerformed(ActionEvent ae)
{
if(ae.getSource() == add)
{
int ranNum1, ranNum2;

ranNum1 = (int)(Math.random()*100+1);
txtNum1.setText(ranNum1+"");

ranNum2 = (int)(Math.random()*100+1);
txtNum2.setText(ranNum1+"");

txtSum.requestFocus();
txtSum.setText("");
check.setEnabled(true);

txtAreaOutcome.setFont(new Font("Comic Sans MS",Font.BOLD, 14));

txtAreaOutcome.setText("Now Enter the sum");
}

else if(ae.getSource() == check)

{
try
{

txtAreaOutcome.setFont(new Font ("Comic Sans MS",Font.BOLD,14));

int num1=Integer.parseInt(txtNum1.getText());
int num2=Integer.parseInt(txtNum2.getText());
int sum = Integer.parseInt(txtSum.getText());

if((num1+num2)==sum)

txtAreaOutcome.setText("Excellent\n Your answer is correct");
else
txtAreaOutcome.setText("Wrong Answer!\n"+"Correct Answer is="+(num1+num2)+"\nTry Agaijn.");
}
catch(NumberFormatException nfe)
{
txtAreaOutcome.setText("Please Enter the sum");
txtSum.setText("");
txtSum.requestFocus();

}
}
}
}
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Wed Sep 08, 04 4:34 am
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

- Analysis and concept development
- Development methodology
- Quality assurance
- Security management
- Testing procedure
- Documentation and post-delivery maintenance
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Wed Sep 08, 04 11:32 pm
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
emm
Power User
Power User


Joined: 13 Jul 2004
Posts: 310

Post Post subject: Reply with quote

/* Fancy form styles for IE */

input, textarea, select {
SCROLLBAR-BASE-COLOR: #fffffff;
SCROLLBAR-ARROW-COLOR: #666666;
border-top-width : 1px;
border-right-width : 1px;
border-bottom-width : 1px;
border-left-width : 1px;
border-style : dotted;
}
_________________
“You might say reality is the result of complex negotiations between the observer and the observed. But that is simply a point of view…”
Digital Bangladesh
Thu Sep 09, 04 4:56 am
Back to top
emm View user's profile Send private message
dude
Power User
Power User


Joined: 10 Mar 2004
Posts: 376
Location: Savar, Dhaka

Post Post subject: Reply with quote

If the video image lacks sufficient redundancy (i.e. adjacent lines are not essentially identical) the resulting image will have large amounts of Frame-rate flicker (as opposed to field-rate flicker which is at 2X the frame-rate flicker). You can frequently see this if (for example) horizontal features are captured by a single field of the video camera (window blinds, car grills, etc). These will be displayed in only one field and produce unmistakable flicker.

Even with perfect redundancy (i.e. identical line pairs) any horizontal motion will result in "spearing" (ragged edges) caused by the temporal displacement of the two Fields. You will notice this when the camera pans horizontally across high-contrast straight vertical features.
Thu Sep 09, 04 9:14 am
Back to top
dude View user's profile Send private message Visit poster's website
emm
Power User
Power User


Joined: 13 Jul 2004
Posts: 310

Post Post subject: Reply with quote

<?php
/* Data */
$key = 'this is a very long key, even too long for the cipher';
$plain_text = 'very important data';

/* Open module, and create IV */
$td = mcrypt_module_open ('des', '', 'ecb', '');
$key = substr ($key, 0, mcrypt_enc_get_key_size ($td));
$iv_size = mcrypt_enc_get_iv_size ($td);
$iv = mcrypt_create_iv ($iv_size, MCRYPT_RAND);

/* Initialize encryption handle */
if (mcrypt_generic_init ($td, $key, $iv) != -1) {

/* Encrypt data */
$c_t = mcrypt_generic ($td, $plain_text);
mcrypt_generic_deinit ($td);

/* Reinitialize buffers for decryption */
mcrypt_generic_init ($td, $key, $iv);
$p_t = mdecrypt_generic ($td, $c_t);

/* Clean up */
mcrypt_generic_deinit ($td);
mcrypt_module_close ($td);
}

if (strncmp ($p_t, $plain_text, strlen($plain_text)) == 0) {
echo "ok\n";
} else {
echo "error\n";
}
?>
_________________
“You might say reality is the result of complex negotiations between the observer and the observed. But that is simply a point of view…”
Digital Bangladesh
Fri Sep 10, 04 2:50 am
Back to top
emm View user's profile Send private message
quantum
Site Admin
Site Admin


Joined: 07 Mar 2004
Posts: 1048
Location: Dhaka, Bangladesh

Post Post subject: Reply with quote

desire a career with the best web solution company of Bangladesh then consider sending your resume to opportunity<at>quantumcloud.com.
_________________

Dust fills my eyes / Clouds roll by / and I roll with them / Centuries cry / Orders fly / and I fall again
Afford best design, implement best solution. Outsource your web design.
Fri Sep 10, 04 4:58 am
Back to top
quantum View user's profile Send private message Visit poster's website AIM Address
Display posts from previous:   
Post new topic   Reply to topic    dna88 Forum Index -> General Discussion All times are GMT - 7 Hours
Goto page Previous  1, 2, 3, 4  Next
Page 2 of 4

 

Partners and Resources

Bangladesh hosting company

Bangladesh web design

Driven by phpBB © phpBB Group