Need some JS help? Possible paypal reward

I have an Excel spreadsheet with a Vlookup, so a person can enter a 4 digit number, and finds a row that has that 4 digit number in column A, and pulls out the associated columns B, C, D, E, and F from that row.

The numbers are NOT sequential, so it’s not as simple as an ordered list.. they’re IDs for items, and can be any 4 digit number.

So for example, I have this (but 3000 rows, and the N/A’s sometimes have values):

0010	2 hrs		N/A	N/A	N/A	1.3G
0012	12 hrs		 N/A	N/A	N/A	1.4S
0014	12 hrs		 N/A	N/A	N/A	1.4S
0015	2 hrs		 N/A	N/A	N/A	1.2G
0016	2 hrs		 N/A	N/A	N/A	1.3G
0018	2 hrs		 N/A	N/A	N/A	1.2G
0019	2 hrs		 N/A	N/A	N/A	1.3G
0020	2 hrs		 N/A	N/A	N/A	1.2K

I need to turn this excel spreadsheet + vlookup, into a standalone HTML file that only uses JS (no serverside PHP, database, etc).. so our docks can use their laptops to look up values quick with no net connection. Reason it needs to be HTML, is so we can duplicate it onto our website, but they can save that page and it still works.
Continue reading Need some JS help? Possible paypal reward

will webmasters share their advertising statistics?

I am a student. I am creating a business plan for school. I need to determine if an investment of time and money building a website will be profitable. Think webmasters of blogs with similar interests would be open to talk to me about their CPTM and other relevant data?

no idea what CPTM is….but if you are asking for the eCPM, expect something like 20-30 cents.

everyone here makes 7 figures a month, so you do the math

I just broke into the 8 figure mark… chillin with thomor25 at the monitor-mart now…

Continue reading will webmasters share their advertising statistics?

css halp

Could someone please instruct or link me to instructions to how I make the pricing at the bottom of the page line up at the same height across the list items?

n/m

position: relative and absolute solved it

Thanks, still working on it.
Continue reading css halp

Okay thats it. Im getting one of those, if server = down than text message me things

I just realized one of my servers was down for atleast 3 days.

fml. just lost a bunch of money

Any of you guys have any scripts or suggestions?

I know i can google it but i want to see what you guys use. Free is possible.

the guy from csstricks runs aremysitesup.com
i’ve never used it, but its free and/or pay

AreMySitesUp is awesome. I use that + Pingdom (just in case one fucks up) to monitor all my sites. Pingdom also has an iPhone app, and both can email/sms you when sites go down.

Continue reading Okay thats it. Im getting one of those, if server = down than text message me things

java help

i posted this in the computer and programming subsection but i’m not getting any responses – i was hoping i can get a responds here

i’m having issues with the confirming if it’s okay to proceed with x price:

import java.util.Scanner;

public class ts709 {
    public static final int COST_1 = 200;
    public static final int COST_2 = 100;
    public static final int COST_3 = 75;
    public static final int COST_4 = 125;

public static void main(String[] args) {
            int Chicagotix = 0;
            int IndianapolisTix = 0;
            int SouthBendTix = 0;
            int BloomingtonTix = 0;
            int Totalcost = 0;
            int choicemm, choicedest, choicett = 0, choiceconf;
Scanner in = new Scanner(System.in);

   System.out.println("Welcome to OT Express Train Station!n");

   System.out.println("What would you like to do:");
   System.out.println("  1. Buy Train Ticket(s)");
   System.out.println("  2. Return Train Ticket(s)");
   System.out.println("  3. Print Info");
   System.out.println("  4. Exitn");

choicemm = in.nextInt();

while (choicemm != 4){

switch(choicemm) {
case 1: {
   System.out.println("Buy ticket to:");
            System.out.println("  1. Chicago");
            System.out.println("  2. Indianapolis");
            System.out.println("  3. South Bend");
            System.out.println("  4. Bloomington");

            choicedest = in.nextInt();
            switch (choicedest){
                case 1: {
                System.out.println("Make a selection:");
                System.out.println("  1. One Way");
                System.out.println("  2. Round Trip");

                choicett = in.nextInt();
                        switch (choicett) {
                            case 1:
                                System.out.printf("Cost is $%d. Would you like to purchase?n", COST_1);
                                System.out.println("   1. Yes");
                                System.out.println("   2. No");
                                choiceconf = in.nextInt();

                                if (choiceconf == 1) {
                                    Chicagotix = Chicagotix +1;
                                    Totalcost = Totalcost +COST_1;
                                }

                choicett = in.nextInt();
                                break;

                            case 2:
                            {
                                System.out.printf("Cost is $%d. Would you like to purchase?n", COST_1*2);
                                System.out.println("   1. Yes");
                                System.out.println("   2. No");
                                choiceconf = in.nextInt();
                                if (choiceconf == 2) {
                                    Chicagotix = Chicagotix +1;
                                    Totalcost = Totalcost +COST_1*2;
                                }
                                break;
                            }
                        }

                }
break;
                case 2:
                    System.out.println("Make a selection:");
                    System.out.println("  1. One Way");
                    System.out.println("  2. Round Trip");
                    choicett = in.nextInt();

                        switch (choicett) {
                             case 1:

                                System.out.printf("Cost is $%d. Would you like to purchase?n", COST_2);

                                System.out.println("   1. Yes");

                                System.out.println("   2. No");

                                choiceconf = in.nextInt();

                                if (choiceconf == 1) {


                                    IndianapolisTix = IndianapolisTix +1;


                                    Totalcost = Totalcost +COST_2;

                                }

                break;

                case 2:

                {

                    System.out.printf("Cost is $%d. Would you like to purchase?n", COST_2*2);

                    System.out.println("   1. Yes");

                    System.out.println("   2. No");

                    choiceconf = in.nextInt();

                    if (choiceconf == 2) {
                        IndianapolisTix = IndianapolisTix +1;
                        Totalcost = Totalcost +COST_2*2;
                    }
                    break;
                }
                        }
                        }

                    switch (choicett) { //new switch
                              case 1:

                                System.out.printf("Cost is $%d. Would you like to purchase?n", COST_3);

                                System.out.println("   1. Yes");

                                System.out.println("   2. No");

                                choiceconf = in.nextInt();

                                if (choiceconf == 1) {


                                    SouthBendTix = SouthBendTix +1;


                                    Totalcost = Totalcost +COST_3;

                                }

                break;

                case 2:

                {

                    System.out.printf("Cost is $%d. Would you like to purchase?n", COST_3*2);

                    System.out.println("   1. Yes");

                    System.out.println("   2. No");

                    choiceconf = in.nextInt();

                    if (choiceconf == 2) {

                        SouthBendTix = SouthBendTix +1;

                        Totalcost = Totalcost +COST_3*2;

                    }

                    break;
                }
                        }
                        }

                    switch (choicett) {
                                case 1:
                                System.out.printf("Cost is $%d. Would you like to purchase?n", COST_4);
                                System.out.println("   1. Yes");
                                System.out.println("   2. No");
                                choiceconf = in.nextInt();
                                if (choiceconf == 1) {
                                    BloomingtonTix = BloomingtonTix +1;
                                    Totalcost = Totalcost +COST_4;

                                }

                break;

                case 2:

                {

                    System.out.printf("Cost is $%d. Would you like to purchase?n", COST_1*2);

                    System.out.println("   1. Yes");

                    System.out.println("   2. No");

                    choiceconf = in.nextInt();

                    if (choiceconf == 2) {

                        BloomingtonTix = BloomingtonTix +1;

                        Totalcost = Totalcost +COST_1*2;

                    }

                    break;
                }
                        }


            case 2: {
            System.out.println("Return (sell back) ticket to:");
            System.out.println("  1. Chicago");
            System.out.println("  2. Indianapolis");
            System.out.println("  3. South Bend");
            System.out.println("  4. Bloomington");
            choicemm = in.nextInt();
            System.out.printf("Ticket Returned.",COST_1);

            break;// return train tickets
}

            case 3: {
             System.out.printf("Chicago: %d tickets.n", Chicagotix);
             System.out.printf("Indianpolis: %d tickets.n",IndianapolisTix);
             System.out.printf("South Bend: %d tickets.n",SouthBendTix);
             System.out.printf("Bloomington: %d tickets.n",BloomingtonTix);
             System.out.printf("Total Cost: %d tickets.n", Totalcost);
}

   System.out.println("nWhat would you like to do:");{

   System.out.println("  1. Buy Train Ticket(s)");

   System.out.println("  2. Return Train Ticket(s)");

   System.out.println("  3. Print Info");

   System.out.println("  4. Exitn");

            choicemm = in.nextInt();
   }

break;//

}
}
}
}

this is what happens:
Continue reading java help

iPhone app development?

‘sup?

I have an idea for an app. need developer. Sup

From what I understand Iphone apps cost ~20,000. There are so few developers and so many ‘ideas’ that its not worth their time to work on projects with people who have an idea when they could just do their own shit. I learned this based on the little research I did, feel free to correct me.

Depends what you want

scope = $$$$

This is pretty much what i’ve found too. I’ve considered abandoning webdev and learning Obj C just so I can get in on the cash But I don’t even know normal C.. so i’d probably just fall on my ass.

Continue reading iPhone app development?

virtuemart / Shopify / ????

Right now houseofgrafix.net runs on VirtueMart 1.1.8
It needs a change.
My website helper has shown me Shopify.. Seems cool but i’m worried about losing all my accounts and past orders

To give my site an upgrade and refresh

what would you do?