Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
MusicMacPro said:
Notice in the banner picture how the PowerMac G5 Tower is showing only it's side?!
Anyone think it's maybe actually a MacPro's side...therefore they wouldn't show its front or back (dual optical drives, reconfigured back)?

actually, i think the mac pro will have the same side, but a slimmer front...
 
It would be cool if Gov. Arnold Schwarzenegger (R-Cal.) made a surprise appearance and said - "Hasta la vista, Vista!"
 
They should post this:
windowsvistagc0.jpg


I love Apple slaughtering Windows...:D
 
It will be interesting to see what tomorrow brings. A couple of notes:

I don't care that the ipod isn't on the icons, you know, its a developer banner. Most of those items are developer related, not all, but most, in one way or another. What is more interesting is they didnt show the front of the powermac....but that doesn't mean anything. Everything they show on that banner is publically released. There needs to be visuals when people first come in that aren't covered in black cloth! So don't read anything into that, they could completely change the design.

Its doubful much of the hanging banners will be OS X 10.5 related unless their is a huge feature. They are already taking up a considerable amount of hanging space for bragging rights. I would expect new hardware to be hidden under those displays, atleast two of them.... MacPro and Xserve. Possibly something unexpected. Maybe Xcode 3 or something will be heavily promoted.

I know I personally would love better SOAP integration with XCode. We use .NET at work all the time to write web services, and we end up using .NET clients running under parallels on our macs, because keeping the SOAP proxy stub code up-to-date is automatic with .NET....you have to go thru hell with Xcode. I think Apple will fill that gap with the new xcode (there were command line tools in the latest version).

Obviously we will have the resolution independance in OS X 10.5. Probably some new security and new workgroup/networking enhancements. We probably can all agree one would be networked spotlight, if you are running 10.5 servers, the clients will ask the server to search its spotlight data for the same data the client is searching for, and give a combined response.....its the one thing of OS X Tiger I hated, the inability to search the network with the same ease.

I'd probably also expect desktop widgets from dashboard....why? Why not, people have used hacks to do it, plus MS has it as an option in Vista.

We'll probably see Apple rolling in features that Vista has, such as combined videos and photos in slideshows. Not that its nessecary, but its damn easy with Cocoa to do such things and why get left behind? Don't let microsoft take a win.

We may also see a system wide Software Update now, which would really be nice. Letting 3rd party developers update their software with the same system.

My employees here at the office really don't care for apple's Mail program, I'd expect some updates to give it the features its been lacking. Same with address book. Of course, these have been rumored for a long time...and for good reason, its needed. Maybe expect a new mail/scheduling server like Exchange, Apple's been rumored to be working on one.

I'd also expect major updates to iChat.... probably MSN and Yahoo support, as well as VoIP.

but none of those things I've said are that huge........so I'm hoping for some really major surprises :)
 
motulist said:
Where the heck are you? Australia?

Could be Western Australia, here in Sydney it will be 3am when the conference kicks off.

Could be:

AUSTRALIA (Western Australia- Perth)
BRUNEI DARUSSALAM (Bandar Seri Begawan)
CHINA (Beijing, Shanghai)
HONG KONG (China)
INDONESIA (central- Bali, Borneo, Celebes/Ujung Pandang)
MACAU (Macao)
MALAYSIA (Kuala Lumpur)
MONGOLIA (Ulaanbaatar dst)
PHILIPPINES (Manila)
RUSSIA (ZONE 7- Irkutsk dst, Ulan-Ude dst, Bratsk dst, Ust'-Ordynsky dst)
SINGAPORE (Singapore)
TAIWAN (Taipei)
 
kugino said:
will apple be broadcasting this at the union square store? i don't think they've done so in the past, but since i'm in the city this week i thought i'd mosey on down to the store at around 10 and see what's playing in the theater ;)

Probably better waiting til near the end of the Keynote and see if any large boxes suddenly emerge from the back. IIRC, there are reports in the past of people hotfooting it from the Keynote to the nearest store since there's sometimes limited stock of an item there.
 
dguisinger said:
Maybe Xcode 3 or something will be heavily promoted.

I know I personally would love better SOAP integration with XCode. We use .NET at work all the time to write web services, and we end up using .NET clients running under parallels on our macs, because keeping the SOAP proxy stub code up-to-date is automatic with .NET....you have to go thru hell with Xcode. I think Apple will fill that gap with the new xcode (there were command line tools in the latest version).

I use to know my development talk, but not having done any coding in a few years my reaction to what you just said was: hu? :D

dguisinger said:
Obviously we will have the resolution independance in OS X 10.5. Probably some new security and new workgroup/networking enhancements. We probably can all agree one would be networked spotlight, if you are running 10.5 servers, the clients will ask the server to search its spotlight data for the same data the client is searching for, and give a combined response.....its the one thing of OS X Tiger I hated, the inability to search the network with the same ease.

I would love easier active directory integration, in windows is very easy, but doing it on a mac is a bit to much! Would like network spotlight without needing 10.5 server, in the home environment I can definately see the use for network search, but definately no 10.5 server!

dguisinger said:
We may also see a system wide Software Update now, which would really be nice. Letting 3rd party developers update their software with the same system.

Totally agreed, and with that rumored birrent support as well!

dguisinger said:
I'd also expect major updates to iChat.... probably MSN and Yahoo support, as well as VoIP.

iChat needs a upgrade, the only reason I ever use it is because Aduim doesnt do video!

edit: fixed spelling
 
Lollypop said:
I use to know my development talk, but not having done any coding in a few years my reaction to what you just said was: hu? :D

SOAP is a protocol that passes XML over HTTP......it basically allows client apps to access data from remote servers.

Applescript has some tools to make it easy....if you want to use applescript, but Cocoa really doesn't. You have to hard code every function in a wrapper library to make the HTTP call, get the parsed resposnes, etc

In Microsoft.NET, you add a "Web Reference" to your project, it scans the WDSL webservice description file on the internet to figure out what functions are there, and then builds a C# class that acts like its a local peice of code. You just call the functions natively from your program, and you'd never know you are talking to a remote server. If the server program changes, one click in your client project updates that stub-proxy file to the newest WDSL, click compile and bam, you have access to the latest and greatest functions from the server.

With Xcode......you really have to do alot of work by hand. We have a web service with thousands of functions to access our ecommerce system, we want to make a Mac OS native version of our client, but the shear amount of time spent making/maintaining a proxy stub in Xcode by hand would be more than the amount of work porting the user interface. I'm really hoping they automate this!
 
dguisinger said:
SOAP is a protocol that passes XML over HTTP......it basically allows client apps to access data from remote servers.

Applescript has some tools to make it easy....if you want to use applescript, but Cocoa really doesn't. You have to hard code every function in a wrapper library to make the HTTP call, get the parsed resposnes, etc

In Microsoft.NET, you add a "Web Reference" to your project, it scans the WDSL webservice description file on the internet to figure out what functions are there, and then builds a C# class that acts like its a local peice of code. You just call the functions natively from your program, and you'd never know you are talking to a remote server. If the server program changes, one click in your client project updates that stub-proxy file to the newest WDSL, click compile and bam, you have access to the latest and greatest functions from the server.

With Xcode......you really have to do alot of work by hand. We have a web service with thousands of functions to access our ecommerce system, we want to make a Mac OS native version of our client, but the shear amount of time spent making/maintaining a proxy stub in Xcode by hand would be more than the amount of work porting the user interface. I'm really hoping they automate this!

Cool! I have writen a few of applications that use the RPC mechanism in JAVA, but like I said, that was ages ago. My MS development skills ended with VB6, and even in comparison I feel XCode needs some work.

Some_Big_Spoon said:
Wouldn't that mean that Adium needs the upgrade? ;-)

LOL, I does actaully ye, but if apple want to compete they desperately need to do something to iChat, especially on their own platfrom where there is another application that is far supperior to what they offer (and few will disagree with this statement), its just a shame!
 
I just love this Vista trashing. I seriously hope Apple can create enough stir to put Vista in the 'Recycle Bin'. :p
 
smacman said:
I just love this Vista trashing. I seriously hope Apple can create enough stir to put Vista in the 'Recycle Bin'. :p
sadly, all this vista trashing is probably not going to sway the masses to go out and buy a mac. i mean, who in the general population even knows that WWDC is upon us? still, it's fun for the rest of us who do care! :)
 
reyesmac said:
I will be surprised if Vista comes out with most features in leopard, even if they are hacked wanna be copies. They have done it before and with the preview Apple will just give them one more chance to do it. What I don't think they will be able to copy is the features in the iApps that will come out or core video effects. Well, not without raising the requirements to run vista yet again.

Windows Vista is feature complete. What exists today in the beta versions out there is what will be in the final product. Now all they do is handle bug fixes and performance problems.
 
Any Aussies staying up? I think i will have to.

Why can't Steve do his Keynote at like 4pm over in the US, that we'd be able to wake up at 9. Anyways! As long as he has a big sleigh i don't care
 
JRM PowerPod said:
Any Aussies staying up? I think i will have to.

Why can't Steve do his Keynote at like 4pm over in the US, that we'd be able to wake up at 9. Anyways! As long as he has a big sleigh i don't care

I'll be up at 2am-ish for the keynote histeria.
 
Anyone got any ideas of when the keynote starts in the good ol UK?, i'm guessing 6pm ish?
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.