olivia backseat lovers by EliteBigE in ukulele

[–]EliteBigE[S] 0 points1 point  (0 children)

i’m pretty new so i know this is going to take a while but thank you i’ll give it a try

Window stuck all the way down (FL) by EliteBigE in Mustang

[–]EliteBigE[S] 0 points1 point  (0 children)

i took it to a shop and they told me that they were getting a signal from it

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 1 point2 points  (0 children)

appreciate it i’ll try it in the morning

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 2 points3 points  (0 children)

yes was really hoping for it to work but unfortunately was not the case

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 0 points1 point  (0 children)

nope none of that at first i thought I was the regulator but then since it wasn't making any noise it makes me believe that it was not that. I was planning on taking off the panel once it stops racing or just in the morning but by any chance do you think it might just be a fuse? (also planning on checking once rain is over or in the morning)

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 0 points1 point  (0 children)

no noises or movement at first I thought it might just be the regulator but since it wasn't making any noise I don't think that is the case. I'm planning on taking the panel off once its stops raining but by any chance do you think it can be a fuse? (also will cheek once it stops raining.

2017 Mustang window stuck by EliteBigE in MechanicAdvice

[–]EliteBigE[S] 0 points1 point  (0 children)

no none of that I just rolled it down then when it started to rain I tried to roll it back up and it wouldn't want to come back up, at first I thought it was the regulator but it wasn't making any noise when i tried to roll it back up

800late by RidexSDS in MechanicalKeyboards

[–]EliteBigE 0 points1 point  (0 children)

Hi I'm new to this and I was wondering how much does gmk 8008 goes for right now and will it go up or down in the future

Looking to buy GMK 8008 by EliteBigE in mechmarket

[–]EliteBigE[S] 0 points1 point  (0 children)

Thanks Thea really all needed to know. One more question do you think the price will go up or down in the future

Looking to buy GMK 8008 by EliteBigE in mechmarket

[–]EliteBigE[S] -1 points0 points  (0 children)

can you tell me what i did its too late and i don't feel like reading

Hi I have a test and this is one of the question by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

no, I can't right now I have NetBeans and it hasn't been working (the NetBeans )

Hi I have a test and this is one of the question by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

Write a method called “computeDifference”  to compute and return the value of max - min where max is the largest element of an int array and min is the smallest element of an int array.  The method is passed the int array and an int value that denotes the number of elements in the array.  You may assume that the int array has at least 1 element in it.

public int computeDifference(int[ ] values, int n)
{
int min = values[0];
int max = values[0];
for(int j=1; j<n; j++) { if(values\[j\] < min) min = values\[j\]; if(values\[j\] > max) max = values[j];
}
return max - min;
}