http://bit.ly/daF035

"The short version of Fitts' law, to save you all that tedious reading, is this:

- Put commonly accessed UI elements on the edges of the screen. Because the cursor automatically stops at the edges, they will be easier to click on.

- Make clickable areas as large as you can.

2

http://en.wikipedia.org/wiki/Software_Craftsmanship

"Software craftsmanship is an approach to software development that emphasizes the coding skills of the software developers themselves.

http://techcrunch.com/2010/03/15/ev-williams-sxsw/

"UH: What makes 21st century businesses different? Like Twitter? The first principle to me is experimentation. Why are you willing to explore different possibilities?

EW: Experimentation lets you create value.

http://gojko.net/2010/03/12/fit-vs-slim/

"For using acceptance tests as a guide for development, beware of overdoing it. I am very concerned about long-term maintenance costs of such tests.

http://googlewave.blogspot.com/2010/02/ten-tips-for-waving.html

Move through the unread messages in a wave by pressing the spacebar.

http://withaherring.blogspot.com/2010/03/waferslim-101-released.html

WEDNESDAY, 10 MARCH 2010

This is a bug fix release targeting:

- Undefined symbols in tables raise an exception

- Multi-line data in fitnesse table cells causes exception

- Test fails when __repr__ raises exception while loggin

Using the SharePoint 2010 Client Object Model - Part 1

http://goo.gl/mgOu

Tried it from powershell - doesn't work

This works:

>>Add-Type -Path Microsoft.SharePoint.Client.dll

>>$client = New-Object Microsoft.SharePoint.Client.ClientContext "http://sp2010dc"

This doesn't

>>$client.LoadQuery( $

from >>get-help about_functions

Any function can take input from the pipeline. You can control how a

function processes input from the pipeline using Begin, Process, and End

keywords.

- The Begin statement list runs one time only, at the beginning of the function.

http://technet.microsoft.com/en-us/library/dd315244.aspx

Applies To: Windows PowerShell 2.0

The Windows PowerShell Integrated Scripting Environment (ISE) is a host application for Windows PowerShell.

http://goo.gl/RpfJ

- Explain what exactly the end result will be

- Tell the customer what you will be doing

- Explain what the customer will need to do

- Outline anything the customer will experience (wait, discomfort, etc.)

- Call the customer by name to personalize the experience

- If tensio

just run this and check example 6

get-help start-job -examples

>>cd wsman:

>>ls

ComputerName Type

------------ ----

localhost Container

>>cd localhost

>>ls

Name Value

---- -----

MaxEnvelopeSizekb 150

MaxTimeoutms 60000

MaxBatchItems 32000

MaxProviderRequests 4294967295

Client

Service

Shell

Listener

Plugin

ClientCertificate

>> cd client

>> ls

http://sqlpsx.codeplex.com/

The primary goal of SQL Server PowerShell Extensions (SQLPSX) is to provide intuitive functions around the SMO objects which are backward compatible with SQL 2000. A secondary goal is to provide an application which reports flatten/effective security settings.

Search for what you need:

>>(Get-SPWeb "http://sp2010dc" ).RecycleBin | ?{$_.Title -match "cool"}

Web : Home

ID : b23d2d41-cd6a-4471-a891-c86f83563e11

ItemState : FirstStageRecycleBin

ItemType : ListItem

Title : Would be cool

DirName : Lists/Tasks

LeafName : 1_.000

Author : PRODUCT\administ

1

you are on computerA, SharePoint is on computerB

on computerA:

>>Enter-PSSession -Computer computerB

>>Add-PsSnapin Microsoft.Sharepoint.PowerShell

Enjoy :)

>>Invoke-Command -session $session {Get-Command Restore* | ?{$_.ModuleName -eq "Microsoft.SharePoint.PowerShell" } |select Name}

Restore-SPEnterpriseSearchServiceApplication

Restore-SPFarm

Restore-SPSite

>>Invoke-Command -session $session {Get-Command *Backup*|?{$_.CommandType -eq "CmdLet"}|sele

http://huddledmasses.org/powershell-modules/

"Modules appear destined to replace snapins as the main way to extend PowerShell.

http://huddledmasses.org/whats-new-in-powershell-2/

Advanced Functions

Modules

Help

Remoting

Eventing

Integrated Script Editor (debugging)

Transaction support

1

>>function test ($x) { &$x(3) }

>>test { param($x) $x + 2 }

5

:)

http://technet.microsoft.com/en-us/library/ee806878(office.14).aspx

- To retrieve a list of all SharePoint 2010 Products cmdlets using the Noun parameter, at the Windows PowerShell command prompt, type the following command: Get-Command –module Microsoft.SharePoint.PowerShell

- To retrieve a list

http://technet.microsoft.com/en-us/library/ee176842.aspx

Can’t remember the name of each and every Windows PowerShell cmdlet? Don’t worry about it; that’s one of the things Get-Command can help you with.

gets alphabetic listing of all currently defined aliases, want to assign alias? check Set-Alias

shows a list of all about documents, very helpful

powershell 2.0 and credssp, works just great

First I thought it is like Kerberos delegation. That is a pain, you have to do bunch of tricks with SPN and AD accounts. But credssp is much easier to turn on and use.

http://support.microsoft.com/kb/951608

CredSSP is a new Security Support Provider (SSP) that is available in Windows XP SP3 by using the Security Support Provider Interface (SSPI).

Blog Archive
About Me
About Me
Loading