I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
| <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
| <s:Boolean x:Key="/Default/PatternsAndTemplates/StructuralSearch/Pattern/=23B254B63645A7449313D9A6F88A5C0C/@KeyIndexDefined">True</s:Boolean> | |
| <s:String x:Key="/Default/PatternsAndTemplates/StructuralSearch/Pattern/=23B254B63645A7449313D9A6F88A5C0C/Comment/@EntryValue">Replace Mock Field with FakeItEasy</s:String> | |
| <s:Boolean x:Key="/Default/PatternsAndTemplates/StructuralSearch/Pattern/=23B254B63645A7449313D9A6F88A5C0C/CustomPatternPlaceholder/=fieldName/@KeyIndexDefined">True</s:Boolean> | |
| <s:String x:Key="/Default/PatternsAndTemplates/StructuralSearch/Pattern/=23B254B63645A7449313D9A6F88A5C0C/CustomPatternPlaceholder/=fieldName/Properties/=CaseSensitive/@EntryIndexedValue">True</s:String> | |
| <s:String x:Key="/Default/PatternsAndTempla |
| ;----------------------------------------------; | |
| ; Coder plugin syntax file ; | |
| ;----------------------------------------------; | |
| ;Author: wisgest | |
| ;=============== | |
| ;Colors | |
| ; Color need to be in #RRGGBB format. | |
| ; If color equal to zero, then color ignored. |
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
| // Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository | |
| $ git ls-files | xargs wc -l |
| Puts on glasses: | |
| (•_•) | |
| ( •_•)>⌐■-■ | |
| (⌐■_■) | |
| Takes off glasses ("mother of god..."): | |
| (⌐■_■) | |
| ( •_•)>⌐■-■ |
| # install haproxy | |
| yum install -y haproxy | |
| # config haproxy for rabbitmq | |
| cat > /etc/haproxy/haproxy.cfg << "EOF" | |
| global | |
| log 127.0.0.1 local0 notice | |
| maxconn 10000 | |
| user haproxy |
| #!/usr/bin/env python | |
| import os | |
| import sys | |
| import json | |
| try: | |
| from urllib.request import Request, urlopen # Python 3 | |
| except: | |
| from urllib2 import Request, urlopen # Python 2 |
| /* VSCode keybindings for alternative HJLK navigation, when using non-vim mode | |
| * and support for quick panel navigation with Tab/Shift+Tab. | |
| * | |
| * So basically I just tried to use everywhere in the editor these aliases: | |
| * Alt+j = down | |
| * Alt+k = up | |
| * Alt+l = right | |
| * Alt+h = left | |
| * Alt+b = previous-word | |
| * Alt+w = next-word |
| // Copyright (c) .NET Foundation. All rights reserved. | |
| // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | |
| using System; | |
| using System.Diagnostics; | |
| using System.IO.Pipelines; | |
| using System.Net.Sockets; | |
| using System.Runtime.CompilerServices; | |
| using System.Threading; | |
| using System.Threading.Tasks; |