dornoforpyros
Sep 9, 08:45 AM
ohh how about those corporate boot lickers in U2?
thejadedmonkey
Apr 19, 06:56 PM
I run torchlight just fine on my 4 year old MBP... but that game was designed for a netbook ;)
I remember when L4D came out, and my (at the time 2 year old MBP I believe) only met the minimum requirements... The general rule of thumb is, if you're a PC gamer, you keep a PC to game on, or you stop gaming.
I remember when L4D came out, and my (at the time 2 year old MBP I believe) only met the minimum requirements... The general rule of thumb is, if you're a PC gamer, you keep a PC to game on, or you stop gaming.
MrFusion
Apr 24, 07:52 AM
Basically you are freeing memory you did not malloc/calloc. Your double returnElement within the last loop is requesting space to store a double. This will be on the stack. You are not mallocing or callocing the space for this double (if you did it'd be in the heap). You then memcpy into this space (which is fine: you are allowed to do that). You then free the space that is on the stack. You can't do that. You can't free on the stack. That is automatically done when the current stack frame is popped.
My main concern was that the malloc within the memcpy did not have its own free statement. But, if I understand you correctly, the act of copying from the heap to the stack has the same effect of free()? So free() is only required to release memory that resides on the heap?
If that doesn't make sense (if you don't know what the heap and stack are for example) it's time to learn basic C properly...
Trying to. Understanding basic CPU architecture (heap vs stack) seems useful. I just started watching the MIT opencourseware*. Hopefully it will be in there. If not, any book recommendations?
*ah, so that's what is behind big O notation... cool...
My main concern was that the malloc within the memcpy did not have its own free statement. But, if I understand you correctly, the act of copying from the heap to the stack has the same effect of free()? So free() is only required to release memory that resides on the heap?
If that doesn't make sense (if you don't know what the heap and stack are for example) it's time to learn basic C properly...
Trying to. Understanding basic CPU architecture (heap vs stack) seems useful. I just started watching the MIT opencourseware*. Hopefully it will be in there. If not, any book recommendations?
*ah, so that's what is behind big O notation... cool...
tim2006
Apr 15, 12:08 PM
what happened to the final product?
more...
R94N
Aug 18, 05:51 AM
The Northern Line isn't too bad on that front. The worst line is definitely the Metropolitan, on which you sometimes find it difficult to stay in your seat it jumps around so much.
LOL :) Must get pretty bad at rush hour then; people standing up and all that...
LOL :) Must get pretty bad at rush hour then; people standing up and all that...
NewbieNerd
Oct 22, 10:45 AM
I've heard that ruby on wheels is a really good editor - it will allow you to do allsorts, but you need to be pretty handy with code side of designing... if not, just take a bit of time to look into it...
You mean ruby on rails, lol. :)
You mean ruby on rails, lol. :)
more...
Spectrum
Dec 9, 03:39 PM
ITASOR, the lines you see when you put other LCDs on the wrong refresh rate: do they _really_ look like the alternate 1 pixel wide static horizontal lines on the PBs?
I only ask, because the PBs also show a variety of wider horizontal "interference" banding and wavy dynamic diagonal banding in some colours, which is worse in the top left of the screen. And I wonder if this is what you refer to.
Cheers!
p.s Not got your pixelmurder to do its trick yet on one rouge sticky pixel - but it's fun all the same :)
Personally, I think it's a refresh rate issue which I think is a software issue. If I put any of my LCDs on the wrong refresh rate, they have identical lines to those of the powerbook.
I only ask, because the PBs also show a variety of wider horizontal "interference" banding and wavy dynamic diagonal banding in some colours, which is worse in the top left of the screen. And I wonder if this is what you refer to.
Cheers!
p.s Not got your pixelmurder to do its trick yet on one rouge sticky pixel - but it's fun all the same :)
Personally, I think it's a refresh rate issue which I think is a software issue. If I put any of my LCDs on the wrong refresh rate, they have identical lines to those of the powerbook.
calculus
Jan 13, 12:12 PM
you make a device that streams media from your mac to your tv .. and you dont call it iTV ..you call is apple tv! .. cuz callign it iTV would be too easy ..
more...
Kemba Walker, Nolan Smith and
UConn guard Kemba Walker
more...
Kemba Walker
UConn#39;s Kemba Walker declared
more...
kemba walker game winner 3 10
UConn#39;s Kemba Walker (15) goes
more...
Kemba Walker: Connecticut
kemba walker : : Kemba Walker,
more...
Big East: Kemba Walker nails
there was Kemba Walker and
Where Does Kemba Walker Rank
more...
codymac
Apr 8, 02:15 PM
That's essentially what I was looking for as well, first just a way of figuring out how the backlight LED levels are determined and then trying to see if it could be controlled.
Interesting. It works great for me in Xcode 3.2.6 on OS X 10.6.6. Are you using another version or OS? How does it break for you? I just created a new Application -> Command Line Tool -> Foundation, add IOKit to the project and away we go.
B
Mea culpa.
I just sort of autopiloted through creating a C program in Xcode 4. I should know better since I've been passing IOKit & CoreFoundation frameworks to gcc in a Terminal window for the past couple of evenings.
:o
Proof positive - yours works a treat on Xcode 4.0 on 10.6.7 on a MBP 8,2. Apologies for the confusion.
:)
FWIW, I've been basically trying to copy & update the OSX Book code you linked to but also found these other sources (using IOConnectCallScalarMethod):
http://code.google.com/p/vavi-sensor/source/browse/trunk/vavi-ambientlight/src/main/jni/LmuWrapper.c?spec=svn14&r=14
http://qt.gitorious.org/qt-mobility/qt-mobility/commit/6992060873beaa52aea43f14835f899ba45642e8/diffs?diffmode=sidebyside&fragment=1#src/systeminfo/qsysteminfo_mac.mm
I never stumbled across the google link you posted. Good info.
Interesting. It works great for me in Xcode 3.2.6 on OS X 10.6.6. Are you using another version or OS? How does it break for you? I just created a new Application -> Command Line Tool -> Foundation, add IOKit to the project and away we go.
B
Mea culpa.
I just sort of autopiloted through creating a C program in Xcode 4. I should know better since I've been passing IOKit & CoreFoundation frameworks to gcc in a Terminal window for the past couple of evenings.
:o
Proof positive - yours works a treat on Xcode 4.0 on 10.6.7 on a MBP 8,2. Apologies for the confusion.
:)
FWIW, I've been basically trying to copy & update the OSX Book code you linked to but also found these other sources (using IOConnectCallScalarMethod):
http://code.google.com/p/vavi-sensor/source/browse/trunk/vavi-ambientlight/src/main/jni/LmuWrapper.c?spec=svn14&r=14
http://qt.gitorious.org/qt-mobility/qt-mobility/commit/6992060873beaa52aea43f14835f899ba45642e8/diffs?diffmode=sidebyside&fragment=1#src/systeminfo/qsysteminfo_mac.mm
I never stumbled across the google link you posted. Good info.
Vector
Jul 3, 05:14 PM
I have jaguar running on my wallstreet 233 and it works fine and is very stable. I do not use it as my main computer anymore but it works fine when i need it. Freehand and Photoshop run fine on it as do less intensive apps, although long actions in ps can get tedious.
I wouldn't be surprised to see a hack for panther once it comes out unless there is some large hardware/firmware problem to overcome.
I wouldn't be surprised to see a hack for panther once it comes out unless there is some large hardware/firmware problem to overcome.
more...
SciFrog
Oct 20, 10:34 PM
I predict 45 mins per frame, 15k PPD.
Photorun
Dec 21, 09:16 AM
Clearly they could have saved the money they put into that trailer (it couldn't have been done cheap) and put it into, say, getting actual factual information?
more...
moez
Apr 30, 08:04 PM
Hi Craig
I also have a 2007 MBP which had 2 upgrades from Tiger.
When I upgraded to an SSD, I saw that my Library folder was around 12gb in size and was not getting the full benefits of SSD which had been advertised. 2gb were for email database but I had no idea of other 10gb...
The best I found was to re-install and start afresh with new installs and just the apps I needed.
I used an application which copied folder names into a text file. I formatted the computer and picked and chose the applications I wanted to reinstall.
Used TimeMachine to copy My Documents folder back and done.
Just keep in mind I used Firefox sync which copied my bookmarks, history etc. (although Add-Ons had to be reinstalled).
Couldn't have been happier to just format it rather than messing around.
I also have a 2007 MBP which had 2 upgrades from Tiger.
When I upgraded to an SSD, I saw that my Library folder was around 12gb in size and was not getting the full benefits of SSD which had been advertised. 2gb were for email database but I had no idea of other 10gb...
The best I found was to re-install and start afresh with new installs and just the apps I needed.
I used an application which copied folder names into a text file. I formatted the computer and picked and chose the applications I wanted to reinstall.
Used TimeMachine to copy My Documents folder back and done.
Just keep in mind I used Firefox sync which copied my bookmarks, history etc. (although Add-Ons had to be reinstalled).
Couldn't have been happier to just format it rather than messing around.
ChicoWeb
Aug 30, 01:35 PM
I tried all suggestions in this thread and the song still won't play on Mac's IE or Firefox. It is not just my computer that won't cooperate, it is also the client's computer.
Try this link... http://www.saucedesigns.com/sauce.html (warning - the song will immediately play when you load this link... it is designed to be a pop-up that is initiated by the customer... so they don't have to listen if they don't want to!)
You will see how the song plays on Mac's Safari, but not IE/Firefox. It plays just fine on IE/Firefox for PC, so it isn't a browser-specific thing, it has to be a Mac/PC thing. Right?
Thanks!
Define your mime type in .htaccess...If that doesn't work, call your host and they may be able to update the settings..
Try this link... http://www.saucedesigns.com/sauce.html (warning - the song will immediately play when you load this link... it is designed to be a pop-up that is initiated by the customer... so they don't have to listen if they don't want to!)
You will see how the song plays on Mac's Safari, but not IE/Firefox. It plays just fine on IE/Firefox for PC, so it isn't a browser-specific thing, it has to be a Mac/PC thing. Right?
Thanks!
Define your mime type in .htaccess...If that doesn't work, call your host and they may be able to update the settings..
more...
Richard14
Apr 6, 07:32 AM
Plug the external drive into your MacBook Pro, and open a finder window. The WD drive should show up in the left part of the finder window, under devices.
Right-click on the drive, and click on "Get Info".
In the Info window, part way down you'll see the format. For example:
Format: MS-DOS (FAT32)
or
Format: Mac OS Extended (Journaled)
or
something else for NTFS...
Remember, you can't reformat a drive (or a partition) without losing the files currently on that drive (partition). So, you MUST copy the files somewhere else, first.
I have checked and it is NTFS format. There is too much memory to copy onto my mac before reformatting. So then where else can i copy them too? For safety I can copy to another external hard drive which is NTFS, but will i then be able to move the data on to the newly formatted drive? Or just the stuff from my mac? Thanks so much for your help again
Right-click on the drive, and click on "Get Info".
In the Info window, part way down you'll see the format. For example:
Format: MS-DOS (FAT32)
or
Format: Mac OS Extended (Journaled)
or
something else for NTFS...
Remember, you can't reformat a drive (or a partition) without losing the files currently on that drive (partition). So, you MUST copy the files somewhere else, first.
I have checked and it is NTFS format. There is too much memory to copy onto my mac before reformatting. So then where else can i copy them too? For safety I can copy to another external hard drive which is NTFS, but will i then be able to move the data on to the newly formatted drive? Or just the stuff from my mac? Thanks so much for your help again
HiRez
Oct 29, 05:47 AM
Pretty sure they cannot play MP3 CDs. I don't even think the MP3 CD format existed when the PS2 came out (MP3 files existed, but no one had yet thought of making a CD player capable of playing them directly).
more...
zdobson
Apr 19, 12:44 PM
Now this is looking different. I'm not sure why this would have changed. The finder windows are clear.
http://www.zachdobson.com/temp/screen2.png
Also, the CPU keeps running between 30-90% even though there are no applications running (other than activity monitor). Related or no?
http://www.zachdobson.com/temp/screen2.png
Also, the CPU keeps running between 30-90% even though there are no applications running (other than activity monitor). Related or no?
LimeiBook86
Dec 15, 03:24 PM
I have a hadware modded (replaced with 128K ROM) radeon 7000 64MB card. I should have it on one of my old G3s. For 50$ + 5$(priority mail shipping?)
Sorry I don't need one like that. A 16mb PCI ATI Rage would be fine for my needs.
Sorry I don't need one like that. A 16mb PCI ATI Rage would be fine for my needs.
cheeserandyburg
May 4, 02:23 AM
Does anyone know or understand what this means:
Reacent Post
Lacero
Jan 24, 07:38 PM
Happens to me as well. Sometimes my airport internet cuts out completely for no apparent reason with my linksys wireless router. WRTG54 I believe is the model.
ninebythree
Dec 23, 06:43 PM
It's okay, I understand what you mean :)
My mac's a 14" iBook that's been upgraded to 1 GB of RAM and 80 GB HD. I use Airport (so I experience the delayed connection that you've got post-wake) and there's nothing hooked up with Bluetooth.
I'm so confused as to where this problem could be originating...
My mac's a 14" iBook that's been upgraded to 1 GB of RAM and 80 GB HD. I use Airport (so I experience the delayed connection that you've got post-wake) and there's nothing hooked up with Bluetooth.
I'm so confused as to where this problem could be originating...
Over Achiever
Sep 8, 08:25 PM
Originally posted by arn
I don't think anyone actually thought TiBooks/iBooks would be updated at Paris...
the only hints have been low powerbook supply reports (which are nonspecific), and a competely BS report about dual G5's via reader email at MacBidouille.
arn
What? What reader e-mail? :D
Anyway, they expected G5s? Duals is already crazy (read my sig), but G5s? Before they are introduced into powermacs? Wishful thinking!:D
I don't think anyone actually thought TiBooks/iBooks would be updated at Paris...
the only hints have been low powerbook supply reports (which are nonspecific), and a competely BS report about dual G5's via reader email at MacBidouille.
arn
What? What reader e-mail? :D
Anyway, they expected G5s? Duals is already crazy (read my sig), but G5s? Before they are introduced into powermacs? Wishful thinking!:D
BrettJDeriso
Mar 11, 05:51 PM
Doors opened promptly at 5:00, and the first batch of customers were welcomed in to the store to thunderous applause (I've seen this on videos, but I thought it was just a Cupertino or NY flagship store thing). I was about four people behind the first batch in, so I ended up getting in and out in 15 minutes.
When I left, the line stretched all the way back to the ice skating pavilion and around the corner to Panera. If I had to guess, easily north of 250 people.
Here's an interesting tidbit: just before the doors opened, one member of the security team started barking at people to put their cameras and cellphones away. He was even chasing down pedestrians on the other side of the street. Not sure what that B.S. was about, but as a photographer, I take exception to that sort of overreach. It's a public street, and last time I checked, the Apple store is not a post office, military base, or other government facility.
When I left, the line stretched all the way back to the ice skating pavilion and around the corner to Panera. If I had to guess, easily north of 250 people.
Here's an interesting tidbit: just before the doors opened, one member of the security team started barking at people to put their cameras and cellphones away. He was even chasing down pedestrians on the other side of the street. Not sure what that B.S. was about, but as a photographer, I take exception to that sort of overreach. It's a public street, and last time I checked, the Apple store is not a post office, military base, or other government facility.
Doctor Q
Nov 18, 03:50 PM
roland.g,
It's not an unreasonable suggestion. The need for an iOS subforum depends in part on the quantity of IOS-themed threads we routinely have, other than those in the News forums and the programming forums. Can you point out more than a few currently active threads that fall into this category? I haven't spotted many.
It's not an unreasonable suggestion. The need for an iOS subforum depends in part on the quantity of IOS-themed threads we routinely have, other than those in the News forums and the programming forums. Can you point out more than a few currently active threads that fall into this category? I haven't spotted many.
0 comments:
Post a Comment