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
| .bg-blue { | |
| background: #2196f3!important | |
| } | |
| .no-transition { | |
| transition: none!important | |
| } | |
| .q-loading-bar { | |
| position: fixed; |
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 | |
| namespace db; | |
| class mysqli | |
| { | |
| private $conn; | |
| private $temp; | |
| private $data; | |
| protected static $_instance; | |
| function __construct( | |
| $database = "wo", |
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
| function Loader($className,$includePath) | |
| { | |
| $fileName = ''; | |
| $separator = '\\'; | |
| if (false !== ($lastNsPos = strripos($className, $separator))) { | |
| $namespace = substr($className, 0, $lastNsPos); | |
| $className = substr($className, $lastNsPos + 1); | |
| $fileName = str_replace($separator, DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR; | |
| } |
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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> | |
| <html> | |
| <head> | |
| <title> | |
| display/box/float/clear test | |
| </title> | |
| <style type="text/css"> | |
| /* last modified: 1 Dec 98 */ | |
| html { |
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
| <!--- https://blockbuilder.org/muthu32/6bd29d851a506f06b9f21b5ac9c814c9 ----> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF8"> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js" ></script> | |
| <script> | |
| function svgBarChartEntry() | |
| { | |
| get_heat_staytime_list(); | |
| } |
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
| /*! | |
| * Ext Core Library 3.0 | |
| * http://extjs.com/ | |
| * Copyright(c) 2006-2009, Ext JS, LLC. | |
| * | |
| * MIT Licensed - http://extjs.com/license/mit.txt | |
| */ | |
| // for old browsers | |
| window.undefined = window.undefined; |
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
| .wrap | |
| { | |
| height: 100%; | |
| width: 100%; | |
| position: fixed; | |
| padding-top: 104px; | |
| left: 0; | |
| z-index: 99; | |
| top:-100%; | |
| } |
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
| document.getElementById("header").style.top = 0; | |
| var prevScrollpos = window.pageYOffset; | |
| window.onscroll = function() { | |
| document.getElementById("header").style.position = 'fixed'; | |
| var currentScrollPos = window.pageYOffset; | |
| var htop = parseInt(document.getElementById("header").style.top); | |
| var menuHeight = $('header').outerHeight()+5; | |
| if (prevScrollpos > currentScrollPos) { | |
| htop = htop +3; |
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
| //Download remote file | |
| function getUrlFile($url, $path) | |
| { | |
| $newfilename = $path; | |
| $file = fopen($url, "rb"); | |
| if ($file) { | |
| $newfile = fopen($newfilename, "wb"); | |
| if ($newfile) | |
| while (!feof($file)) { | |
| fwrite($newfile, fread($file, 1024 * 8), 1024 * 8); |
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
| -- --------------------------------------------------------------------------- | |
| -- Levenshtein distance | |
| -- from the Artful Common Queries page | |
| -- http://www.artfulsoftware.com/infotree/qrytip.php?id=552 | |
| -- --------------------------------------------------------------------------- | |
| -- The Levenshtein distance between two strings is the minimum number of | |
| -- operations needed to transform one string into the other, where an operation | |
| -- may be insertion, deletion or substitution of one character. |