I hereby claim:
- I am gerrited on github.
- I am gerrited (https://keybase.io/gerrited) on keybase.
- I have a public key whose fingerprint is 0DAE 5EE0 349C 9CE0 D317 9E33 F0B9 5B14 F0C7 C3EE
To claim this, I am signing this object:
function acp { | |
param([string]$mes = "Small changes") | |
git add . | |
git commit -m $mes | |
git push | |
} |
function short { | |
param([string]$url) | |
$escapedUrl = [URI]::EscapeUriString($url) | |
$shorturl = curl "https://is.gd/create.php?format=simple&url=$escapedUrl" | |
Write-Output $shorturl | |
Set-Clipboard $shorturl | |
} |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: hello-blinkt | |
labels: | |
app: hello-blinkt | |
spec: | |
replicas: 16 | |
selector: | |
matchLabels: |
I hereby claim:
To claim this, I am signing this object:
public static class ControlExtensions | |
{ | |
public static IDisposable GetRedrawSuspender(this Control cuntrol) { return new RedrawSuspender(cuntrol); } | |
} | |
public class RedrawSuspender : IDisposable | |
{ | |
private Control _control; | |
internal RedrawSuspender(Control control) |
public static class StringExt | |
{ | |
public static int GetHashCode32(this string s) | |
{ | |
var chars = s.ToCharArray(); | |
var lastCharInd = chars.Length - 1; | |
var num1 = 0x15051505; | |
var num2 = num1; | |
var ind = 0; | |
while (ind <= lastCharInd) |