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
Write-Host "### Installing Chocolatey" | |
if (-Not (Test-Path "$env:chocolateyInstall")) | |
{ | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
} | |
Write-Host "### Configuring Chocolatey" | |
choco upgrade all | |
choco feature enable -n=allowGlobalConfirmation | |
choco feature enable -n=allowEmptyChecksums |
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
PL | EN | |
---|---|---|
ATANH | ATANH | |
ATAN2 | ATAN2 | |
ATAN | ATAN | |
ASINH | ASINH | |
ASIN | ASIN | |
ASC | ASC | |
ARKUSZE | SHEETS | |
ARKUSZ | SHEET | |
ARG.LICZBY.ZESP | IMARGUMENT |
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
// Readonly property: | |
// throws TypeError when 'use strict'; | |
var cat = { | |
name: 'Fluffy' | |
}; | |
Object.defineProperty(cat, 'name', {writable: false}); |
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
// IIFE: | |
let app = (function() { | |
console.log("weheh"); | |
let carId = 123; | |
let getId = function() { | |
return carId * 2; | |
}; | |
return { |
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
#SPACE:: Winset, Alwaysontop, , A |
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
1..10 | foreach { [Guid]::newguid() } |
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
setx DOTNET_CLI_TELEMETRY_OPTOUT 1 |
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
C:\Windows\Prey\current\bin\prey config gui -f |
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
Run, %USERPROFILE%\AppData\Local\slack\Update.exe --processStart "slack.exe", , Normal | |
WinWait, ahk_exe slack.exe | |
Loop, 50 | |
{ | |
WinHide, ahk_exe slack.exe | |
Sleep, 200 | |
} |
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
function Git-ShowRemoteBranches($filter) | |
{ | |
if ($filter) | |
{ | |
git remote show origin | sls $filter | |
} | |
else | |
{ | |
git remote show origin | |
} |