Amazing Web Library


참조 URL
  1. http://a-web.me/index.html



АWeb library is a powerful, compact and incredibly fast and convenient javascript-library that combines the most advanced technologies to create professional web sites on pure html. Site development will be similar to putting together a puzzle. Beautifully designed visual components cover most of the requirements of the modern internet. Smooth and impressive animations will amaze your users. Mastering the library does not take much of your time, but you will feel the benefit from its use immediately.



애니메이션 라이브러리이자 소량의 Visual Component가 내재되어 있다.















Visual Studio Magagine

Windows 8, Visual Studio, HTML5 & Javascript Tutorials )


참조 URL
  1. http://visualstudiomagazine.com/Home.aspx
  2. http://visualstudiomagazine.com/pages/topic-pages/visual-studio-tutorials.aspx
  3. http://visualstudiomagazine.com/pages/topic-pages/windows-8-tutorials.aspx




MS .Net Framework와 HTML, Javascript에 대한 튜토리얼을 얻을 수 있는 사이트이다. 여러가지 최신 정보와 기술을 접할 수 있는 기회가 될 것이다.





 

 


 


Import-Module - 파워쉘 모듈


참조 URL
  1. http://msdn.microsoft.com/en-us/library/windows/desktop/dd878340(v=vs.85).aspx
  2. http://msdn.microsoft.com/en-us/library/windows/desktop/dd901839(v=vs.85).aspx



- 공통 모듈에 해당하는 파일


CommonFunction.psm1 파일


Function TestExecuteFunction {

    param([string]$Str);


    Write-Host $Str;

}





- 공통 모듈을 이용하는 파일


CommonFunctionTest.ps1 파일


Import-Module "D:\myScript\CommonFunction.psm1";    <- 이 부분에서 로드하려는 모듈을 지정한다.

Get-Command -Module CommonFunction


# 로드된 모듈의 Function을 실행한다.

TestExecuteFunction 'Test message!'



# 모듈의 Function을 사용하지 않으면 모듈 해제 한다.

Remove-Module  CommonFunction






파워쉘을 편집시 ISE 모드로 실행하면 위와 같이 화면에서 편리하게 사용할 수 있다.







+ Recent posts