Skip to main content
Search titles, bodies, and author names
Found 41,288 posts across 1 forum.

iPod headphone jack replacement — #4

Well, *nothing* is "impossible". But those jacks on the right are either SMD, in which case they need a very precise and experienced hand to be replaced, or regular soldered, in w…
MacNN Troubleshooting by Spheric Harlot

iPod headphone jack replacement — #5

To get to the area behind the screen is very easy, it will only take a few minutes to get to. The hard part is actually soldering it back on. It would prob be easier just to buy a …
MacNN Troubleshooting by magid

iPod headphone jack replacement — #6

My original 20Gb G2 ipod got a crack in the 'inner circle' of the headphone jack - this caused the unit to short circuit when you used the in-line remote cable, and it would flash …
MacNN Troubleshooting by LeeG

iPod headphone jack replacement — #7

Quote: Originally posted by LeeG: My original 20Gb G2 ipod got a crack in the 'inner circle' of the headphone jack - this caused the unit to short circuit when you used …
MacNN Troubleshooting by spiky_dog

iPod headphone jack replacement — #8

Yeah mine was August 2002, I found using just the headphones (no in-line remote) worked, but I got it fixed in March 2003 (less than 1 yr) so warranty prevailed. I wonder what the …
MacNN Troubleshooting by LeeG

iPod headphone jack replacement — #9

an update: my ipod is still hanging in there, barely. the new sennheiser cans that i bought for my home stereo also work with the ipod, and don't cause it to spontaneously shut off…
MacNN Troubleshooting by spiky_dog

d-link i524 how to ? — #2

The problem is how your computers are set up. Using the router, they no longer connect to the Internet; they now connect to a LAN. You can (and should) also set up your router to…
MacNN Networking by ghporter

d-link i524 how to ? — #3

Just to add to what GHPorter said, D-link also provides a fairly decent online help file as well as help in its browser interface. If you don't know what a setting does, click on t…
MacNN Networking by f1000

d-link i524 how to ? — #4

Exactly. And make sure you turn off PPPoE on the Macs if you have it turned on.
MacNN Networking by John Strung

d-link i524 how to ? — #5

Quote: Originally posted by John Strung: Exactly. And make sure you turn off PPPoE on the Macs if you have it turned on. Thanks guys, But the trouble was with the …
MacNN Networking by Coolerman

C++, Xcode telling me main() needs int?! — #3

Quote: Originally posted by iPhotoStuff: Hi Folks, now, I read in a bunch of places that different compilers require different returns for main? Frankly, I have no idea…
MacNN Development by PBG4 User

C++, Xcode telling me main() needs int?! — #4

the return value usually just tells the OS the exit status of the program. Just change that main function to read: int main() { ... } and at the end of the program before the last…
MacNN Development by itistoday

C++, Xcode telling me main() needs int?! — #5

another spot that discusses something similar to this question is down a little ways titled "help please" posted by zanyterp . . . (me). perhaps can help little bit more. . . .whi…
MacNN Development by zanyterp

C++, Xcode telling me main() needs int?! — #6

Quote: Originally posted by zanyterp: while on this topic here, if i declare a function that main() calls, does void functionName() work? (including the ';' as needed of…
MacNN Development by Chuckit

C++, Xcode telling me main() needs int?! — #7

Quote: Originally posted by zanyterp: another spot that discusses something similar to this question is down a little ways titled "help please" posted by zanyterp . . . …
MacNN Development by PBG4 User

C++, Xcode telling me main() needs int?! — #8

Quote: Originally posted by PBG4 User: Yes, you can create void functions. It's just that some compilers expect the main method to be declared as int main... The C+…
MacNN Development by Chuckit

C++, Xcode telling me main() needs int?! — #9

Quote: Originally posted by Chuckit: void functionName(); is a valid declaration. You should just be including the header file, though. so instead of declaring the…
MacNN Development by zanyterp

C++, Xcode telling me main() needs int?! — #10

Normally you declare your functions in a header file and define them in an implementation file. Like this: code:// SomeClass.h #ifndef SOMECLASS_H #define SOMECLASS_H class Some…
MacNN Development by Chuckit

C++, Xcode telling me main() needs int?! — #11

Quote: Originally posted by Chuckit: Normally you declare your functions in a header file and define them in an implementation file. Like this: code:// SomeClass.h #if…
MacNN Development by zanyterp

C++, Xcode telling me main() needs int?! — #12

Well, you don't want to include a file that's going to be compiled in another file that's going to be compiled. That will just confuse things. Also, header files do make your desig…
MacNN Development by Chuckit
mp.ls