Hammie
Feb 17, 01:33 PM
Another option if you do not want to go with a USB player or worry about Audio out from a receiver or AV Processor is the NAD PP3i ($199). There are a few others out there, but they are creeping into the $500+ price range. I am looking at this unit for myself so I can plug my turntable into it, use a USB cable to connect to my Mac Mini and rip the albums with the NAD software ($25 extra). It helps with tagging the songs, removing clicks and pops, and exports to various audio files including ALAC, which is what I use.
Zermelo
May 6, 11:31 AM
How is this thread ridiculous? Is someone on here already tried any of those and it didn't work or did work. Perhaps they can share with us. Nothing ridiculous about it.
And you see, i got the answers for the replies above
The thread is ridiculous because this question is asked almost everyday on the forum. All you had to do is a small amount of searching and there would have been no need for this thread.
There is only a small amount of hackers working on the iPad 2 jailbreak, if and when it comes out it will be big news on a forum like this. While apparently the moderators and administrators don't mind posts like this, they do get somewhat tiresome since the information you're looking for is less than a minute away with the use of the search button or reading top threads.
And you see, i got the answers for the replies above
The thread is ridiculous because this question is asked almost everyday on the forum. All you had to do is a small amount of searching and there would have been no need for this thread.
There is only a small amount of hackers working on the iPad 2 jailbreak, if and when it comes out it will be big news on a forum like this. While apparently the moderators and administrators don't mind posts like this, they do get somewhat tiresome since the information you're looking for is less than a minute away with the use of the search button or reading top threads.
Melrose
Apr 12, 09:22 AM
I don't see much of a similarity. It's branded as Windows, and you can tell by the ugly colours and UI treatments. Granted, to me it looks a lot more confusing than the App Store, but it's still a basic layout styled for Windows.
The truth is, there aren't a whole lot of different ways to put content on a page and have it organized.
The truth is, there aren't a whole lot of different ways to put content on a page and have it organized.
MacHamster68
May 23, 11:07 AM
thats a absolute bargain i take 10 for that price , payed �1470 for mine ,ok mine was complete in original box as shipped from apple in May 1998 to the owner in germany and still in pristine as new condition like it left the factory , apart from i also bought a g3 upgrade card from sonnet for it and a 50gb harddrive , mates call me insane why i spend that much money on a obsolete old piece of computer rather then getting a brandnew mac ..but i simply love the pre intel Mac's and they do what i buy them for
and honestly it looks better then a iMac 27" and has way better sound and is rarer :p
and honestly it looks better then a iMac 27" and has way better sound and is rarer :p
more...
Joshuarocks
Mar 25, 01:29 AM
Although not found in the BETA version, I hope they put Rosetta back in. Such a small program which doesn't take up too much space. I don't see why not as snow leopard has Rosetta support.
chown33
Apr 11, 12:09 AM
Without looking at the code, the error message should tell you what's wrong. I've hilited the significant part in bold:
2011-04-10 22:49:45.657 ForoTest[219:207] -[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630
2011-04-10 22:49:45.735 ForoTest[219:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630'
It's sending a showNextView message to a UIViewController instance.
Your first post said the method was in your app delegate, not a UIViewController, so check your source first. When I look at the source, I see showNextView in ForoTestViewController, not the app delegate like you said.
I also advise you to check your classes in the nib, to make sure a ForoTestViewController is being instantiated.
It's unclear how you made the non-working Xcode 4 project. If you started with the known-working project, then you probably just broke a connection or misconnected something. If you recreated it entirely from scratch, then there's no easy way of knowing what mistakes you might have made. I'm pretty sure Xcode 4 can open Xcode 3 projects, so I don't know why you'd want to start over.
2011-04-10 22:49:45.657 ForoTest[219:207] -[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630
2011-04-10 22:49:45.735 ForoTest[219:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController showNextView]: unrecognized selector sent to instance 0x4b38630'
It's sending a showNextView message to a UIViewController instance.
Your first post said the method was in your app delegate, not a UIViewController, so check your source first. When I look at the source, I see showNextView in ForoTestViewController, not the app delegate like you said.
I also advise you to check your classes in the nib, to make sure a ForoTestViewController is being instantiated.
It's unclear how you made the non-working Xcode 4 project. If you started with the known-working project, then you probably just broke a connection or misconnected something. If you recreated it entirely from scratch, then there's no easy way of knowing what mistakes you might have made. I'm pretty sure Xcode 4 can open Xcode 3 projects, so I don't know why you'd want to start over.
more...
emotion
Sep 9, 08:37 AM
Could get Kanye West in to have another (well deserved) pop at Bush?
China Diapers
Apr 16, 04:04 AM
Hi,
I am trying to run a java solution remotely on a server, I am using the below command in the terminal:
java RemoteShellClient 87.120.209.147 50001 "cmd" "java -jar -Dusername=xxx -Dpassword=xxx -DcCodes=all C:\BetInTime.jar ServiceSF"
Confidential info hidden with x's.
But am getting the below error:
Invalid input data
Could this be a syntax error?
Thanks
OK, on further inspection, the shellscript seems to rely on some batch files:
CommandRunner.class
RemoteShell.jar
SockData.class
CommandRunner.java
RemoteShellClient.class
SockData.java
JavaBuild.bat
RemoteShellClient.java
java
JavaClient.bat
RemoteShellServer.class
JavaServer.bat
RemoteShellServer.java
Contents of which are:
set ClassPath=RemoteShell.jar
java RemoteShellServer %1 %2
set ClassPath=RemoteShell.jar
java RemoteShellClient %1 %2 %3 %4
javac -g:none *.java
jar cvf RemoteShell.jar *.class
Do you think it would help to rewrite these as bash files?
I am trying to run a java solution remotely on a server, I am using the below command in the terminal:
java RemoteShellClient 87.120.209.147 50001 "cmd" "java -jar -Dusername=xxx -Dpassword=xxx -DcCodes=all C:\BetInTime.jar ServiceSF"
Confidential info hidden with x's.
But am getting the below error:
Invalid input data
Could this be a syntax error?
Thanks
OK, on further inspection, the shellscript seems to rely on some batch files:
CommandRunner.class
RemoteShell.jar
SockData.class
CommandRunner.java
RemoteShellClient.class
SockData.java
JavaBuild.bat
RemoteShellClient.java
java
JavaClient.bat
RemoteShellServer.class
JavaServer.bat
RemoteShellServer.java
Contents of which are:
set ClassPath=RemoteShell.jar
java RemoteShellServer %1 %2
set ClassPath=RemoteShell.jar
java RemoteShellClient %1 %2 %3 %4
javac -g:none *.java
jar cvf RemoteShell.jar *.class
Do you think it would help to rewrite these as bash files?
more...
GGJstudios
May 5, 11:42 AM
As I said in the other thread where you posted, you can't do it.
nomad01
Sep 20, 02:39 AM
UK Store just came back online... I don't see anything different
Worst update EVER. :D
Worst update EVER. :D
more...
mulo
Apr 22, 05:16 PM
never sell to friends, should something go wrong with it, it's bound to create tension between the two of you, especially since money is involved.
balamw
Mar 25, 05:26 PM
Gotcha, didn't know that.
Sorry for the short answer. Was posting from my phone, and it sounds my post seems a bit rude re-reading it.
Some other process is getting in the way. In a previous thread http://forums.macrumors.com/showpost.php?p=11731359&postcount=26 some Western Digital software was responsible.
mjwatt29, can you post the full Winclone.log as an attachment. I was able to suss it out in that other case given the full log file.
B
Sorry for the short answer. Was posting from my phone, and it sounds my post seems a bit rude re-reading it.
Some other process is getting in the way. In a previous thread http://forums.macrumors.com/showpost.php?p=11731359&postcount=26 some Western Digital software was responsible.
mjwatt29, can you post the full Winclone.log as an attachment. I was able to suss it out in that other case given the full log file.
B
more...
wdlove
Sep 23, 01:14 PM
It seems that we will have to wait for the official word from Apple. I hope that it isn't closed for good though.
wrldwzrd89
Sep 28, 07:01 PM
now how 'bout the other way gentlemen? How do I go from my Powerbook to my girlfriend's pc?
Doing that is just as simple. Copy your library (over the network, onto CDs/DVDs/an external HD, etc.) to your PC, open iTunes, then drag the copied library folder to the Library icon in iTunes. iTunes will process the dragged items, adding anything it finds to your library.
Doing that is just as simple. Copy your library (over the network, onto CDs/DVDs/an external HD, etc.) to your PC, open iTunes, then drag the copied library folder to the Library icon in iTunes. iTunes will process the dragged items, adding anything it finds to your library.
more...
ststephen
May 5, 03:49 AM
That iMac model is perfect for your needs. Its specs out of the box will fulfill all of your needs using aperture, lightroom and similar apps. When you evolve to advanced photo editing at the photoshop level, with large RAW FILES, and bulk processing, you and your mac will apprecite a ram upgrade to 8-16 gigs. My 2009 27" i5 just literally dropped dead after 14 months if 10/4 use in my office, so I'm replacing it with that exact model. Most bang for the buck. Excellent resale.
Pierre Thomas And The St.
more...
WITH RB PIERRE THOMAS
DickweedIf we all remembered
Pierre Thomas rushed for just
zeroh3ro
Dec 25, 05:34 PM
should be a tought month!
i just got some of this and a hipflask for xmas, good times.
i just got some of this and a hipflask for xmas, good times.
more...
simsaladimbamba
Apr 9, 12:49 PM
Problem is I only have backups from lion
A backup of what exactly?
There is no way to downgrade to Mac OS X 10.6 Snow Leopard without a clean install.
A backup of what exactly?
There is no way to downgrade to Mac OS X 10.6 Snow Leopard without a clean install.
patrick0brien
Feb 9, 04:38 PM
I think it would be particularly interesting to chart it back to the computer on the LEM of Apollo 11.
I remember something about the IBM Thinkpad 760XL I had in 1997 being something like 1,600x faster than it.
I remember something about the IBM Thinkpad 760XL I had in 1997 being something like 1,600x faster than it.
mad jew
Dec 16, 06:20 PM
I was worried that'd be the case. I reckon you're best bet might be to take it back to Apple quickly if it's not too much trouble for you. They should be very good about fixing it considering it stopped working under their watch. Sorry I can't be more helpful. :o
padster83
Apr 10, 04:34 PM
absolutley brilliant, I too tring to make some kind of transition to film/animation based media from print, this is great
littleman23408
Oct 29, 12:25 PM
^^^^^That is a cool way to use a display from Oakley. How did you obtain it?
job
Oct 20, 03:35 PM
Originally posted by applemacdude
Not anymore...
Huh? What do you mean? :confused:
Also, where did AmbitiousLemon go?
Not anymore...
Huh? What do you mean? :confused:
Also, where did AmbitiousLemon go?
MikeDTyke
Feb 24, 07:59 AM
Hmm its actually a windows PC (dont hurt me :( ) haha
so i remote in via logmein and use it that way. Im ok for a cd drive as i dont really need anything which uses a cd apart from installing the OS
Just looking at that NAS...oooooooo have you got one?
Whats the interface like? I am put off by linux web interfaces, id rather have something like logmein. if that makes sense? I feel its more controllable...but please correct me if im wrong
I won't hurt you for running windows as long as it's either 2K, XP or 7, each to their own and some software just exists/works better on PC.
The UI is an ajax webpage, it's pretty fast and fairly self explanatory as long as you don't drift into the dark recesses of iscsi targets, luns and whatnot.
I set one up for a local business that needed basic filesharing/backups. Have to admit i didn't play with all the bells, but qnap support were helpful and it was plenty fast for a group of 8 office users.
I like the fact that it could remain online all the time and draw ~12 watts on standby and less than 40 when 4 drives were up and spinning. It's got a load of ports on the back so plugging in external usb/esata drives and sharing them was a piece of piss.
If you feel you have plenty of drives already and maybe only want a small proportion of your storage protected against hardware failure, have a look at it's 2 bay little brother. QNAP TS219. Does all the same just less internal disks.
so i remote in via logmein and use it that way. Im ok for a cd drive as i dont really need anything which uses a cd apart from installing the OS
Just looking at that NAS...oooooooo have you got one?
Whats the interface like? I am put off by linux web interfaces, id rather have something like logmein. if that makes sense? I feel its more controllable...but please correct me if im wrong
I won't hurt you for running windows as long as it's either 2K, XP or 7, each to their own and some software just exists/works better on PC.
The UI is an ajax webpage, it's pretty fast and fairly self explanatory as long as you don't drift into the dark recesses of iscsi targets, luns and whatnot.
I set one up for a local business that needed basic filesharing/backups. Have to admit i didn't play with all the bells, but qnap support were helpful and it was plenty fast for a group of 8 office users.
I like the fact that it could remain online all the time and draw ~12 watts on standby and less than 40 when 4 drives were up and spinning. It's got a load of ports on the back so plugging in external usb/esata drives and sharing them was a piece of piss.
If you feel you have plenty of drives already and maybe only want a small proportion of your storage protected against hardware failure, have a look at it's 2 bay little brother. QNAP TS219. Does all the same just less internal disks.
deral
Nov 16, 02:56 AM
On iTunes, using the search function in iMix and here's my dilemna. Always wanted a search to find an iMix, and now that I can do that. i don't know what to search for. My first search for an iMix, I type the word "song".
0 Comments