pmasters
Feb 4, 02:36 PM
Why not just use Migration Assistant? I used that to transition my wife from an old PowerBook G4 to a MacMini and it was really simple. There were a few quirks since the other was such an old computer using a PowerPC chip, but it made the whole process really simple. I'm now kicking myself for not doing that when I bought my MacPro back in 2009.
Noticed that when I booted up and then I saw your post. Excellent recommendations. I used the migration assistant and everything is transferring now.
Thanks again to you both. =D
Noticed that when I booted up and then I saw your post. Excellent recommendations. I used the migration assistant and everything is transferring now.
Thanks again to you both. =D
devilot
Sep 22, 02:28 PM
Would I notice any bump in speed for graphics programs? (My desktop has been reliable but occasionally quirky).I was using a 12" 1.33GHz PB and then got the 20" 2.0GHz iMacG5... I only do a mild bit of photoshop fiddling and I could notice a definite difference.
I love this machine, *sigh* I'm typing on it right now! I would definitely recommend it.
I love this machine, *sigh* I'm typing on it right now! I would definitely recommend it.
KeithPratt
Apr 16, 12:52 PM
There shouldn't be any qualitative difference btwn DV files imported on older / newer machines and the import from tape is in real-time, so an old machine will crank away just as well as anything. The new machine will make a big difference when actually transcoding, editing, and exporting.
Seconded. No need to wait.
Seconded. No need to wait.
ddtlm
Oct 2, 02:55 PM
Hemingray:
Yeah I was a bit unimpressed by the way they arranged the disks too. Perhaps I would like it more if I had a chance to open one of the new cases up.
The large heatsink could have been a huge improvement, however apparently Apple didn't use it to lower sound levels very much. Such am elaborate case, and they can't be bothered to make it quiet.
Yeah I was a bit unimpressed by the way they arranged the disks too. Perhaps I would like it more if I had a chance to open one of the new cases up.
The large heatsink could have been a huge improvement, however apparently Apple didn't use it to lower sound levels very much. Such am elaborate case, and they can't be bothered to make it quiet.
more...
KnightWRX
Mar 30, 08:26 AM
Anyway, why use system(); at all to call curl when there's libcurl ?
http://curl.haxx.se/libcurl/
http://curl.haxx.se/libcurl/
bri1232001
Apr 23, 05:23 PM
PM'd
I would be interested to know this as well.
I would be interested to know this as well.
more...
Peter.Howard
Nov 13, 08:59 PM
I assume you have system 7 on there?
Try holding down the SHIFT key at startup, that will turn of the extensions. i.e. screen saver loading and should get you in there to disable it
Try holding down the SHIFT key at startup, that will turn of the extensions. i.e. screen saver loading and should get you in there to disable it
cheeseadiddle
Oct 20, 12:13 AM
I may go and hang a bit, although I'm getting the up-to-date discs sent to me. Be cool just to see what they're doing.
more...
expergo
Jan 28, 10:35 PM
i converted my outlook express mail to mozilla thunderbird and took the mbox files and transferred it to my mac and imported the .mbox in mail. simple and free. :) it retained all the mail properties and wathever else.
CoMpX
Oct 17, 10:16 PM
Anyone?
more...
IngerMan
May 2, 08:24 PM
OMG what is hard to understand? Either a new book bag or a case. I don't want another freaking messenger bag. I already have that (as I stated in the first post and re-iterated in my first reply).
Seriously people, I appreciate the help but read before you rush to hit the reply button. Even if you completely ignore my repeated comments that I don't want another messenger bag (either a BOOK bag or CASE), you're suggesting a bag for the 11" MBA when I said in the title I have a 13". Why not just tell me what kind of car you drive instead, it's about an equally worthless piece of information (in regards to this thread).
Matt this is for all the people that read your post. See attached Case...
S"F"bags.com:cool:
Seriously people, I appreciate the help but read before you rush to hit the reply button. Even if you completely ignore my repeated comments that I don't want another messenger bag (either a BOOK bag or CASE), you're suggesting a bag for the 11" MBA when I said in the title I have a 13". Why not just tell me what kind of car you drive instead, it's about an equally worthless piece of information (in regards to this thread).
Matt this is for all the people that read your post. See attached Case...
S"F"bags.com:cool:
TwitchOSX
Mar 30, 01:34 PM
What does Lego's have to do with Star Wars? Who thought up that idea?
more...
mrrich
Jun 27, 07:28 PM
I believe that AT&T started handling all the June 14th-15th pre-orders on the 24th, they did not allow walk-ins with out a pre-order. All the phones for sale on the 29th will be first come first serve, though I have not heard if there is a limit per person. They will also start accepting online orders again too.
petjuli
Feb 23, 06:19 PM
Great pics! I definitely think you have the eye for good subjects. However, I have seen others post about your composition. Google "rule of thirds" and learn it. You will be surprised how much of a difference it makes. You don't even really have to force yourself to shoot rule of thirds with todays cameras you can typically just crop to get your image composed the way you like it.
more...
lee1210
Apr 24, 03:41 PM
I don't really know why research is needed for this, unless you don't know Python at all. If that is the case, you don't need to research how to do this in Python, you just need to research Python. Finding code online that does what you need is easy. However, i doubt somewhat seriously that you have a real-world problem requiring this, and you're simply desperate for a solution. Instead this sounds like an academic assignment/exercise/what-have-you.
If that is the case, then you want to learn something, not find the answer. That means you might need to learn:
What a palindrome is (you probably already know this)
How to write a loop in Python
How to manipulate numbers using Python (including exponentiation and division, perhaps taking logarithms)
OR
How to manipulate strings using Python (including getting a substring, string equality, or character equality and getting characters)
As an academic exercise i would try to write both approaches... treating the number as a number and approaching this with math and treating the number with a string and dealing with it that way.
I'm confident that you can google your way to what a palindrome is if you don't know, and the Python documentation is actually quite good:
http://www.python.org/doc/
Good luck. As you progress feel free to post code here telling us what you've tried, what the current errors are (or erroneous results), what you expect to happen, etc. We'll be glad to help you work it out, but it's better for everyone if we don't give you the answer.
-Lee
If that is the case, then you want to learn something, not find the answer. That means you might need to learn:
What a palindrome is (you probably already know this)
How to write a loop in Python
How to manipulate numbers using Python (including exponentiation and division, perhaps taking logarithms)
OR
How to manipulate strings using Python (including getting a substring, string equality, or character equality and getting characters)
As an academic exercise i would try to write both approaches... treating the number as a number and approaching this with math and treating the number with a string and dealing with it that way.
I'm confident that you can google your way to what a palindrome is if you don't know, and the Python documentation is actually quite good:
http://www.python.org/doc/
Good luck. As you progress feel free to post code here telling us what you've tried, what the current errors are (or erroneous results), what you expect to happen, etc. We'll be glad to help you work it out, but it's better for everyone if we don't give you the answer.
-Lee
AWallen90
May 6, 12:32 AM
I found this. Does it help?? M9591LL/A. What is my Max RAM?
Looks to be a 2.3ghz dual core. It can support 16 GB using 533 MHz PC2-4200 DDR2 RAM
Looks to be a 2.3ghz dual core. It can support 16 GB using 533 MHz PC2-4200 DDR2 RAM
more...
wlh99
Apr 17, 11:46 AM
java RemoteShellClient 87.120.209.147 50001 "cmd" "java -jar -Dusername=xxx -Dpassword=xxx -DcCodes=all C:\BetInTime.jar ServiceSF"
I would break troubleshooting this into two parts:
1. Test that you can remotely execute a command by doing something trivial. Perhaps like this:
java RemoteShellClient 87.120.209.147 50001 "cmd" "echo testfile > testfile.txt"
Assuming that the RemoteShell server is running, has correct permissions to write somewhere, and you know where that somewhere is you should see a testfile.txt created there. If this doesn't work, then you need to check the server config.
2. Locally run the BetInTime.jar file on the server to verifiy it works properly and that the command arguments are correct. From the C:\ prompt on the server:
Jimmie Johnson on HBO#39;s 24/7
Jimmie Johnson
I would break troubleshooting this into two parts:
1. Test that you can remotely execute a command by doing something trivial. Perhaps like this:
java RemoteShellClient 87.120.209.147 50001 "cmd" "echo testfile > testfile.txt"
Assuming that the RemoteShell server is running, has correct permissions to write somewhere, and you know where that somewhere is you should see a testfile.txt created there. If this doesn't work, then you need to check the server config.
2. Locally run the BetInTime.jar file on the server to verifiy it works properly and that the command arguments are correct. From the C:\ prompt on the server:
mrkramer
Apr 14, 04:18 AM
It depends on your needs, if you have two notebooks with the same specs and differing only in weight, the lighter one will probably be more expensive, but if you need something that is very portable then it is probably worth it and thus better. If you don't care about weight, the heavier one will be cheaper and better for your needs.
clayj
Sep 22, 06:17 PM
Wait, hang on. Was this supposed to be a FREE printer? If yes, then I can see how you'd be upset... otherwise, it's possible they just ran out of them and can't get anymore within a reasonable timeframe. In that case, you can hardly say that you were gypped; if they're only charging you for what can be delivered to you, that's correct behavior.
aethelbert
Feb 23, 04:09 PM
i will trade you my 16 gb ipod touch for it. :)Is it unlocked?
Please let me know. I also have the wall charger for it. I would love to get a :apple: iphone
This thread is four months old... Come on.
Please let me know. I also have the wall charger for it. I would love to get a :apple: iphone
This thread is four months old... Come on.
celebi23
Oct 16, 05:04 PM
http://i23.photobucket.com/albums/b355/eisnerguy1/westfarms_vert120104.jpg
Might as well kick this subforum off with a bang. :p So, who here is going to the West Farms Mall Apple Store for the Launch Party? :cool:
Might as well kick this subforum off with a bang. :p So, who here is going to the West Farms Mall Apple Store for the Launch Party? :cool:
jaseone
Nov 7, 09:51 PM
Looks like Apache is serving the whole file but either your ISP or your connection to your ISP is preventing you from serving anything greater than 45kb, who is your ISP?
navigates
Apr 29, 12:55 PM
It�s been a very long time until any news in and around unlocks is out now. During 3g, 3gs, the unlocks were very quick. On the IP4, the wait was around the latest release of the 4.3. Now we are 4.3.1. I believe 4.3.1 has changed the baseband again to a new algorithm. I'm not sure if they will hang on for some time with the new algorithm or release the unlock.
I just went for a short business trip and used data roaming which costs about 19.95 an MB. Trip was sudden and I didn't have the time to purchase the rebel or gevey.
In my opinion it is wrong in AT&T's part to not genuinely unlock the iPhone when there are legitimate users satisfying the contract. In any case they have an early termination fee any ways.
Instead of us pursing the dev team, we should start an online petition to enable AT&T unlocking the iPhone legally.
I just went for a short business trip and used data roaming which costs about 19.95 an MB. Trip was sudden and I didn't have the time to purchase the rebel or gevey.
In my opinion it is wrong in AT&T's part to not genuinely unlock the iPhone when there are legitimate users satisfying the contract. In any case they have an early termination fee any ways.
Instead of us pursing the dev team, we should start an online petition to enable AT&T unlocking the iPhone legally.
ECUpirate44
Apr 11, 03:05 PM
Keep it and upgrade the RAM yourself. It's much cheaper.
Do this. Check out OWC or Newegg.
Do this. Check out OWC or Newegg.
No comments:
Post a Comment