Ir al contenido principal

Capacitación en línea

Python, uno de los lenguajes soportados en la GoogleApps
beginning: python, ShowMeDo.

jQuery commercial screencast: Peepcode.com

SharePoint 2010, la tecnología de mayor crecimiento en micro$oft


Learning Snack for Developers:
Microsoft eLearning:
SharePoint 2010 for Internet Sites Implementers' Course

Developing on SharePoint 2010

Getting Start
LINQ for SharePoint 2010 Tutorial

Advanced Developer Training
Formal Training:
Microsoft: Portal Oficial de SharePoint 2010; guías generales, marketing etc.

Migration from 2007 to 2010
Channel 9 Webcast/Conferences

Administrator/IT Consultant must know Information:

Videos Demos and Training Getting Started with SharePoint Server 2010 for IT Pros
Advanced IT Professional Training:
Compare SharePoint Editions
Operations and manageability for SharePoint Server 2010

SharePoint 2007,
Authentication:
Branding:
Ramp up
  1. Track: SharePoint for Developers – Part 1
  2. Track: SharePoint for Developers – Part 2
Business Data Catalog
InfoPath
User Controls


Web Parts
Commercial Videos:
  1. Trainsignal SharePoint 2007/2010 Training
  2. Point8020 (watch 12 hours of free, in-depth developer training)
  3. Lynda.com SharePoint 2007/2010
  4. Total Training: Microsoft Office SharePoint Designer 2007
  5. SharePoint-Videos.com / 2007 and 2010
  6. Pluralsight: SharePoint Services Fundamentals for Developers On-Demand (wss3.0, MOSS 2007)
  7. VTC Computer Software Training
  8. LearnDevNow: SharePoint Library (2007/2010)
  9. AppDev: Microsoft SharePoint Trainig
  10. Pilothouse Consulting: SharePoint Training DVDs (2010/2007/2003)
  11. CBT Nuggets:
  12. USPJ Academy
  13. Sahil Malik: SharePoint 2010 & 2007 Franklins.Net Video Training
  14. Welcome to the SharePoint Shepherd's Guide for End Users

Blogs:
  1. Best SharePoint blogs (2007/2010)
  2. Office 2010 and SharePoint 2010 Launch: A summary of Technical Content that Matters to Developers

Comentarios

Entradas populares de este blog

GNUstep ProjectCenter/Gorm/AClock running Ubuntu 10.04

Download sources GNUstep (stable or unstable) to compile; Dependencies First you need to check dependencies in ubuntu and install with sudo apt-get or search before with apt-cache command; almost every package ends with *-dev in ubuntu repositories this command will install all dependencies for compile: ~$ sudo apt-get install libffi-dev libssl-dev libxml2-dev libxslt1-dev libcairo2-dev libxt-dev GNUstep Make compiling GNUstep make is our first target; it's the primary package to compile GNUstep applications. get the package, untar and change into the folder and compile: ~$wget ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-make-2.4.0.tar.gz ~$tar xzvf gnustep-make-2.4.0.tar.gz ~$cd gnustep-make-2.4.0/ ~$./configure --prefix=/usr/local/GNUstep/ --enable-native-objc-exceptions ~$make ~$sudo make -E install *NOTE: the options /usr/local/GNUstep/ is the folder where all the GNUstep is going to install. the second option --enable-native-objc-exceptions enable th...

meta:progid

The meta:progid attribute on the Page directive is necessary if the page will ever be opened in SharePoint Designer. You should include this as site pages are supposed to support customization and thus, be opened in SharePoint Designer. If you don't want to allow pages to be opened and customized in SharePoint Designer, then you should do that through permissions, not at the page level. Using ASP.NET 2.0 Code Behind Files in SharePoint v3 Sites SPFile.ProgID gets a string that identifies the application in which the file was created. That's all the meta:progid is about. It's a identifier for SharePoint and you probably should not use other attributes, they might cause run-time error. Ref: msdn forum thread explanation