Is easy to learn and simple to implement
Leave empty line for a new paragraph.
Consecutive lines of text will continue by default, and they will be wrapped
<?php | |
$session_vars_to_return = array('HTTP_ACCEPT', 'HTTP_ACCEPT_CHARSET','HTTP_ACCEPT_ENCODING','HTTP_ACCEPT_LANGUAGE','HTTP_CONNECTION','HTTP_USER_AGENT','HTTP_X_FORWARDED_FOR','HTTP_COOKIE','HTTP_REFERER'); | |
foreach($session_vars_to_return as $session_var){ | |
if (isset($_SERVER[$session_var])){ | |
echo '<b class="var">'.$session_var.'</b>:'.$_SERVER[$session_var].'<br/>'; | |
} | |
} | |
?> |
// @param [string] text - required. Text to render. | |
// @param [string] width - required. Image height. | |
// @param [string] height - required. Image width. | |
// @param [string] bgcolor - optional. Background color. Default dark grey. | |
// @param [string] fgcolor - optional. Text color. Default white. | |
// @param [string] shadow - optional. Shadow color. Default is no shadow. | |
function imageFromText(text, width, height, bgcolor, fgcolor, shadow) | |
{ | |
var canvas = document.createElement('canvas'); | |
canvas.width = width; |
<!doctype html> | |
<html> | |
<head> | |
<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet"> | |
<script src="http://vjs.zencdn.net/c/video.js"></script> | |
</head> | |
<body> | |
<video id="my_video_1" class="video-js vjs-default-skin" controls | |
preload="auto" width="640" height="264" poster="my_video_poster.png" | |
data-setup="{}"> |
/* | |
imagesQueue.js FULL SOURCE | |
A simple, cross-browser, *parallel* images loader object. | |
imagesQ={ | |
onComplete: function(){} // Fires when all finished loading | |
,onLoaded: function(){} // Fires when an image finishes loading | |
,current: null // Last loaded image (Image Object) | |
,qLength : 0 // the queue length before process_queue | |
,images: [] // Loaded images (array of Image Object) |
#!/bin/bash | |
# Dependencies | |
# - curl | |
# - sed | |
# - ghi (https://github.com/stephencelis/ghi) | |
if [ "$#" -ne 5 ]; | |
then | |
echo "" |
com.medigy.persist.reference.type.clincial.CPT.code | label | |
---|---|---|
0003T | Cervicography | |
0008T | Upper gi endoscopy w/suture | |
0010T | Tb test, gamma interferon | |
0016T | Thermotx choroid vasc lesion | |
0017T | Photocoagulat macular drusen | |
0018T | Transcranial magnetic stimul | |
0019T | Extracorp shock wave tx, ms | |
0020T | Extracorp shock wave tx, ft | |
0021T | Fetal oximetry, trnsvag/cerv |
// Copy paste into your chrome console to periodically hide any comments containing זהות. | |
setInterval(()=>{Array(...document.getElementsByTagName('span')).filter(c=>c.textContent.includes('זהות')).forEach(c=>{c.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.style.display = 'none';});}, 500); |
// By Steve Hanov | |
// [email protected] | |
// Released to the public domain on April 18, 2020 | |
//import { log } from "./log" | |
// Usage: | |
/* | |
declare let arrayBuffer:ArrayBuffer; |