Skip to content

Instantly share code, notes, and snippets.

View Proavtor's full-sized avatar

Kamil Garifull Proavtor

  • Türkiye
  • 21:33 (UTC +03:00)
View GitHub Profile
@Rajeshr34
Rajeshr34 / install_guide.readme
Last active April 20, 2022 20:30
WSL Install Docker+GIT+OPENSSH+CURL in Alpine 3.11.3
!NOTE: host system (windows) should not install any kind of nodejs or python or any other development softwares except IDEs and DOCKER
Enable WSL
Open PowerShell as Administrator and run:
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Update windows to insider program
@stephlocke
stephlocke / AggLookup
Last active November 15, 2022 05:20
Custom aggregate function for use with Lookup joined datasets in SSRS
'Allows aggregation of a multilookup cell and can be configured by the user
'To use add this expression to a cell's expression window:
'=code.AggLookup([aggregate choice as string], LookupSet([Local Column], [Match Column], [Return Column], [Dataset as string]))
'
'Available aggregate choices are count, sum, min, max and avg
Function AggLookup(ByVal choice as String, ByVal items as Object)
'Ensure the LookupSet array provided is not empty
If items is Nothing then
Return Nothing