Browsing articles tagged with "Taylor Asked - Garmin Forerunner 305 Essential Review Guide"

how to re-program my car lights?!?

Jul 12, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: how to re-program my car lights?!?

how do i change my daytime running lights so that its just my side markers on, and not the headlights and side markers.(which i have now).i drive a 2007 cobalt lt. i recently put fog lights in, and they are on all the time. so what i want on is the side markers, and fog lights. please help!!!

Read more >>

How to get rid off fleas in my bed?

Jul 11, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: How to get rid off fleas in my bed?

My dog has an issue with fleas at the moment and my mum and dad are trying their best to get rid off them – they've tried the shampoo and spot on so far, but none seem to be working. The bad thing is that the fleas are everywhere, and when i say everywhere, i mean…everywhere! They're on our chairs, in our back room, in our bedrooms. I get so many bites a day, and some have even turned into little blisters from where i have been scratching them. I can't even sleep in my own bed without them biting me. Around 4 days ago, my mum got some flea spray what you spray in the corners off the rooms. She done my bedroom, changed my duvets, sprayed the whole carpet, but they're still there. I mean, right now, i'm in bed with pajama trousers on with jogging bottoms on top, 3 pairs off fluffy socks on, a top and a jumper. I'm trying everything I can to try to stop most off them biting me, but they still are.

What can I do to get them out my bedroom for good? Is there anyway I could stop them from biting me?

Read more >>

Engine push to start wiring HELP!?

Jun 4, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: Engine push to start wiring HELP!?

i would like to have a setup where i don't have to use the key at all. One button for accessories, one button for ignition, and a momentary button for the starter. I have a basic understanding of how the ignition wiring goes. 12v power goes into the key ignition, when the key cycles to acc power runs through the acc wire and powers the accessories. When key is cycled in ignition fuel pumps and whatnot receives power. And when the key is turned all the way it activates the starter which cranks the engine. So i guess my main question is why isn't it just as simple as splicing or cutting into each individual wire and running that to a switch, and then running power from the battery to the switch as well? Does it have to do with correct voltage? Ive been reading a lot about SPDT relays but don't really understand them too well. Could someone clarify on how it should be correctly wired in?

Read more >>

Engine push to start wiring HELP!?

Jun 4, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: Engine push to start wiring HELP!?

i would like to have a setup where i don't have to use the key at all. One button for accessories, one button for ignition, and a momentary button for the starter. I have a basic understanding of how the ignition wiring goes. 12v power goes into the key ignition, when the key cycles to acc power runs through the acc wire and powers the accessories. When key is cycled in ignition fuel pumps and whatnot receives power. And when the key is turned all the way it activates the starter which cranks the engine. So i guess my main question is why isn't it just as simple as splicing or cutting into each individual wire and running that to a switch, and then running power from the battery to the switch as well? Does it have to do with correct voltage? Ive been reading a lot about SPDT relays but don't really understand them too well. Could someone clarify on how it should be correctly wired in?

Read more >>

Can I install linux to a custom built pc that has no operating system?

May 26, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: Can I install linux to a custom built pc that has no operating system?

I'm building a computer and don't want to pay for windows and heard linux was better. i want it to be the first operating system on my computer. i know that you can download it using any browser, but is there a way you can install it without a running operating system?

Read more >>

Can I install linux to a custom built pc that has no operating system?

May 26, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: Can I install linux to a custom built pc that has no operating system?

I'm building a computer and don't want to pay for windows and heard linux was better. i want it to be the first operating system on my computer. i know that you can download it using any browser, but is there a way you can install it without a running operating system?

Read more >>

frustrated with simple java, please help quick?

May 23, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: frustrated with simple java, please help quick?

well…my program compiles, but does not run properly.
I am trying to get it to print the total number of chars that were chosen
ex.

if all went as planned and the user slected A, B,and C:
number of A's: 1
number of B's: 1
number of C's: 1
or
A, A and B
number of A's:2
number of B's:1
number of C's:0
etc…

here is my code, please i have been trying to figure this out all night, any help is good help.
import java.util.*;
import java.util.*;

public class NootCmd
{
public static void main(String[] args)
{
Scanner input= new Scanner(System.in);

char score = 0;
int count = 0;
String answer;
int A = 0;
int B = 0;
int C = 0;
double total=0;
//System.out.println("Number of A's: "+A);
//System.out.println("Number of B's: "+B);
//System.out.println("Number of C's: "+C);

System.out.println("Which do you have trouble with the most: " +
'n' + "1 – Tests" + 't' + 't' + "2 – Studying" +
't' + "3 – Motivation");
answer = input.next();

System.out.println("How do you overcome difficult tasks: " +
'n' + "1 – Trial and Error" + 't' +
"2 – Plan Ahead" + 't' + 't' +
"3 – Brute Force");
answer = input.next();

for (int i = 0; i < answer.charAt(0); i++) {

if (answer.charAt(0) == 'A')
{
A++;
}
else if (answer.charAt(0) == 'B')
{
B++;
}
else if (answer.charAt(0) == 'C')
{
C++;
}
}

System.out.println("Number of A's: " + A);
System.out.println("Number of B's: "+ B);
System.out.println("Number of C's: "+ C);
}

}

Read more >>

frustrated with simple java, please help quick?

May 23, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: frustrated with simple java, please help quick?

well…my program compiles, but does not run properly.
I am trying to get it to print the total number of chars that were chosen
ex.

if all went as planned and the user slected A, B,and C:
number of A's: 1
number of B's: 1
number of C's: 1
or
A, A and B
number of A's:2
number of B's:1
number of C's:0
etc…

here is my code, please i have been trying to figure this out all night, any help is good help.
import java.util.*;
import java.util.*;

public class NootCmd
{
public static void main(String[] args)
{
Scanner input= new Scanner(System.in);

char score = 0;
int count = 0;
String answer;
int A = 0;
int B = 0;
int C = 0;
double total=0;
//System.out.println("Number of A's: "+A);
//System.out.println("Number of B's: "+B);
//System.out.println("Number of C's: "+C);

System.out.println("Which do you have trouble with the most: " +
'n' + "1 – Tests" + 't' + 't' + "2 – Studying" +
't' + "3 – Motivation");
answer = input.next();

System.out.println("How do you overcome difficult tasks: " +
'n' + "1 – Trial and Error" + 't' +
"2 – Plan Ahead" + 't' + 't' +
"3 – Brute Force");
answer = input.next();

for (int i = 0; i < answer.charAt(0); i++) {

if (answer.charAt(0) == 'A')
{
A++;
}
else if (answer.charAt(0) == 'B')
{
B++;
}
else if (answer.charAt(0) == 'C')
{
C++;
}
}

System.out.println("Number of A's: " + A);
System.out.println("Number of B's: "+ B);
System.out.println("Number of C's: "+ C);
}

}

Read more >>

frustrated with simple java, please help quick?

May 23, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: frustrated with simple java, please help quick?

well…my program compiles, but does not run properly.
I am trying to get it to print the total number of chars that were chosen
ex.

if all went as planned and the user slected A, B,and C:
number of A's: 1
number of B's: 1
number of C's: 1
or
A, A and B
number of A's:2
number of B's:1
number of C's:0
etc…

here is my code, please i have been trying to figure this out all night, any help is good help.
import java.util.*;
import java.util.*;

public class NootCmd
{
public static void main(String[] args)
{
Scanner input= new Scanner(System.in);

char score = 0;
int count = 0;
String answer;
int A = 0;
int B = 0;
int C = 0;
double total=0;
//System.out.println("Number of A's: "+A);
//System.out.println("Number of B's: "+B);
//System.out.println("Number of C's: "+C);

System.out.println("Which do you have trouble with the most: " +
'n' + "1 – Tests" + 't' + 't' + "2 – Studying" +
't' + "3 – Motivation");
answer = input.next();

System.out.println("How do you overcome difficult tasks: " +
'n' + "1 – Trial and Error" + 't' +
"2 – Plan Ahead" + 't' + 't' +
"3 – Brute Force");
answer = input.next();

for (int i = 0; i < answer.charAt(0); i++) {

if (answer.charAt(0) == 'A')
{
A++;
}
else if (answer.charAt(0) == 'B')
{
B++;
}
else if (answer.charAt(0) == 'C')
{
C++;
}
}

System.out.println("Number of A's: " + A);
System.out.println("Number of B's: "+ B);
System.out.println("Number of C's: "+ C);
}

}

Read more >>

frustrated with simple java, please help quick?

May 23, 2012   //   by Administrator   //   Blog  //  No Comments

Taylor Asked: frustrated with simple java, please help quick?

well…my program compiles, but does not run properly.
I am trying to get it to print the total number of chars that were chosen
ex.

if all went as planned and the user slected A, B,and C:
number of A's: 1
number of B's: 1
number of C's: 1
or
A, A and B
number of A's:2
number of B's:1
number of C's:0
etc…

here is my code, please i have been trying to figure this out all night, any help is good help.
import java.util.*;
import java.util.*;

public class NootCmd
{
public static void main(String[] args)
{
Scanner input= new Scanner(System.in);

char score = 0;
int count = 0;
String answer;
int A = 0;
int B = 0;
int C = 0;
double total=0;
//System.out.println("Number of A's: "+A);
//System.out.println("Number of B's: "+B);
//System.out.println("Number of C's: "+C);

System.out.println("Which do you have trouble with the most: " +
'n' + "1 – Tests" + 't' + 't' + "2 – Studying" +
't' + "3 – Motivation");
answer = input.next();

System.out.println("How do you overcome difficult tasks: " +
'n' + "1 – Trial and Error" + 't' +
"2 – Plan Ahead" + 't' + 't' +
"3 – Brute Force");
answer = input.next();

for (int i = 0; i < answer.charAt(0); i++) {

if (answer.charAt(0) == 'A')
{
A++;
}
else if (answer.charAt(0) == 'B')
{
B++;
}
else if (answer.charAt(0) == 'C')
{
C++;
}
}

System.out.println("Number of A's: " + A);
System.out.println("Number of B's: "+ B);
System.out.println("Number of C's: "+ C);
}

}

Read more >>

Pages:12»

RSS Follow Us On Twitter

Follow Us On Facebook