I hereby claim:
- I am firehed on github.
- I am firehed (https://keybase.io/firehed) on keybase.
- I have a public key whose fingerprint is D20D 54D3 80A8 F0CE 3AC3 87D6 DD4D EF36 33E5 5C75
To claim this, I am signing this object:
{ | |
"openapi": "3.0.0", | |
"components": { | |
"examples": {}, | |
"headers": {}, | |
"parameters": {}, | |
"requestBodies": {}, | |
"responses": {}, | |
"schemas": { | |
"Base64URLString": { |
{ | |
"name": "firehed/psalm-repro", | |
"require-dev": { | |
"vimeo/psalm": "dev-master" | |
}, | |
"authors": [ | |
{ | |
"name": "Eric Stern", | |
"email": "[email protected]" | |
} |
const char* ssid = "yourssid"; | |
const char* password = "yourpassword"; | |
const char* deviceName = "ghsw8181"; |
diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim | |
index f7c25b0..f541878 100644 | |
--- a/autoload/ale/engine.vim | |
+++ b/autoload/ale/engine.vim | |
@@ -195,6 +195,19 @@ function! s:HandleExit(job_id, exit_code) abort | |
endfunction | |
function! s:HandleLSPResponse(response) abort | |
+ let l:is_diag_response = get(a:response, 'method', '') ==# 'textDocument/publishDiagnostics' | |
+ |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# This script checks if a mysql server is healthy running on localhost. It will | |
# return: | |
# "HTTP/1.x 200 OK\r" (if mysql is running smoothly) | |
# - OR - | |
# "HTTP/1.x 500 Internal Server Error\r" (else) | |
# | |
# The purpose of this script is make haproxy capable of monitoring mysql properly | |
# |
#!/usr/bin/php | |
<?php | |
$url = $_ENV['BUILD_URL']; | |
$res= json_decode(file_get_contents($url . 'api/json')); | |
$silent = false; | |
$message = ''; | |
$action = 'reject'; // default no | |
switch ($res->result) { | |
case 'SUCCESS': | |
$message = 'Build ok!'; |
<? | |
$x = get_defined_constants(); | |
list($kf,$vf) = array_values(getopt('k:v:')); | |
foreach ($x as $k =>$v) { | |
if ($kf !== null && 0 !== stripos($k, $kf)) continue; | |
if ($vf === null || $v == $vf) echo "$k:$v\n"; | |
} |
<?php | |
private function getKey() { | |
if ($this->foo) { | |
$config = get_config(); | |
if (!isset($config['func']) || !is_callable($config['func'])) { | |
throw new Exception("Function missing") | |
} | |
$func = $config['func']; | |
} | |
else { |
#!/bin/bash | |
context=0 | |
usage() { | |
cat <<EOF | |
lif: Line in File | |
Usage: | |
lif [-c context] line [file] |