Actually, it was a two part question. ;)
Cavities and Dental Visits.
Why am I awesome?
Actually, it was a two part question. ;)
Cavities and Dental Visits.
Why am I awesome?
Here are 2 tutorials that may help, if they don't help, just google!
http://www.howtoplaza.com/create-beveled-text-effect-with-css
http://www.htmlcssdeveloper.com/tutorial/advanced-html-css/css-text-bevel-effect.html
now get noff the computer an do your homework!
I don't have homework today... i do it all in school and I have straight A's in all 7 classes ;). So i know what i am doing.
--------------------------------------------------
if an idea is proclaimed to be half-baked, which half is ready for consumption?
Both!
Why did TnTinMN ask a question and why did I answer it?
Maybe.
Am i a cat or human?
Compare the 52 billionaires with the actual number of graduates to see what your chances are of hitting the jackpot.
... ummm, harvard still comes at number one? but it is true, once they become rich, in a way, they drop out.
It is un-usually warm today...
Whistle - Flo Rida
Fire Burning -- Sean Kingston
H2O!
what are your requirements for a new laptop? Price, brand, purpose, etc.
Learning how to code in php is not about just doing all the projects, it is about understanding it first and then doing it. My recommendations is to start with a book, learn all the basics and than challenge yourself in building a full blown website using php or do some other project.
If you want a simple project to do as of right now, making a contact form that collects inputs and stores them in a csv, sends verification email to you and the user, keep it spam free, etc.
Remember, we are here to help you if you get stuck on one problem, so feel free to ask if you need assisstance.
It's time - imagine dragons
no you ain't.
It is warm and hot right now... strange weather for the winter don't you say?
"I always wanted to kick a duck up the ####." -- Karl Pilkington
Okay then... -_-
It is easier to catch a bee with honey than with vinegar
"Tomorrow is the future, yesterday is the past, and today is present making it a gift."
Because they are too shy to sing.
Why is mike_2000_17 super good at programming?
No, it means they starved.
Why does TnTinMN have a monkey avatar?
That one starships song from Nicki minaj
Hello!I honestly think that you are right. And I think the word that I hate the most is "stupid".
But sometimes... you can use "stupid" in a good way :)
I agree with the top comment.
But here is a simple guide in building a simple site.
http://www.codecademy.com/courses/my-first-webpage
Isn't England normally cold, very rare to be hot?
Right, that makes sense but i was not using a tablet ;)
It looks like a CSS issue ... Hmm, I'll look into it.
That is good, but it isn't that important for me because it could be my browser that is messed up.
Are you able to ask the people who provided the link for another "copy" of the link?
It looks the same even if I didn't zoom out, I thought I could get most of the picture together.
Here are the snapshots:
Which post? If you mean the OP, then that would delete the thread and be unfair to anyone who replied. It's also doesn't break any rules, so I can't justify deleting it anyway.
Guess that is reasonable enough for me.
okay, give me a bit of time to figure out how to take a screen shot first. (on windows)
@deceptikon, aren't you able to just remove this post entirely?
Happy Birthday -- I heard it on my birthday
Lets settle this... the OP intended to post this as a spam question.
It's still sunny.
The film was a bit too violence for anyone under 18.
There is no such thing as too violent for people under 18... normally people that are older can't handle it. Think about it, little kids love call of duty and older people like something more simple and relaxing (though this is video games, the same logic applies to movies).
Okay, so i managed to figure it out by following all your guys solutions.
Thanks guys!
It is not a zoom issue, and it maybe a compatibility issue... But it isn't 100% important for me because i use safari more often.
Okay, I got it work! Thanks guys
ddanbe, well all there really is to do is that I need to make sure it displays 50 random numbers from 10 numbers. Ideas?
awww, it looks like my dog except mine is smaller and all white plus he is staring at the picture... lol... I hope my cat doesn't sneak on by.
I do agree, the film was a good film (not a great film). I liked the part where the guy tells the old guy to put his hands up and the old guy just sasses him even though the other man is armed.
2 things...
The dog was better... enough said. The bunny, by my opinion, was too boring. I think that dude should have carried around a bird rather than a bunny though, guess its funnier that way...
I am using windows 8, so you should check using it.
For some odd reason, parts of the site like awkward. For example, the community center button is flying off the menu (right under the hardware & software menu) and the top stats chart is displaced.
You may need to look at it, I may not seem clear.
I think I have something going in the right direction, does this seem right?
int userinput = 0;
string input = string.Empty;
Console.WriteLine("Input a number to be manipulated: ");
input = Console.ReadLine();
do {Console.WriteLine(userinput); userinput++;}
while (userinput % 2 > 0);
I want to make sure it continues looping every time the new iteration is even, continue looping. If it is odd, stop looping.
@rishif2,yes that is what it does. I am not sure how to fix that though.
this is what I have so far, it is improving but I can't get it to continue looping if the number is positive. Any ideas?
int userinput = 0;
string input = string.Empty;
Console.WriteLine("Input a number to be manipulated: ");
input = Console.ReadLine();
userinput = int.Parse(input);
do
{
Console.WriteLine(userinput);
userinput++;
}
while (userinput % 2 == 0);