JowFlowAble
Feb 14, 05:08 AM
i am jailbroken on my ipod touch 4gen and when i tryed, it never worked :( :mad: :mad: :confused:
h1r0ll3r
May 4, 02:13 PM
how did you reinstall you jb packages?
i never tried just updating, i usually do a full restore, the last one i did i wiped everything of my phone and started fresh cus it was a little sluggish and slow, after that is been running nice and smooth
You reinstall JB packages through Cydia (one by one) or by using AptBackup or PkgBackup or some other app like these.
The update simply overwrites the files on your phone but still keeps everything intact like your music, photos, apps etc. The full restore will wipe out everything making you start from scratch.
I just did a full restore to 4.3.2 since mine was sluggish and slow. You can do either or but I always prefer doing a full restore since it clears everything out.
i never tried just updating, i usually do a full restore, the last one i did i wiped everything of my phone and started fresh cus it was a little sluggish and slow, after that is been running nice and smooth
You reinstall JB packages through Cydia (one by one) or by using AptBackup or PkgBackup or some other app like these.
The update simply overwrites the files on your phone but still keeps everything intact like your music, photos, apps etc. The full restore will wipe out everything making you start from scratch.
I just did a full restore to 4.3.2 since mine was sluggish and slow. You can do either or but I always prefer doing a full restore since it clears everything out.
Lau
Sep 22, 06:50 PM
Thanks for your help, guys. The file can be found at here (http://www.laurabarnard.co.uk/trifle) , but the Get info attachment will hopefully help. Thanks.
adcx64
Apr 7, 04:18 PM
Hi, I am about to buy am iBook g3 on eBay. The seller sates that the unit powers on but spits the cd tray out and has the dreaded blinking question mark. Can I just use my Panther install disks to reformat it? Or could this be more serious. Also, will my iBook clamshell ac adapter work on this? Thanks!
more...
rebootit
Feb 26, 08:51 AM
Anyone help on this one. I have had a mini server running for over a year problem free. Last night sometime the server came up with a warning that there was another machine on the network with the same name so it decided to change its name. It was dnssigns and now is reading dnssigns2. Problem is NO other machine on the network has a name anywhere close to that. This has caused havoc as far as apple tvs etc. All functions are running fine, nothing seems out of place, network traffic is normal etc. I still have all admin control. Any idea why a machine would allow, say a person trying to hack into the network with a same named machine and no passwords, to get in and then decide to change its name?
tpjunkie
Apr 11, 03:14 PM
G5 Powerbooks aren't coming out time soon, while the heat output of the 970 has been somewhat alleviated by the 970FX, the system controller chip still produces a large amount of heat; removing it or using one operating a lower speed would defeat the point of using a 970 anyway. I expect the G4 powerbooks to hit 1.5 Ghz before the switch to the G5.
more...
HE15MAN
Apr 9, 06:13 PM
It adequate my proximity sensor sketchy as hell
BTGeekboy
Apr 27, 09:27 PM
What's everyone's SSD preferred SSD these days? I've got a 2010 MBP, so the Vertex 3 is not a good choice (expensive and less performant on a 3gbps connection), and I'm afraid of getting the junk version of the Vertex 2.
I've heard good things about OWC, but I have a bunch of Amazon gift certificates ($260 worth), so they're unfortunately not an option. (The only 240GB I could find on there was from one seller I've never heard of, memoryc -- no thanks.)
I'd like to get over 200GB if the price is right.
I've heard good things about OWC, but I have a bunch of Amazon gift certificates ($260 worth), so they're unfortunately not an option. (The only 240GB I could find on there was from one seller I've never heard of, memoryc -- no thanks.)
I'd like to get over 200GB if the price is right.
more...
Intell
Apr 27, 04:04 PM
If it does have a Beta of Mac OS X it would be of Jaguar, 10.2. But I think that it is very unlikely that an OS would stay intact on a computer that of this vintage, if it even has a hard drive.
Themeparkforum
Apr 1, 04:23 PM
Hey,
I Used To Play This Game For Hours On PC And On Playstation, I Think Its Great That They have Realeased It Onto A More Up-To-Date Console And Its Great With The Touch-Go Use, It Takes Full Advantage of The DS And Still Keeps The Game Going As The PC,Playsation Version.
I Was Expecting The DS Version To Be Much More Difficult To Use, Seeing Theres Less Buttons And Small Screen But It Works Really Well For It!
If You Dont Have It then I Recomend You Go Out And Buy It :)
For Those That Love This Game Lots Like I Do I have Created A Special Forum For Fans :)
http://themeparkds.myfreeforum.org
Please Join If You Want!
I Used To Play This Game For Hours On PC And On Playstation, I Think Its Great That They have Realeased It Onto A More Up-To-Date Console And Its Great With The Touch-Go Use, It Takes Full Advantage of The DS And Still Keeps The Game Going As The PC,Playsation Version.
I Was Expecting The DS Version To Be Much More Difficult To Use, Seeing Theres Less Buttons And Small Screen But It Works Really Well For It!
If You Dont Have It then I Recomend You Go Out And Buy It :)
For Those That Love This Game Lots Like I Do I have Created A Special Forum For Fans :)
http://themeparkds.myfreeforum.org
Please Join If You Want!
more...
robbieduncan
Apr 24, 07:54 AM
Actually there is a malloc, it's embedded in the memcpy.
My mistake. But the underlying problem is the same: the address of returnElement is on the stack. The address of the memory the at malloced in the call to memcpy is "lost" as it is never saved into a variable. So that malloced memory is leaked.
But, if I understand you correctly, the act of copying from the heap to the stack has the same effect of free()?
No. Absolutely 100% not. You have allocated space on the heap with the malloc. The malloc returned the address for you to free later. You did not save this address so cannot call free but that is OK as memcpy also returns the destination address (so as you can put the memcpy and malloc in one line like you have). But you fail to save the address their, instead dereferencing the pointer and saving that value in a variable. So at this point the malloced space on the heap is leaked. This is a problem. The space you allocated on the stack for the double is fine: it will get cleaned up for you.
The solution is to split this into two lines. You need to have a void * pointer variable that you store the return from memcpy in. You can then dereference and cast the that into returnElement. And finally free the void * pointer returned from memcpy.
My mistake. But the underlying problem is the same: the address of returnElement is on the stack. The address of the memory the at malloced in the call to memcpy is "lost" as it is never saved into a variable. So that malloced memory is leaked.
But, if I understand you correctly, the act of copying from the heap to the stack has the same effect of free()?
No. Absolutely 100% not. You have allocated space on the heap with the malloc. The malloc returned the address for you to free later. You did not save this address so cannot call free but that is OK as memcpy also returns the destination address (so as you can put the memcpy and malloc in one line like you have). But you fail to save the address their, instead dereferencing the pointer and saving that value in a variable. So at this point the malloced space on the heap is leaked. This is a problem. The space you allocated on the stack for the double is fine: it will get cleaned up for you.
The solution is to split this into two lines. You need to have a void * pointer variable that you store the return from memcpy in. You can then dereference and cast the that into returnElement. And finally free the void * pointer returned from memcpy.
paulypants
Mar 11, 12:49 PM
Recently I have had an issue where if I get 1 piece of new mail the Dock Icon tells me that there is 3 instead of one. If I quit and relaunch Mail it will display correclty...any ideas?
thanks...
thanks...
more...
cantthinkofone
Mar 16, 09:01 PM
Infraction<Misdemeanor<Felony
LethalWolfe
Apr 7, 04:23 PM
Leaked... With intro and everything! Pretty amazing how leaked videos are so polished. ;)
Just because it was intended for in-house or business-to-business use doesn't mean it has to look like crap. We produce a fair amount of in-house promos that either go to the marketing/sales reps or get shown off to the suits up stairs and the videos look as slick as anything you'd see on TV.
Lethal
Just because it was intended for in-house or business-to-business use doesn't mean it has to look like crap. We produce a fair amount of in-house promos that either go to the marketing/sales reps or get shown off to the suits up stairs and the videos look as slick as anything you'd see on TV.
Lethal
more...
AlphaTech
Jul 22, 06:28 PM
Originally posted by G4scott
this makes me want to buy a mug :cool:
Then [as the commercial often said] just do it... :D
this makes me want to buy a mug :cool:
Then [as the commercial often said] just do it... :D
Kees Braam
Jan 9, 12:15 PM
The first thing you need to confirm is that the logo is indeed in vector form when you open it in Illustrator and not just a bounding box indicating pixel-based art.
Toggle the keyboard shortcut Command + Y or go to the pulldown menu View > Outline (or alternatively Preview) to view your art in both modes.
If you have actual vector art, then check the following...
• Pulldown menu Window > Layers - are there any locked layers?
• Pulldown menu Object - is Unlock All in black? That would indicate an object has been locked.
Those would be two things to check.
I've checked these things that you've mentioned, but the problem is that I just can't find an option to cut a piece out of the logo. Here is an example (imagine it as a nicely designed logo):
''MacRumors: Forums
mac community discussion forums''
Just imagine the text to be in a nice logo with different colors and stuff. What I want to do is to cut only the part ''MacRumors: Forums'' out of it so that I can use it separately. I know that Photoshop can do it, but the problem with Photoshop is that it converts .EPS (vector) files to a pixel image and I need to scale it up in Illustrator afterwards so this isn't an option for me. Illustrator just doesn't seem to have a simple scissor/cut tool to cut out parts of a placed image, or am I totally missing something?
Anyway: thanks for your reply.
Toggle the keyboard shortcut Command + Y or go to the pulldown menu View > Outline (or alternatively Preview) to view your art in both modes.
If you have actual vector art, then check the following...
• Pulldown menu Window > Layers - are there any locked layers?
• Pulldown menu Object - is Unlock All in black? That would indicate an object has been locked.
Those would be two things to check.
I've checked these things that you've mentioned, but the problem is that I just can't find an option to cut a piece out of the logo. Here is an example (imagine it as a nicely designed logo):
''MacRumors: Forums
mac community discussion forums''
Just imagine the text to be in a nice logo with different colors and stuff. What I want to do is to cut only the part ''MacRumors: Forums'' out of it so that I can use it separately. I know that Photoshop can do it, but the problem with Photoshop is that it converts .EPS (vector) files to a pixel image and I need to scale it up in Illustrator afterwards so this isn't an option for me. Illustrator just doesn't seem to have a simple scissor/cut tool to cut out parts of a placed image, or am I totally missing something?
Anyway: thanks for your reply.
more...
stridemat
Mar 3, 08:59 AM
It only suggests unnecessary urgency and importance to the thread the poster has written.
Thanks,
.
Surely that would be !!!!!!!!!!
???????? would mean its a very big question.
Thanks,
.
Surely that would be !!!!!!!!!!
???????? would mean its a very big question.
Blackheart
Apr 4, 08:07 PM
Yeah, i'm getting quite anxious about this PM update. I'm still wondering about ATI's involvement in this possible delay. Saying they're going to release the Radeon 9800 Pro Mac SE by the end of January but it's still nowhere in sight. tisk, tisk, don't be such a tease.
MattG
Sep 17, 11:37 PM
I think he's abrasive and obnoxious.
sidgriffey
Mar 16, 12:11 PM
I have a 2007 Macbook Pro Core 2 Duo 2.4GHz with a 40GB SSD that I boot snow leopard and apps from and a 160GB HDD that is in an optibay and stores my data/ holds my home folder (i.e., my superdrive is in an external enclosure).
If I want to install Lion, what is the best way for me to do this without losing my snow leopard setup? I have some 25GB left on the SSD last time I checked. Should I partition it? If I have a Mac Mini with snow leopard and all my stuff should I just install Lion clean over snow leopard on my MBP or is Lion too buggy?
Thanks.
If I want to install Lion, what is the best way for me to do this without losing my snow leopard setup? I have some 25GB left on the SSD last time I checked. Should I partition it? If I have a Mac Mini with snow leopard and all my stuff should I just install Lion clean over snow leopard on my MBP or is Lion too buggy?
Thanks.
wordoflife
Apr 23, 10:22 AM
I didn't read anything about low volume in the reviews, but here are these
http://www.newegg.com/Product/Product.aspx?Item=N82E16875205249
http://www.newegg.com/Product/Product.aspx?Item=N82E16875176277
I don't think that these will need a data plan, but I'm not entirely sure (especially on the first one). But they are probably more expensive than you were originally looking to spend.
http://www.newegg.com/Product/Product.aspx?Item=N82E16875205249
http://www.newegg.com/Product/Product.aspx?Item=N82E16875176277
I don't think that these will need a data plan, but I'm not entirely sure (especially on the first one). But they are probably more expensive than you were originally looking to spend.
ipadfreak
Apr 11, 04:21 PM
Hi,
I need a REALLY cool iphone case. Kinda like the Switch Easy stuff, just a little thinner. Thanks!
I need a REALLY cool iphone case. Kinda like the Switch Easy stuff, just a little thinner. Thanks!
crazzyeddie
Nov 15, 07:47 PM
Just a quick question... I downloaded the SMP Intel version for my MacBook Pro, but I can't figure out how to pause it! Last night I did a ctrl-c (quit) and it closed out... but this morning it started all over! What on earth is the "pause" command?
(yes I know I don't need to stop it for most things, but I like to at night and while I study because of the extra noise it creates.)
(yes I know I don't need to stop it for most things, but I like to at night and while I study because of the extra noise it creates.)
NYR99
May 3, 04:57 PM
If you don't know what it is, don't delete it.
Yes, I know that. That is why I am asking on here if any one knows what they are and if they are safe to delete....
Yes, I know that. That is why I am asking on here if any one knows what they are and if they are safe to delete....
No comments:
Post a Comment