This file contains hidden or 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"?> | |
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
<soap:Header> | |
<UserCredentials xmlns="http://mws.envisionrx.com/"> | |
<UserID>string</UserID> | |
<Password>string</Password> | |
</UserCredentials> | |
</soap:Header> | |
<soap:Body> | |
<GetBrandEquivalentByGenericNDC xmlns="http://mws.envisionrx.com/"> |
This file contains hidden or 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
<?php | |
class UserCredentials { | |
public $Username; | |
public $Password; | |
public function __construct( $username, $password ) { | |
$this->Username = $username; | |
$this->Password = $password; | |
} | |
} |
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <systemd/sd-bus.h> | |
static sd_bus_error error = SD_BUS_ERROR_NULL; | |
static sd_bus_message *response; | |
static sd_bus *bus; | |
static int result; | |
static const char *path; |
This file contains hidden or 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
#!/usr/bin/env sh | |
IFS=' '; | |
parse() { | |
while read -r line; do | |
list=${line} | |
for NDC in ${list[@]}; do | |
if [[ "list[${NDC}]" -gt 0 ]]; then |
This file contains hidden or 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
CREATE TABLE IF NOT EXISTS "drugs_list" ( | |
"NDC" TEXT, | |
"DrugName" TEXT, | |
"GenericName" TEXT, | |
"Strength" INTEGER, | |
"StrengthUOM" TEXT, | |
"DoseForm" TEXT, | |
"MONY" TEXT, | |
"GPI" REAL, | |
"PackageSize" REAL, |
This file contains hidden or 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
SELECT "primary"."NDC" as "primaryNDC", | |
"generic"."NDC" as "genericNDC", | |
"primary"."MONY", | |
"primary"."ProductName" as "primaryDrug", | |
"generic"."ProductName" as "genericDrug", | |
"primary"."Strength", | |
"primary"."StrengthUOM", | |
FROM "drugs" AS "primary", | |
"drugs" AS "generic" |
This file contains hidden or 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
import "ecere" | |
import "ecere.gui" | |
class SkinnedBtn: Button { | |
void OnRedraw(Surface surface) { | |
int tw = 0, th = 0; | |
int ot = 0, ol = 0, | |
ob = size.h, or = size.w; | |
This file contains hidden or 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
[robert.butler@mc01 debug.linux]$ du -ch InterVueClient | |
188K InterVueClient | |
188K total | |
[robert.butler@mc01 debug.linux]$ ldd InterVueClient | |
linux-vdso.so.1 (0x00007ffe851d3000) | |
libecere.so.0 => /usr/lib/libecere.so.0 (0x00007f2d3ad98000) | |
libc.so.6 => /usr/lib/libc.so.6 (0x00007f2d3abd0000) | |
libjpeg.so.8 => /usr/lib/libjpeg.so.8 (0x00007f2d3ab38000) | |
libpng16.so.16 => /usr/lib/libpng16.so.16 (0x00007f2d3ab00000) | |
libz.so.1 => /usr/lib/libz.so.1 (0x00007f2d3aae0000) |
This file contains hidden or 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
<?php | |
require_once 'vendor/autoload.php'; | |
use Illuminate\Support\Arr; | |
/** | |
* Demo with some reflection, I'm working on this for a project and need | |
* this working or at least a viable workaround very soon, thanks! | |
*/ | |
class SlackRegistration { } |
This file contains hidden or 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
public import "ecere" | |
public import "ecere.gui.controls" | |
define skinBackground = Color { r = 192, g = 192, b = 192 }; | |
define skinForeground = black; | |
define skinTextForeground = black; | |
define evenRowBackground = Color { 80, 70, 60 }; | |
define selectionColor = blue; | |
static const char * buttonStates[SkinBitmap] = { |