Kosher
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Tech Off | <MediaElement> in XAML | 20 | Mar 06, 2006 at 9:41 PM |
| The Sandbox | Maya to XAML Exporter - Updated for WinFX November CTP | 0 | Oct 14, 2005 at 3:28 PM |
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Tech Off | <MediaElement> in XAML | 20 | Mar 06, 2006 at 9:41 PM |
| The Sandbox | Maya to XAML Exporter - Updated for WinFX November CTP | 0 | Oct 14, 2005 at 3:28 PM |
Miguel de Icaza: Moonlight
Mar 21, 2009 at 11:02 AMCountdown To PDC2008 : Producing a Ginormous Conference in 10 Minutes or Less!
Jul 19, 2008 at 12:27 PMBust out the hard hat Mike. We know you want to get all up in this video with your coding skillz. Would love to see some intense sessions on cool new stuff. Maybe some topics on how mathematics and how it plays a key role in some of the technologies at MS. Now that would be geeky! Maybe some physics stuff too.
Sarita Bafna: VC++ "Orcas" - Marshaling Library and MFC support for Common Controls
Mar 26, 2007 at 8:17 AMMy whole intention was to put my code out there and ask what the difference is between their interop and mine, if any. I was a bit excited to see that there will be some new marshaling classes but was let down when they said "only strings are supported" since that's probably the most trivial aspect.
I really look forward to having a marshaling library that allows for fast marshaling between my native and managed types, without having to focus on it too much.
Good interview and nice handwriting too.
Thanks!
Sarita Bafna: VC++ "Orcas" - Marshaling Library and MFC support for Common Controls
Mar 24, 2007 at 1:59 PMThat's not really a library but more like a code snippet. Don't get me all excited about interop then give me something so trivial. Is something wrong with the code below?
Utils::Utils(void)
{
}
const char* Utils::MarshalString( String ^ s )
{
using namespace Runtime::InteropServices;
const char* chars = (const char*) (Marshal::StringToHGlobalAnsi(s)).ToPointer();
return chars;
}
tcp::endpoint Utils::MarshalEndPoint( System::Net::IPEndPoint ^endpoint )
{
return tcp::endpoint(Utils::MarshalAddress(endpoint->Address), endpoint->Port);
}
boost::filesystem::path Utils::MarshalFileInfo(System::String ^fullPath)
{
return boost::filesystem::path(Utils::MarshalString(fullPath));
}
System::Collections::Generic::List<float>^ Utils::MarshalFloatVector(std::vector<float>& data)
{
System::Collections::Generic::List<float>^ items = gcnew System::Collections::Generic::List<float>;
for(int i = 0; i < data.size(); i++)
items->Add(data[i]);
return items;
}
Mike Swanson - Adobe Illustrator to XAML converter
Oct 07, 2005 at 9:53 PMI just released the first beta of a Maya To XAML converter. Right now it only exports the meshes in the scene. I should have materials, lights, and animation exporting soon.
The download is at:
http://www.thomasgoddard.com/
or
http://spaces.msn.com/members/thomasgoddard/Blog/cns!1p--mKxHOrH2gfcvubjasyAg!144.entry?owner=1
Regards,
Thomas Goddard
Manuel Clement and others - Introducing Sparkle
Sep 14, 2005 at 1:18 PMNow we have this amazing designer tool, my designer friends are going nuts, and a great data store (WinFS)...
So many people pour their lives into their work and now we have the tools that not only let us express our true talents but the platform is huge!
Kudos to the team at MS for making a sick implementation of what so many envisioned but juts couldn't do.
This gave me some motivation to create an article on how to export Alias Maya models to direct (.x) files and use them in your avalon UI. Just wish I had the Sparkle editor so I could really crang out some results
Kosher,
ThomasGoddard.com
Gary Daniels and Evan Goldring - Mock whiteboard problem
Aug 02, 2005 at 12:41 PMLonghorn (heart) RSS
Jun 27, 2005 at 11:37 AMWhat ever happened to this idea that strongly typed datasets over web services would allow people to consume and use schemas (like WinFS). RSS is not a low level thing, nor is it object oriented. You call a URL and get a calendar back but what about paging, sorting, data integrity (strong typing with schemas[int,string,bool,etc.]), and security.
What about posting data? Our calendars are always read only? Our friends list is always read only? Or do we just go ahead and send an untyped RSS data structure back to some aspx page? This is the slop that I can't stand.
Peer to peer is great but peer to peer can also incorporate schemas to share not only the binary data but the types that are transported between the consumers and senders. There is so much potential out there with WinFS. Lets not get all side tracked with RSS and the fact that the community of non object oriented developers enjoy consuming "items" because they're so "easy". I think RSS is a great add on but to me, it's just another XML structure that allows people, that don't understand what strongly typed objects give you, to create user interfaces that just display data. Anyone can create a wrapper for windows media player
Another problem is the fact that outlook, Active Directory, Exchange server, WINS, DNS, and many other products run on old Microsoft Access databases. The APIs to these things are incomplete, antiquated, and very difficult to use. You also get data corruption from these things. Once WinFS is out, we'll see these critical windows services moving into SQL Server 2005 express or some ambiguous flavor that comes with the install of the application. Then we'll need a way to expose the schemas for these services and applications so that we can consume, send data, and communicate with the APIs.
I will be much more impressed when WinFS releases their library of schemas that work with all of the windows applications and later other languages start adopting XSD. Then you RSS monkeys can go and create all of your own classes in whatever language you want and I'll be over here autogenerating my classes and DataSets with prebuilt schemas. That's when we're off to the races folks!
T
Longhorn (heart) RSS
Jun 25, 2005 at 4:38 PM