Skip to content

Instantly share code, notes, and snippets.

@akilb
akilb / profile.ps1
Created April 3, 2018 11:37
PowerShell personalisation
# Bail if this is running in the NuGet Package Manager Console
# https://github.com/NuGet/Home/issues/917
if ($profile.Contains("NuGet_profile")) {
# Just define this func that helps with updating packages
Function Update-AllProjects {
[CmdletBinding()]
Param($arg)
foreach ($project in Get-Project -all) { Update-Package -Id $arg -ProjectName $project.ProjectName }
};
@akilb
akilb / PRIVACY_POLICY.md
Last active August 21, 2017 23:38
Ruk-A-Tuk App Privacy Policy

Privacy Policy

Akil Burgess built the Ruk-A-Tuk app as an Open Source app. This SERVICE is provided by Akil Burgess at no cost and is intended for use as is.

This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Ruk-A-Tuk unless otherwise defined in this Privacy Policy.

@akilb
akilb / vscode-settings.json
Last active May 10, 2017 09:45
VSCode settings
{
"editor.renderWhitespace": true,
// Columns at which to show vertical rulers
"editor.rulers": [80, 120],
// Controls the font size in pixels.
"editor.fontSize": 14,
// Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.