Monday, November 15, 2010
Tuesday, November 09, 2010
forgatas Silverlight-ban
Monday, October 04, 2010
Thursday, September 09, 2010
David Mendez: Start, Stop, and Restart Windows Services from Mac OS X
Mac OS X includes Samba support by default, and this is really handy if you’d like to remotely restart and monitor services running on a Windows machine.
To list services running on the Windows machine, use this command:net rpc service list -I IPADDRESS -U USERNAME%PASSWORD
A practical example would be:net rpc service list -I 192.168.0.115 -U Windows%myPassword
After identifying the service you want to restart, you issue the following command to stop the service:net rpc service stop SERVICENAME -I IPADDRESS -U USERNAME%PASSWORD
Then you can restart (or start) the service by using the following command:net rpc service start SERVICENAME -I IPADDRESS -U USERNAME%PASSWORD
This is tip that I found on Lifehacker that was aimed at Linux users, but considering Mac OS X has a unix underbelly equipped with samba the command works just the same on a Mac.
Thursday, August 12, 2010
Sunday, June 13, 2010
Wednesday, June 09, 2010
readerQuotas
Wednesday, June 02, 2010
Sunday, May 16, 2010
Scott Guthrie: VS 2010 and .NET 4 Series
- Clean Web.Config Files
- Starter Project Templates
- Multi-targeting
- Multiple Monitor Support
- New Code Focused Web Profile Option
- HTML / ASP.NET / JavaScript Code Snippets
- Auto-Start ASP.NET Applications
- URL Routing with ASP.NET 4 Web Forms
- Searching and Navigating Code in VS 2010
- VS 2010 Code Intellisense Improvements
- WPF 4
- Add Reference Dialog Improvements
- SEO Improvements with ASP.NET 4
- Output Cache Extensibility with ASP.NET 4
- Built-in Charting Controls for ASP.NET and Windows Forms
- Cleaner HTML Markup with ASP.NET 4 - Client IDs
- Optional Parameters and Named Arguments in C# 4 - and a cool scenarios with ASP.NET MVC 2
- Automatic Properties, Collection Initializers and Implicit Line Continuation Support with VB 2010
- New <%: %> Syntax for HTML Encoding Output using ASP.NET 4
- JavaScript Intellisense Improvements with VS 2010
- VS 2010 Debugger Improvements (DataTips, BreakPoints, Import/Export)
- Box Selection and Multi-line Editing Support with VS 2010
- VS 2010 Extension Manager (and the cool new PowerCommands Extension)
Friday, May 14, 2010
WrapPanel
Victorgaudioso: How to use the Silverlight Toolkit’s WrapPanel to Create a Three Column ListBox
Thursday, May 13, 2010
Scott Guthrie: Silverlight 2 End to End Tutorial
To help people come up to speed with Silverlight 2, I've written a simple Silverlight application and put together a series of step by step tutorials that explain the different programming concepts behind it (controls, layout management, networking, data-binding, styles, user controls, templates, etc). I also added a tutorial post that demonstrates how to migrate the application outside of the browser and enable it to run as a desktop application using WPF and the full .NET Framework.
Below are the pointers to the 8 tutorials I've put together:
- Part 1: Creating "Hello World" with Silverlight 2 and VS 2008
- Part 2: Using Layout Management
- Part 3: Using Networking to Retrieve Data and Populate a DataGrid
- Part 4: Using Style Elements to Better Encapsulate Look and Feel
- Part 5: Using the ListBox and DataBinding to Display List Data
- Part 6: Using User Controls to Implement Master/Details Scenarios
- Part 7: Using Templates to Customize Control Look and Feel
- Part 8: Creating a Digg Desktop Version of our Application using WPF