hackerpro
Mar 26, 01:21 AM
Hey guys, sorry if this question is asked often.
I have an iPod Touch 4G that I had jailbroken on 4.2.1, but I messed with some system files that I shouldn't have messed with and I had to restore and update to 4.3. Is there anyway I can downgrade to 4.2.1 so I can jailbreak again?
You can but its very complicated you must have your 4.2.1 file saved
I have an iPod Touch 4G that I had jailbroken on 4.2.1, but I messed with some system files that I shouldn't have messed with and I had to restore and update to 4.3. Is there anyway I can downgrade to 4.2.1 so I can jailbreak again?
You can but its very complicated you must have your 4.2.1 file saved
simsaladimbamba
Apr 28, 06:41 PM
I've always heard of the 4-pin being referred to as iLink on Sony devices or mini firewire everywhere else.
I thought FW400 and 800 refer to the speed, so 600 makes no sense to me at all.
Me too, I never heard of FW600 for the 6-pin port.
The 4-pin port is often referred to as DV-IN or DV-OUT too.
http://img594.imageshack.us/img594/482/firewire4final.png
I thought FW400 and 800 refer to the speed, so 600 makes no sense to me at all.
Me too, I never heard of FW600 for the 6-pin port.
The 4-pin port is often referred to as DV-IN or DV-OUT too.
http://img594.imageshack.us/img594/482/firewire4final.png
tjb1
May 2, 02:58 PM
I dont understand why you insist on spending $60+ on a converter board and bracket...everyone including myself have a lot of success with the one from smk312 on ebay and I believe its $20-$28. There are really no electronics on that board, it basically just converts from one plug to another.
notjustjay
Mar 13, 08:17 PM
This may sound totally obvious, but spend time on YouTube. There are a lot of folks people your age doing cool stuff and putting it on YouTube (Lucas Cruikshank aka "Fred" being one obvious, and rather obnoxious, example). Not all of it is good, and some of it is frankly terrible, but you quickly get a sense of what's cool and what's not (for example, YouTube seems to have popularized the disjointed jump cut.) You can take inspiration from the stuff that's done well, and learn from the bad stuff too by taking note of what they did wrong and how you would have done it differently.
simsaladimbamba
Feb 4, 01:18 PM
The size of neither HDD has any effect on the outcome, only the size of the actual backup. If you have a backup of 150GB, then it will take roughly 150GB on the 320GB HDD and the other 170GB will be there for you to use.
Time Machine FAQ (http://web.me.com/pondini/Time_Machine/FAQ.html)
Time Machine FAQ (http://web.me.com/pondini/Time_Machine/FAQ.html)
Ainkor
Mar 13, 06:31 PM
I did just that, threw my unused iPhone 4 sim in my new iPad 2 and got a nasty message this morning from AT&T basically telling me that I had 30 days to get a proper plan on it or I would be cut off.
I called AT&T and had them switch my iPhone 4 plan to the iPad post pay plan and it's all good!
I was actually surprised that they did it, but ask for a supervisor. The front line reps are not trained well on the new post pay plans.
If you just want to do it occasionally, you probably should be fine but just be aware that they can almost immediately tell if you switch em.
I called AT&T and had them switch my iPhone 4 plan to the iPad post pay plan and it's all good!
I was actually surprised that they did it, but ask for a supervisor. The front line reps are not trained well on the new post pay plans.
If you just want to do it occasionally, you probably should be fine but just be aware that they can almost immediately tell if you switch em.
rye9
Sep 28, 03:51 PM
With all of these updates lately I feel 10.4.8 could be in a matter of minutes :)
surfsofa
Jan 24, 10:02 AM
This information is a couple of years old, but should still work...
Convert Windows Outlook mail to Mail.app
Thu, Oct 3 '02 at 09:13AM � from: stephen.bates Converting the corporate Windows user who has all their old email in .pst files for years back? Help them on their way by getting their mail out of the proprietary .pst format and into standards based mbox format. The process sucks a little bit, but it does work if you have both machines on the same network.
On your current Windows machine:
Invitaciones de Baby Shower
invitaciones para baby shower
Convert Windows Outlook mail to Mail.app
Thu, Oct 3 '02 at 09:13AM � from: stephen.bates Converting the corporate Windows user who has all their old email in .pst files for years back? Help them on their way by getting their mail out of the proprietary .pst format and into standards based mbox format. The process sucks a little bit, but it does work if you have both machines on the same network.
On your current Windows machine:
whooleytoo
Jul 22, 11:27 AM
General Sentiment is part of an elite team of Mercenary Ex-Servicemen who reside in the shadows of the Los Angeles Underground. The full contingent is:
General Sentiment (Responsible for monitoring morale)
Major Improvement (Morale Uplifts)
Admiral Butterfly (Aesthetics)
Corporal Punishment (Deals with those who lower morale)
Private Practice (deals with those unfortunate enough to have faced Corporal Punishment)
and finally...
Seaman Staines (added to the team only to provide Murdock-style comedy value at the end of each scene).
I'm shocked you have forgotten Colonel Panic, who has been known to stop computers dead with his amazing multi-lingual skills.
General Sentiment (Responsible for monitoring morale)
Major Improvement (Morale Uplifts)
Admiral Butterfly (Aesthetics)
Corporal Punishment (Deals with those who lower morale)
Private Practice (deals with those unfortunate enough to have faced Corporal Punishment)
and finally...
Seaman Staines (added to the team only to provide Murdock-style comedy value at the end of each scene).
I'm shocked you have forgotten Colonel Panic, who has been known to stop computers dead with his amazing multi-lingual skills.
Saphrosit
Apr 7, 12:49 PM
Hi,
I wrote a simple server application in C. This server do nothing except print the received message, then exit. Here is the code
int listenfd,connfd,n;
struct sockaddr_in servaddr,cliaddr;
socklen_t clilen;
char *mesg = (char*) malloc(1000*sizeof(char));
listenfd=socket(PF_INET,SOCK_STREAM,0);
bzero(&servaddr,sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = INADDR_ANY;
servaddr.sin_port=htons(20600);
bind(listenfd,(struct sockaddr *)&servaddr,sizeof(servaddr));
listen(listenfd,5);
clilen=sizeof(cliaddr);
connfd = accept(listenfd,(struct sockaddr *)&cliaddr,&clilen);
n = (int) recvfrom(connfd,mesg,1000,0,(struct sockaddr *)&cliaddr,&clilen);
sendto(connfd,mesg,n,0,(struct sockaddr *)&cliaddr,sizeof(cliaddr));
printf("-------------------------------------------------------\n");
mesg[n] = 0;
printf("Received the following:\n");
printf("%s\n",mesg);
printf("-------------------------------------------------------\n");
close(connfd);
close(listenfd);
I managed to establish a connection using telnet and running
Anamar Invitaciones: DESPEDIDA
Invitaciones para Baby Shower
Tarjetas Gratis De Baby Shower
imagenes con texto para
RE: Necesito texto para
Baby Shower Alrededor del
con los Baby Shower kits,
Inicio gt; Invitaciones de Baby
amigys ocupo textos para una
I wrote a simple server application in C. This server do nothing except print the received message, then exit. Here is the code
int listenfd,connfd,n;
struct sockaddr_in servaddr,cliaddr;
socklen_t clilen;
char *mesg = (char*) malloc(1000*sizeof(char));
listenfd=socket(PF_INET,SOCK_STREAM,0);
bzero(&servaddr,sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = INADDR_ANY;
servaddr.sin_port=htons(20600);
bind(listenfd,(struct sockaddr *)&servaddr,sizeof(servaddr));
listen(listenfd,5);
clilen=sizeof(cliaddr);
connfd = accept(listenfd,(struct sockaddr *)&cliaddr,&clilen);
n = (int) recvfrom(connfd,mesg,1000,0,(struct sockaddr *)&cliaddr,&clilen);
sendto(connfd,mesg,n,0,(struct sockaddr *)&cliaddr,sizeof(cliaddr));
printf("-------------------------------------------------------\n");
mesg[n] = 0;
printf("Received the following:\n");
printf("%s\n",mesg);
printf("-------------------------------------------------------\n");
close(connfd);
close(listenfd);
I managed to establish a connection using telnet and running
ZipZap
Apr 19, 10:19 AM
PM'd
iBoyfriend
Apr 24, 09:26 AM
lol, first the camera/phone/sms icons and signal bars, now you want an iPhone looking case? :P
Yup :)
Yup :)
louis Fashion
May 5, 09:57 PM
Always beware of geeks, bearing gifts. LOL
LOL, good cartoon. UBL did not have a phone. I guess he was not an Appleista.
LOL, good cartoon. UBL did not have a phone. I guess he was not an Appleista.
ViviUO
May 3, 02:13 PM
They're all the same. Get the fastest/cheapest.
rushad0
May 4, 06:21 PM
Hello World, my first post on macrumors
I tried searching but most of the information was not in recent time, so figured to post a new thread.
I bought a used 3GS 8GB yesterday from a person. The phone is unlocked and jailbroken.
Here is the relevant information:
Version: 4.3.2 (8H7)
Model: MC640LL
Modem Firmware (baseband, i think): 06.15.00
Currently I am using it with T-Mobile, so I know it is unlocked properly.
My question is....
The phone has apps and settings from the previous user. I want to 'reset' or 'restore' or something like that to remove all settings and content from previous user.
If I go to Settings --> General --> Reset and perform a reset, will my phone still be usable with T-Mobile?
Thank you all. Hope I provided enough info to answer.
I tried searching but most of the information was not in recent time, so figured to post a new thread.
I bought a used 3GS 8GB yesterday from a person. The phone is unlocked and jailbroken.
Here is the relevant information:
Version: 4.3.2 (8H7)
Model: MC640LL
Modem Firmware (baseband, i think): 06.15.00
Currently I am using it with T-Mobile, so I know it is unlocked properly.
My question is....
The phone has apps and settings from the previous user. I want to 'reset' or 'restore' or something like that to remove all settings and content from previous user.
If I go to Settings --> General --> Reset and perform a reset, will my phone still be usable with T-Mobile?
Thank you all. Hope I provided enough info to answer.
quagmire
Feb 17, 07:26 PM
Thanks Captain Obvious. I was just being sarcastic.
Next time use a smile to indicate sarcasm. You can't tell sarcasm reading from words and I have seen some post like this before and was serious.
Next time use a smile to indicate sarcasm. You can't tell sarcasm reading from words and I have seen some post like this before and was serious.
Stella
Jul 23, 12:20 PM
XCode 4 looks like its going to take a big step foward. Hopefully as large as the one between ProjectBuilder and XCode.
I'm really looking forward to this. Any know of a possible release date?
I'm really looking forward to this. Any know of a possible release date?
macrumorsuser10
Apr 18, 12:10 AM
they will exchange it. just show them what is worng.
If I bring this to the Genius Bar, which is the more likely outcome: they will fix it, or exchange it? I'd like to know so I can start copying my files off of the computer.
If I bring this to the Genius Bar, which is the more likely outcome: they will fix it, or exchange it? I'd like to know so I can start copying my files off of the computer.
walangij
Feb 11, 12:35 AM
What's everyone's favorite CMS and what kind of CMS do you have? Recently I've been taking web development more seriously and have been working primarily with Drupal. I really enjoy Wordpress though and find it much easier to teach a client how to use WP3 compared to D7. I've never tried Joomla, and have been seeing what all the fuss is about RoR a couple years late :p.
My next personal project is a niche community site, trying to decide what would be the best fit. I know another drupal developer who has much more experience, but we don't know if it'd be the ideal platform for what we want to create.
My next personal project is a niche community site, trying to decide what would be the best fit. I know another drupal developer who has much more experience, but we don't know if it'd be the ideal platform for what we want to create.
gsfesz
Apr 6, 07:00 PM
i have upgraded to mac osx lion but found it to buggy but i only have a back from lion any suggestions? thanks in advance:confused:
ericsthename
Jan 13, 05:17 PM
When it comes right down to it there are many ways to look at this dispute:
Apple pioneered the "i"XXXX nomenclature, and therefore it seems a little cheesy and cheap for any other company to release products with this format (imho). It's a little bit like Adidas releasing shoes with nike's "Air" name tacked on...
On the other hand, Cisco did patent the name and release a product with the name - I'm sure apple could've come up with another cool sounding name for the product (one that hasn't been tossed around rumor sites for years).
At the end of the day, it's really just a corporate debacle, one that has virtually no import to the consumer end, since the cellphone device that Apple has announced will almost certainly be released anyhow (perhaps not as the iPhone in all countries).
Cisco (seemingly) played by the rules, but at the same time their decision to utilize an apple standard naming format is bigtime unoriginal and deserves to be doomed to the depths of whatever hell exists for such corporate donkeys.
Apple pioneered the "i"XXXX nomenclature, and therefore it seems a little cheesy and cheap for any other company to release products with this format (imho). It's a little bit like Adidas releasing shoes with nike's "Air" name tacked on...
On the other hand, Cisco did patent the name and release a product with the name - I'm sure apple could've come up with another cool sounding name for the product (one that hasn't been tossed around rumor sites for years).
At the end of the day, it's really just a corporate debacle, one that has virtually no import to the consumer end, since the cellphone device that Apple has announced will almost certainly be released anyhow (perhaps not as the iPhone in all countries).
Cisco (seemingly) played by the rules, but at the same time their decision to utilize an apple standard naming format is bigtime unoriginal and deserves to be doomed to the depths of whatever hell exists for such corporate donkeys.
design-is
Apr 12, 02:42 PM
...file > export > layouts as project > pick version 8. Will this work in 8.5?
Yes, should do :)
All versions of QuarkXpress should open docs which were created with earlier versions. Though there is the occasional passport / multi-langauage version problem which is just a pain in the bum: "This is a multiple language document and can only be opened in QuarkXPress Passport. [287]" �*but that's a different topic entirely.
Yes, should do :)
All versions of QuarkXpress should open docs which were created with earlier versions. Though there is the occasional passport / multi-langauage version problem which is just a pain in the bum: "This is a multiple language document and can only be opened in QuarkXPress Passport. [287]" �*but that's a different topic entirely.
asphalt-proof
Dec 2, 08:51 PM
I also sold the exact same machine on eBay in August. I got $1,000 for it.
I would really like to get that price. I have never sold anything on eBay. How easy is it?
I would really like to get that price. I have never sold anything on eBay. How easy is it?
toke lahti
Jan 17, 05:19 PM
So, was there any?
No hay comentarios:
Publicar un comentario