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
[user] | |
name = Łukasz Kurzyniec | |
email = [email protected] | |
[core] | |
autocrlf = true | |
excludesfile = C:\\Users\\lkurzyniec\\.gitignore_global | |
editor = notepad | |
[diff] | |
tool = winmerge | |
[merge] |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>It.IsAny()</Title> | |
<Shortcut>it_any</Shortcut> | |
<Description>Code snippet for It.IsAny()</Description> | |
<Author>Łukasz Kurzyniec</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> |
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
#region Here is the Dragon! | |
/* | |
...................................................................................................................................................... | |
. .**-....... | |
. .*++++:-.... ... ... | |
. .*+++++++**+=@#############@###%-...... | |
. .*+******+++=%@@@@@@@@@@@@@#######@=:...... . | |
. .*+*******+++=@@@@@@@@@@@@#########@@#@+---:+=%-.... | |
. -=##=++*****+++%@@@@ |
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
[].forEach.call(document.querySelectorAll("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)}) | |
// or | |
[].forEach.call($$("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)}) | |
// or | |
for(i=0;A=$$("*")[i++];)A.style.outline="solid hsl("+(A+A).length*9+",99%,50%)1px" |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>It.Is()</Title> | |
<Shortcut>it_is</Shortcut> | |
<Description>Code snippet for It.Is()</Description> | |
<Author>Łukasz Kurzyniec</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> |
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
del "%WINDIR%\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files\*" /Q /S | |
del "%WINDIR%\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\*" /Q /S | |
del "%WINDIR%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\*" /Q /S | |
del "%WINDIR%\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*" /Q /S | |
del "%TEMP%\Temporary ASP.NET Files\*" /Q /S |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
<CodeSnippet Format="1.0.0"> | |
<Header> | |
<Title>CancellationToken</Title> | |
<Shortcut>ctoken</Shortcut> | |
<Description>Code snippet for CancellationToken</Description> | |
<Author>Łukasz Kurzyniec</Author> | |
<SnippetTypes> | |
<SnippetType>Expansion</SnippetType> |
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
# ignore thumbnails created by windows | |
Thumbs.db | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.o | |
*.so |
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
docker build -f src/happycode.Configurations.Api/Dockerfile -t configurations-api:dev . | |
docker run -d -e AWS_ACCESS_KEY_ID=ABC123 -e AWS_SECRET_ACCESS_KEY=abcde12345 -e AWS_DEFAULT_REGION=us-east-1 -p 5001:80 configurations-api:dev | |
powershell docker container stop $(docker container ls -a -q) | |
powershell docker container rm $(docker container ls -a -q) |
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
@echo off | |
IF "%~1"=="" ECHO No profile | |
IF "%~1"=="-pgs" call az account set --subscription b*** | |
IF "%~1"=="-private" call az account set --subscription 5*** | |
call az account show |
OlderNewer