<M/> 170 Why so serious? Featured Poster

hmmm, i am still new to java... so i have to figure it out somehow (unless my professor on the first day of class will revise it for me). At the moment I will have announce defeat but I am sure someone else maybe able to assist you from here.

says something about the formulas used was unsafe or something/

What do you mean by that?

<M/> 170 Why so serious? Featured Poster

I agree with LastMitch though, the only way I know you can convert your website to mobile is by a premium service or do it your self... but I am curious on what services that you (DeepAnalyzer) has found.

<M/> 170 Why so serious? Featured Poster

So lets play a deal or no deal game. This game has been played on other forums and here are the instructions.

You have to reply 'Deal' or 'No Deal' to whatever was posted in the last post. It can be anything such as food, a game, an animal, a person, etc. .... Then you have to post something for the next person to take it or leave it. 

So lets start with the first deal is:

Lamborghini Aventador J (i provided the link incase you have not heard of it)

<M/> 170 Why so serious? Featured Poster

Basically in this game all you do is come up with a name of a company (that is real). So the rule is to come up with a company name using the last letter of the previous company.

For example, if the first user says "Google", then the second user would come up with a company name using the last letter, in this case E-Trade. (do your best not to repeat the previous company names)

Do you guys get it?

So lets start.

The first company name is: Apple

<M/> 170 Why so serious? Featured Poster

By the way, it is best if you show us what you have written so we can guide you on fixing your problems rather than us doing 100% of your work (espicially your school assignment), do you know what I mean?

<M/> 170 Why so serious? Featured Poster

I made a quick google search (i am going to begin my first Java class in a few days, a long with C#) and I found this:

package com.googlecode.cceb.chemistry;

import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;

import com.googlecode.cceb.math.Fraction;
import com.googlecode.cceb.math.Matrix;

/**
 * A formula represents a chemical equation. It is a balance-able set of
 * terms(compounds).
 * 
 * Formula Syntax: e.g. Ag(SO4)2 = Ag + SO4 Constructs a new Formula
 * 
 * @author Vsunder, ajc
 */
public class Formula {

        private ArrayList<Compound> reactants, products;

        public Formula(String input) {
                reactants = new ArrayList<Compound>();
                products = new ArrayList<Compound>();
                StringTokenizer st = new StringTokenizer(input);

                boolean isReactant = true; // we start at reactant side
                // construct compounds directly from tokenized output(from spaces)
                // store compounds as reactants/products
                while (st.hasMoreTokens()) {
                        String cp = st.nextToken();
                        if (cp.equals("=")) { // an '=' indicates if we're on reactants or
                                // products
                                isReactant = false;
                        } else if (cp.equals("+")) {
                                // ignore if a '+'
                        } else {
                                // add the compound to the proper list depending if it is
                                // reactant or product
                                (isReactant ? reactants : products).add(new Compound(cp));
                        }
                }
        }

        public String balance() throws InvalidElementException,
                        InvalidFormulaException {
                double[][] values;
                Matrix solver = new Matrix();
                int numcp = reactants.size() + products.size();
                /*
                 * for every element found in every compound, make a list of unique
                 * elements to count and put in array (and put in array)
                 */
                ArrayList<Element> distel = new ArrayList<Element>();
                for (int i = 0; i < reactants.size(); i++) {
                        List<Element> temp …
<M/> 170 Why so serious? Featured Poster

This may help you a bit if your going to have any issues with the web fonts for multiple browsers: http://blog.freelancer-id.com/2010/06/02/custom-font-for-all-browsers/

<M/> 170 Why so serious? Featured Poster

There are ways but you have to have a good knowledge of their SDK.

<M/> 170 Why so serious? Featured Poster

It is warm temperature atm, California has some interesting weathers...

<M/> 170 Why so serious? Featured Poster

riahc3 is right about site developers but if you were searching for someone to build your site, search for a programmer ;)

<M/> 170 Why so serious? Featured Poster

Welcome

<M/> 170 Why so serious? Featured Poster

@Happygeek, i guess i agree with you

<M/> 170 Why so serious? Featured Poster

Neither will succeed, but Google may have a good chance if they acquire twitter and Pinterest...

<M/> 170 Why so serious? Featured Poster

Well, you have to learn how to manipulate and use data... That is really the best way to dumb things down to a pulp, if you know what I mean.

My advice is to first start the project, and ask questions about parts of the sites, if you ask a vague question on how to create a website, you are not going to get the best answer.

<M/> 170 Why so serious? Featured Poster

@SJaved7, there is no possible way they can overrun Facebook or twitter...

<M/> 170 Why so serious? Featured Poster

i noticed that they have pretty good reviews, but I have never used them before so my opinion isn't as valuable but if your looking for hosting, the best people to host with is with GoDaddy, they are by far the most popular and best host there is out there.

<M/> 170 Why so serious? Featured Poster

Also notice that the person who asked the question never came back after 3 years to mark the question solved...

<M/> 170 Why so serious? Featured Poster

btw, I saw one very 'complicated' solution on another site, so that was a reason for me posting here, even though the thread is old.

Well that is reasonable :)

<M/> 170 Why so serious? Featured Poster

It will only work if it is text, not an image.

<M/> 170 Why so serious? Featured Poster

If you found this on a web page, use your web tools like Firebug.

<M/> 170 Why so serious? Featured Poster

Symphony No 9 - Beethoven

<M/> 170 Why so serious? Featured Poster

It is proven that respect is earned not given.

<M/> 170 Why so serious? Featured Poster

I ate some pizza from whole foods :)

<M/> 170 Why so serious? Featured Poster

The white house wasn't always white.

<M/> 170 Why so serious? Featured Poster

Slaves were used in the construction of the white house

<M/> 170 Why so serious? Featured Poster

@Reverend Jim, USA complains about everything... jobs, president sucks because he is Obama (nothing wrong with him really), health, education, etc.

That is why we come at 20 (my guess)

<M/> 170 Why so serious? Featured Poster

Welcome tomparker!

<M/> 170 Why so serious? Featured Poster

This may help you learn more about classes. I found this on the php.net site.
http://php.net/manual/en/keyword.class.php

<M/> 170 Why so serious? Featured Poster

I see your css might work, but as JorgeM has said, you need to show us the HTML portion with it.

<M/> 170 Why so serious? Featured Poster

On line 2, it won't work because you spelled "margin" wrong.

<M/> 170 Why so serious? Featured Poster

and

<M/> 170 Why so serious? Featured Poster

Greek Gods are real...

<M/> 170 Why so serious? Featured Poster

@tomparker, i do realize you did that, but what amazes me most is why don't people google first... (they can google kittens playing but they can't search anything technical ever...)

<M/> 170 Why so serious? Featured Poster

"You are a slave, and your master is time"

<M/> 170 Why so serious? Featured Poster

@Lardmeister, where is Saudi Arabia and would U.S. be 20?

@Reverend Jim, US is probably 20.

<M/> 170 Why so serious? Featured Poster

Just had rice pudding

<M/> 170 Why so serious? Featured Poster

nor is he going to mark this solved after 4 years...

<M/> 170 Why so serious? Featured Poster

@tomparker, i think by now... after 4 years, he probably knows how to solve his question :)

<M/> 170 Why so serious? Featured Poster

"If i could ask for one thing, it would be more time"

<M/> 170 Why so serious? Featured Poster

"make.believe" - sony

<M/> 170 Why so serious? Featured Poster

@LastMitch, yes... that is the one :)

<M/> 170 Why so serious? Featured Poster

The most built teen bodybuilder was Lee Priest.

<M/> 170 Why so serious? Featured Poster

Welcome!

<M/> 170 Why so serious? Featured Poster

"The earth is flat"

<M/> 170 Why so serious? Featured Poster

I saw the huanted house... the commercial was all that was funny... not the film.

<M/> 170 Why so serious? Featured Poster

For breakfast, I had a raw vege shake (Kale, spinach, etc.) mixed with flax seed, almonds, bananas, apple

<M/> 170 Why so serious? Featured Poster

No way Pinterest will beat facebook (they would be aquired by then)

<M/> 170 Why so serious? Featured Poster

Well social media sites to begin with get boring rapidly... think about myspace, the users ended up in FB and twitter... wonder what is next?

<M/> 170 Why so serious? Featured Poster

There are a few plugins out there that would do the job, just google :)

<M/> 170 Why so serious? Featured Poster

Or he found out that Victoria doesn't like him lol