monad
Tag details
Welcome to the 'monad' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'monad'.
Look up
"monad"
at The Free Dictionary
Latest blogosphere posts tagged “monad”
-
PowerShell 2.0 – Introducing the PModem File Transfer Protocol
Nivot Ink —
Authority: 449
One of the things that never quite fit well with me with the remoting feature in PowerShell2.0 is that while you can “telnet” to remote systems with Enter-PSSession and importcommands and do all sorts of cool tricks, there is no way to send or retrieve filesfrom the console. It seems like such a waste that you ...2 weeks ago -
PowerShell 2.0 - Enabling Remoting with Virtual XP Mode on Windows 7
Nivot Ink —
Authority: 449
UPDATE : Some general information on remoting: Hey,Scripting Guy! Tell Me About Remoting in Windows PowerShell 2.0 If you’re running Windows 7 (and if not, why not?) you may have noticed that premiumversions include a license for Virtual XP Mode. (read more at ...2 weeks ago -
PowerShell 2.0 goes RTM for ALL Platforms
Nivot Ink —
Authority: 449
( from: http://support.microsoft.com/default.aspx/kb/968929 –downloads at foot of page ) Windows PowerShell is a command-line shell and scripting language that is designedfor system administration and Automation. Built on the Microsoft .NET Framework, ...2 weeks ago -
PowerShell 2.0 - Module Initializers
Nivot Ink —
Authority: 449
You might not know it, but when you import a PowerShell module you can pass it oneor more arguments by way of Import-Modules -ArgumentList (aliased to -Args) parameter.While it looks like passing parameters to a standard ps1 file, there are some limitations.Take this module for an example: # -- begin foo.psm1 ...3 weeks ago -
PowerShell 2.0 – Getting and setting text to and from the clipboard
Nivot Ink —
Authority: 449
The Windows Clipboard – accessible via System.Windows.Forms.Clipboard – requires anSTA thread to read/write to it. By default, the console version of PowerShell 2.0(i.e. not ISE) starts in MTA mode. This means that read/writing via this class isunreliable. Rather than always starting up console PowerShell in STA ...4 weeks ago -
ANN: Melbourne Scala User Group Meeting - Monday 26 October
Scala Blog —
Authority:
The Melbourne Scala User Group next meets on Monday the 26th of October. Topics being presented are: Monads in Scala SXR (Scala XRay) - a compiler plugin for generating browsable source in HTML The meeting will start at 6:30pm at IBS, Level 2, 476 St Kilda Road. If you want more info, please contact the ...4 weeks ago -
PowerShell – Function Parameters & .NET Attributes
Nivot Ink —
Authority: 449
ArgumentTransformationAttributes are attached to function parameters. They interceptthe value coming in and optionally transform it before it is assigned to the targetparameter. This is how the powershell type system is enforced: function Foo ( [string]$str ) { ... }(gi function:foo).parameters.str.attributes ...6 weeks ago