yellow
Nov 8, 11:41 AM
Would you rather post on a site that uses vBulletin or phpbb. I know I would prefer vBulletin but would the average user know a difference?
Depends on your definition of average user. I consider myself an "average user" as I post on several different forums and have for years. That gives me a good feel for what I like and what I don't care for. Across the board I prefer vB to phpbb. Strictly as an end user who is pretty well aquatinted with the external workings of a forum (do not apply any of this to it as supporting one or the other).
Your first timers and newbie forum users probably wouldn't really notice the difference.
Depends on your definition of average user. I consider myself an "average user" as I post on several different forums and have for years. That gives me a good feel for what I like and what I don't care for. Across the board I prefer vB to phpbb. Strictly as an end user who is pretty well aquatinted with the external workings of a forum (do not apply any of this to it as supporting one or the other).
Your first timers and newbie forum users probably wouldn't really notice the difference.
AlphaDogg
Dec 24, 11:36 PM
http://missionrepair.files.wordpress.com/2009/11/unibody_white_macbook.jpg
Because my MBP is in for repair, and I am using this MB (not in sig, is a 2.4GHz C2D, NVidia 320M, 4GB RAM [I took the 4GB out of the MBP before I sent it in, put the 2GB from this MB in it]).
Because my MBP is in for repair, and I am using this MB (not in sig, is a 2.4GHz C2D, NVidia 320M, 4GB RAM [I took the 4GB out of the MBP before I sent it in, put the 2GB from this MB in it]).
FSUSem1noles
Mar 21, 01:49 PM
what school hands out individual laptops!
There's actually quite a few schools down here that each student is given a laptop we're talking High Schools with 1500+ kids... Within the first week kids were being robbed walking home from school for the laptops..
There's actually quite a few schools down here that each student is given a laptop we're talking High Schools with 1500+ kids... Within the first week kids were being robbed walking home from school for the laptops..
iRach
May 2, 12:12 PM
Is that a brushed metal back I spy? I much prefer the coloured backs :( I like the shape though.
more...
motulist
Apr 30, 03:38 PM
What geographical location are you in?
I'm in Wisconsin at the moment. I didn't notice it when I was back in New York a couple of weeks ago.
open the Activity window
I'll do that next time I notice the problem.
I'm in Wisconsin at the moment. I didn't notice it when I was back in New York a couple of weeks ago.
open the Activity window
I'll do that next time I notice the problem.
GrayUK
Jun 17, 02:17 PM
Excellent work :apple:
all videos free :) just downloading a few now. :D
all videos free :) just downloading a few now. :D
more...
flyakite
Sep 29, 12:57 AM
What we really need is a Windows Keynote player downloadable for free off of Apple's website. ...Apple could probably throw one together in a day and iWork sales would skyrocket (not to mention the switching potential of the Windows users watching such a beautiful presentation on their piece of crap :D).
I don't think that would work, considering Keynote uses lots of Quartz technologies, which Windows of course doesn't have. iTunes and QuickTime are different of course because they don't rely on any Core/Quartz tech.
I don't think that would work, considering Keynote uses lots of Quartz technologies, which Windows of course doesn't have. iTunes and QuickTime are different of course because they don't rely on any Core/Quartz tech.
lee1210
Mar 25, 11:03 AM
You can perform conversions from any number system in the same way. Each position has a value based on it's distance from the . separating the whole portion from the fractional portion (decimal point in decimal). The position just to the left of this point is the 0th position, and this goes up as you move left and down as you move right, so:
1076.235
Position 3: 1
Position 2: 0
Position 1: 7
Position 0: 6
Position -1: 2
Position -2: 3
Position -3: 5
Each position's value is the base of the numbering system raised to the power of this position, so:
1*(x^3) + 0*(x^2) + 7*(x^1) + 6*(x^0) + 2*(x^-1) + 3*(x^-2) + 5*(x^-3)
so let's say this is an octal value:
1*(8^3) + 0*(8^2) + 7*(8^1) + 6*(8^0) + 2*(8^-1) + 3*(8^-2) + 5*(8^-3)
1*512 + 0*64 + 7*8 + 6*1 + 2*(1/8) + 3*(1/64) + 5*(1/512)
512 + 0 + 56 + 6 + 1/4 + 3/64 + 5/512
574 + 128/512 + 24/512 + 5/512
574 + 157/512
~574.306641 base 10 equals (approximately) 1076.235 base 8
Chances are the bases you'll deal with are 2,8,10, and 16. Even base 8 has fallen out of favor, but i guess it's worth working with. If you're doing this by hand, and you're moving between 2,8, and 16 there are some "tricks". Every octet is 3 bits, every hexit is 4 bits. Knowing this you can do conversions from either of these bases to base 2 or back again pretty quickly and easily with grouping. Note that between 2,8, and 16 you can exactly represent anything from one of these bases in one of the others. This isn't so with base 10, so we end up making approximations because converting from one of the other bases to base 10 can give us an irrational number, and some decimal numbers with a fractional part cannot be represented in binary at all, so they have to be estimated.
-Lee
1076.235
Position 3: 1
Position 2: 0
Position 1: 7
Position 0: 6
Position -1: 2
Position -2: 3
Position -3: 5
Each position's value is the base of the numbering system raised to the power of this position, so:
1*(x^3) + 0*(x^2) + 7*(x^1) + 6*(x^0) + 2*(x^-1) + 3*(x^-2) + 5*(x^-3)
so let's say this is an octal value:
1*(8^3) + 0*(8^2) + 7*(8^1) + 6*(8^0) + 2*(8^-1) + 3*(8^-2) + 5*(8^-3)
1*512 + 0*64 + 7*8 + 6*1 + 2*(1/8) + 3*(1/64) + 5*(1/512)
512 + 0 + 56 + 6 + 1/4 + 3/64 + 5/512
574 + 128/512 + 24/512 + 5/512
574 + 157/512
~574.306641 base 10 equals (approximately) 1076.235 base 8
Chances are the bases you'll deal with are 2,8,10, and 16. Even base 8 has fallen out of favor, but i guess it's worth working with. If you're doing this by hand, and you're moving between 2,8, and 16 there are some "tricks". Every octet is 3 bits, every hexit is 4 bits. Knowing this you can do conversions from either of these bases to base 2 or back again pretty quickly and easily with grouping. Note that between 2,8, and 16 you can exactly represent anything from one of these bases in one of the others. This isn't so with base 10, so we end up making approximations because converting from one of the other bases to base 10 can give us an irrational number, and some decimal numbers with a fractional part cannot be represented in binary at all, so they have to be estimated.
-Lee
more...
raymanrox1
Apr 7, 07:04 AM
Go into Windows Explorer and right click on the disk (if you mean the CD or DVD) and select "EJECT".
Btw, the OPTION key is not used to eject optical media from the ODD, the EJECT key on the top right of the keyboard is used for that.
Perhaps I need to be a tad bit clearer.Uhh
-40% of the time I go into a fresh install of windows,I cannot eject(To install mac drivers
-The option key USED to allow me to eject first before i went into windows
-I'll most probably be unable to go back to mac after installation of windows cuz of the option key being unable to work
Btw, the OPTION key is not used to eject optical media from the ODD, the EJECT key on the top right of the keyboard is used for that.
Perhaps I need to be a tad bit clearer.Uhh
-40% of the time I go into a fresh install of windows,I cannot eject(To install mac drivers
-The option key USED to allow me to eject first before i went into windows
-I'll most probably be unable to go back to mac after installation of windows cuz of the option key being unable to work

iSayuSay
May 5, 07:04 PM
I think there�s a reason :apple: didn�t notify the new iMac owners for 10.6.7 update, unlike in the new Macbook Pro
It�s because all 2011 iMac will be eligilbe for upgrade to Lion for free, or at least with discount, maybe $29 only via Mac App Store so they can directly check who eligible for one and who�s not. If you want to get the shiny retail box, it may cost $129.
That should be it .. so I wouldn�t worry too much about Lion, let�s hope I�m not wrong okay :D
It�s because all 2011 iMac will be eligilbe for upgrade to Lion for free, or at least with discount, maybe $29 only via Mac App Store so they can directly check who eligible for one and who�s not. If you want to get the shiny retail box, it may cost $129.
That should be it .. so I wouldn�t worry too much about Lion, let�s hope I�m not wrong okay :D
more...
karsten
Nov 20, 04:10 PM
well i looked around the f@h website a bit, and found instructions for running the windows client through wine on linux. they are here: http://foldingforum.org/viewtopic.php?p=158848#p158848
so i figured i'd try to see if that could happen for osx.
i installed winebottler from http://winebottler.kronenberg.org/,
the os x cuda toolkit from http://developer.nvidia.com/object/cuda_3_2_downloads.html
then the gpu3 folding client from http://www.stanford.edu/~friedrim/.Folding@home-Win32-GPU_Vista-631.zip
ran the client in wine but i keep getting "Gpu species not recognized." errors from the folding client. i see theres a new version of the client available, i'll try that. thinking either that or the os x nvidia drivers are enough different from the windows ones that the client can't access it properly. this is on a 2009 mp with the gt120 which is fermi i think. tried both fermi and non- in the client but both gave that error. play around with it and see maybe what you all find:)
EDIT 1: I JUST TRIED THE NEWEST VERSION OF THE CLIENT, 6.40r1 AND IT NOW APPEARS TO DETECT THE GRAPHICS CARD! it sees the gt120 as Gpu type=3 species=20. the client downloads the core then it crashes when it tries to run with Calling '.\FahCore_15.exe -dir work/ -suffix 01 -nice 19 -checkpoint 15 -verbose -lifeline 63 -version 641'
[22:17:18] CoreStatus = C0000135 (-1073741515)
[22:17:18] Client-core communications error: ERROR 0xc0000135
[22:17:18] This is a sign of more serious problems, shutting down.
will continue to try to get this to work :)
EDIT 2: I missed the part to install some wrappers. going to see if that helps. apparently from http://foldingforum.org/viewtopic.php?f=59&t=16783 someone said gpu2 ran on os x so maybe it's possible
so i figured i'd try to see if that could happen for osx.
i installed winebottler from http://winebottler.kronenberg.org/,
the os x cuda toolkit from http://developer.nvidia.com/object/cuda_3_2_downloads.html
then the gpu3 folding client from http://www.stanford.edu/~friedrim/.Folding@home-Win32-GPU_Vista-631.zip
ran the client in wine but i keep getting "Gpu species not recognized." errors from the folding client. i see theres a new version of the client available, i'll try that. thinking either that or the os x nvidia drivers are enough different from the windows ones that the client can't access it properly. this is on a 2009 mp with the gt120 which is fermi i think. tried both fermi and non- in the client but both gave that error. play around with it and see maybe what you all find:)
EDIT 1: I JUST TRIED THE NEWEST VERSION OF THE CLIENT, 6.40r1 AND IT NOW APPEARS TO DETECT THE GRAPHICS CARD! it sees the gt120 as Gpu type=3 species=20. the client downloads the core then it crashes when it tries to run with Calling '.\FahCore_15.exe -dir work/ -suffix 01 -nice 19 -checkpoint 15 -verbose -lifeline 63 -version 641'
[22:17:18] CoreStatus = C0000135 (-1073741515)
[22:17:18] Client-core communications error: ERROR 0xc0000135
[22:17:18] This is a sign of more serious problems, shutting down.
will continue to try to get this to work :)
EDIT 2: I missed the part to install some wrappers. going to see if that helps. apparently from http://foldingforum.org/viewtopic.php?f=59&t=16783 someone said gpu2 ran on os x so maybe it's possible
edesignuk
Aug 6, 01:46 PM
For an awful second I thought I was going to be e :DYou wish buddy, I know your game http://up.edesignuk.com/files/1/Images/Smilies/Dogeyes.gif
more...
vniow
Sep 8, 06:54 PM
Originally posted by King Cobra
BTW, when is the expo? Seriously...

Leslie Bibb amp; Sam Rockwell
more...

Leslie Bibb Set to Return for

Leslie Bibb Sam Rockwell
more...

Leslie Bibb picture gallery

Sam Rockwell and Leslie Bibb

Sam Rockwell and Leslie Bibb
BTW, when is the expo? Seriously...
DJMastaWes
Aug 6, 04:10 PM
Inspired by your avatar?
more...
GGJstudios
Apr 21, 12:48 PM
That doesn't happen for me. The scrolling continues as it should, even during the momentum phase of the scroll.
That's the way it used to be for me. I don't know when it broke or what might have caused it.
That's the way it used to be for me. I don't know when it broke or what might have caused it.
tempusfugit
Jul 11, 09:31 PM
You either loved or hated the puck. If it was clean, it felt great to use. I still have them and use one on the blueberry iMac I have in the garage. I personally liked it a lot. That said, I still use the original black Pro Mouse to this day with my main setup.
You have an iMac in your garage?
You have an iMac in your garage?
more...
Lucky8
Sep 18, 10:23 PM
Apple retail stores do not take returns on online ordered items.
They have to be sent back at your cost unless if it's defective or damaged during shipment.
It takes about 2-3 weeks after they receive the items for the credit to show up in your account.
Oh, and 20% restocking fees for all open boxes within 30 days of purchased.
They have to be sent back at your cost unless if it's defective or damaged during shipment.
It takes about 2-3 weeks after they receive the items for the credit to show up in your account.
Oh, and 20% restocking fees for all open boxes within 30 days of purchased.
bootloader
Apr 17, 07:42 PM
will that fix the issue message that I keep getting? When I boot to the desktop it always says " restart" with a error message that looks like a shutdown button..
it will sure fix it if the kernel panics were caused by overheating, which is likely, i would give it a shot, if that doesnt fix it then you know that the problem lies somewhere else!
it will sure fix it if the kernel panics were caused by overheating, which is likely, i would give it a shot, if that doesnt fix it then you know that the problem lies somewhere else!
Moofo
Jan 12, 08:58 AM
I have one Xserve G5 in use here to run PresStore and I successfully upgraded the three drive modules to 2 TB with no issues.
The only thing to remember is simply that the Xserve is not SATA 2 and the controller seems to ignore the drives that are SATA 2.
Even weirder is the fact that some sleds seems to switchs the drives automatically to SATA-1 while others don't.
So, if like me, If you end up with drives that are not visible, follow the manufacturer's instructions to set them to SATA-1 Mode. It's either a jumper or you have to plug the drive in a PC and use a boot CD.
I used Hitachi Deskstar and they are great. Expensive, but great.
The only thing to remember is simply that the Xserve is not SATA 2 and the controller seems to ignore the drives that are SATA 2.
Even weirder is the fact that some sleds seems to switchs the drives automatically to SATA-1 while others don't.
So, if like me, If you end up with drives that are not visible, follow the manufacturer's instructions to set them to SATA-1 Mode. It's either a jumper or you have to plug the drive in a PC and use a boot CD.
I used Hitachi Deskstar and they are great. Expensive, but great.
spoon man
Dec 25, 02:07 AM
These have kept me warm other this month with all the snow :) .
loby
May 3, 12:33 AM
Does anyone know "if" or when a refresh for Time Capsule 1T is coming out? It has been some time now, and I have read users have had issues with it.
Some users have had their hard drives go out, losing their data after about 1.5 years of use. :confused: It is in multiple feedback entries on Apple's Store site...
Any thoughts? I would like to purchase one, but I am reconsidering...would like some advise. Thanks
Some users have had their hard drives go out, losing their data after about 1.5 years of use. :confused: It is in multiple feedback entries on Apple's Store site...
Any thoughts? I would like to purchase one, but I am reconsidering...would like some advise. Thanks
lee1210
Mar 29, 01:09 PM
gnasher729 gave a great idea that would give you a command you could copy and paste to the terminal to see what's going on. I'll give an additional hint:
the & means something special to the shell. It means "run that command i just gave you in the background". You can quote parameters that might contain such a character, or escape it with \.
-Lee
the & means something special to the shell. It means "run that command i just gave you in the background". You can quote parameters that might contain such a character, or escape it with \.
-Lee
rutiger
Mar 12, 11:24 AM
just tried and it didn't work. ipad keeps saying cellular data needs to be activated.
*just read in another thread that you have to change the apn. I didn't know that and try it. But someone else said it works fine.
*just read in another thread that you have to change the apn. I didn't know that and try it. But someone else said it works fine.
maflynn
May 6, 09:14 AM
What do you do for work and why? :eek:
I maintain servers and enterprise applications from an infrastructure perspective. I'm involved in upgrading two of those enterprise applications at once and I'm on a tight dead line :(
I maintain servers and enterprise applications from an infrastructure perspective. I'm involved in upgrading two of those enterprise applications at once and I'm on a tight dead line :(