Skip to content

Instantly share code, notes, and snippets.

View zhilich's full-sized avatar
😀

Raman Zhylich zhilich

😀
  • Dallas, TX
View GitHub Profile
11/29/2018 13:03:49 - HCSC Response:
Dear Raman,
I understand your concern in regards to if diagnosis codes, Z00.00, G43.909, E06.4, N20.0, E03.9, and J30.9, and procedure codes, (CPT 80061) Lipid Panel, (CPT 80053) Comprehensive Metabolic Panel, (CPT 85025) CBC w/Diff, (CPT 82728) Ferritin, (CPT 83036) A1C Hemoglobin, (CPT 83540) Iron, (CPT 83735) Magnesium, (CPT 86376) Thyriod Peroxidase Antibodies (TPO), (CPT 84443) TSH, (CPT 84481) T3 Free, (CPT 84439) T4, Free, (CPT 82607, 82746) Vitamin B12/Folic Acid, (CPT 82306) Vitamin D, 25-Hydroxy, Total, Immunoassay, (CPT 84482) Reverse T3, (CPT 84270) SHBG and (CPT 86003 (x15)) Food Allergy are covered as preventative and medically necessary. I appreciate the opportunity to review these diagnosis and procedure codes and explain.
The diagnosis code Z00.00 is a routine diagnosis; therefore, if this is the primary diagnosis the claims will process according to your preventative benefits listed below.
If the primary diagnosis is G43.909, E06.4, N20.0, E03.9 or J30.
<body style="font: bold 13px Verdana; color: #fff; background-color: #777">
Lorem Impsum Lorem Impsum Lorem Impsum Lorem Impsum
</body>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
@author: Raman Zhylich ([email protected])
This project configures IISExpress in Visual Studio.
-->
<PropertyGroup>
<BuildDependsOn>
ConfigureIISExpress;
$(BuildDependsOn);
</BuildDependsOn>
"use strict";
//This file is used to load ES6 unit-tests transpiled into AMD modules.
var __karma__;
var tests = [];
var files = {};
for (var file in __karma__.files) {
if (__karma__.files.hasOwnProperty(file)) {
if (/spec\.js$/.test(file)) {
@zhilich
zhilich / SimpleHttpServer.ps1
Created November 6, 2017 03:33
Simple Http Server in PowerShell
function Load-Packages
{
param ([string] $directory = 'Packages')
$assemblies = Get-ChildItem $directory -Recurse -Filter '*.dll' | Select -Expand FullName
foreach ($assembly in $assemblies) { [System.Reflection.Assembly]::LoadFrom($assembly) }
}
Load-Packages
$url = 'http://*:443/'
@zhilich
zhilich / CleanupArtifacts.ps1
Created November 6, 2017 03:32
Cleans up Artifactory repository from old artifacts.
#
# CleanupArtifacts.ps1
# Cleans up Artifactory repository from old artifacts.
# Requires Powershell 5 because of the bug with Invoke-RestMethod in PS 3,4!
#
param([Parameter(Mandatory=$true)]$artifactoryUrl, [Parameter(Mandatory=$true)]$authorization, [Parameter(Mandatory=$true)]$repo, [Parameter(Mandatory=$true)]$path, [Parameter(Mandatory=$true)]$lifetime)
$ErrorActionPreference = "Stop"
trap
@zhilich
zhilich / InstallMsi.ps1
Created November 6, 2017 03:29
Installing MSI several times
param (
[Parameter(Mandatory=$false)][string]$Instance
)
[string]$DefaultInstance = "MyProduct_MSI"
if ($Instance) {
Write-Host "Copying installer to $($Instance).msi"
Copy-Item "MyProduct_MSI.msi" "$($Instance).msi"
$md5 = new-object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider
$utf8 = new-object -TypeName System.Text.UTF8Encoding
$hash = (new-object -TypeName System.Guid -ArgumentList @(,$md5.ComputeHash($utf8.GetBytes($Instance)))).ToString().ToUpper()
@zhilich
zhilich / npmcache.ps1
Last active November 6, 2017 03:26
npm3 custom cache
# This is a custom implementation of npm cache.
# It is significantly faster then original implementation and restores packages almost instantaneously.
$ErrorActionPreference = "Stop"
if (-not (Test-Path ".\node_modules")) {
Write-Host "node_modules folder is missing. Creating cache entry and junction point correspondingly."
$md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider
# Calculating hash from package.json. We are using it as a key in our cache.
# todo: Currently we assume that there will be no collisions in MD5 cache. Ideally we should store package.json in cache and perform full comparison between files.