This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: Boxstarter Script | |
# Author: Cameron Rollheiser | |
# Last Updated: 2019-04-17 | |
# | |
# Enable Developer Mode: | |
# | |
# Open Windows Settings and search for "Developer Mode" | |
# | |
# Show Installed Apps: | |
# Get-AppxPackage | Select-Object Name, PackageFullName, Version | Format-Table -AutoSize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Libraries = any; | |
type Remoting = any; | |
export interface LibrariesViewModel { | |
list(): Libraries[]; | |
} | |
class LibrariesImpl implements LibrariesViewModel { | |
public list(): Libraries[] { | |
return [ | |
'lib1', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Recusively Unzip 7-zip files in place | |
$7zipPath = "$env:ProgramFiles\7-Zip\7z.exe" | |
if (-not (Test-Path -Path $7zipPath -PathType Leaf)) { | |
throw "7 zip file '$7zipPath' not found" | |
} | |
Set-Alias 7zip $7zipPath | |
Get-ChildItem -Recurse *.z | %{ 7zip e $_.FullName "-o$($_.Directory)"} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This script automates a call to mysqldump | |
# and sends the output to a file in a backup | |
# directory. The script is set up to keep | |
# seven days of history. | |
# | |
# Before you can run this script you must | |
# set up a MySQL user that can perform the | |
# backup. This user must have permission to |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ab-pause-scrolling, | |
body.ab-pause-scrolling, | |
html.ab-pause-scrolling { | |
overflow: hidden; | |
touch-action: none | |
} | |
.ab-centering-div, | |
.ab-iam-root.v3 { | |
position: fixed; |
OlderNewer