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
var regUrl = "http://v3.kasservis.loc/busticket/availablevoyage?src=" + av.src + "&dest=" + av.dest + "&dt=" + av.dt + "&nTick=" + av.numTick; | |
$.ajax({ | |
url: regUrl, | |
dataType: "json", | |
timeout: 120000, | |
error: function (xhr, textstate) { | |
var wrap = $("#main_wrapper"); | |
if (textstate === "timeout") { | |
wrap.html("Время ожидания ответа от сервера истекло!<br/>Повторите повторите попытку позже."); | |
} else { |
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
/** | |
* Пространство имен клиентской части терминала платежной системы "Кассервис" | |
*/ | |
var KASSERVISTERM = KASSERVISTERM || {}; | |
KASSERVISTERM.namespace = function (ns_string) {"use strict"; | |
var parts = ns_string.split('.'), | |
parent = KASSERVISTERM, | |
i; |
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
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, 'http'); | |
// curl_setopt($ch, CURLOPT_FAILONERROR, 1); | |
// curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); | |
// curl_setopt($ch, CURLOPT_POST, 1); | |
// curl_setopt($ch, CURLOPT_POSTFIELDS, $post); | |
$result = curl_exec($ch); | |
curl_close($ch); | |
$num = json_decode($result); |
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
attrib -S -H d:\TEST\desktop.ini /S /D |
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
div.newsText#news007>(h3.center+p+div.hide[style="display: none;"]+a.newsBtn{Читать далее >>}) |
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
header("Cache-Control: no-store, no-cache, max-age=0"); |
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
var add = function (a, b) { | |
return a + b; | |
}; | |
var myObj = {value: 0, | |
increment: function (inc) { | |
this.value += typeof inc === 'number' ? inc : 1; | |
} | |
}; | |
myObj.double = function () { | |
var that = this; |
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
var sessionStorage; | |
$(function () {"use strict"; | |
if (typeof sessionStorage === 'undefined') { | |
sessionStorage = (function () { | |
var data = window.top.name ? JSON.parse(window.top.name) : {}; | |
return { | |
clear: function () { | |
data = {}; | |
window.top.name = ''; | |
}, |
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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> |
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
Только что разбирался с такой же проблемой на ноуте HP Pavilion. Батарея новая (пару месяцев), на днях перестала заряжаться, показывает "Подключена, не заряжается". Стал гуглить, оказалось, что проблема не только у меня, но нормального решения ни у кого нету. То биос прошивать, то в сервис нести. Стал гуглить глубже, и таки нашел решение на англоязычных форумах TechNet. Вот чего советуют: | |
1) Отключить БП | |
2) Выключить ноут | |
3) Вытащить батарею | |
4) Подключить БП | |
5) Включить ноут | |
6) Зайти в Диспетчер устройств, раздел Батареи и удалить оттуда "Батарея с ACPI-совместимым управлением (Microsoft)". Если там несколько таких (хотя обычно одна), то удалить все. | |
7) Выключить ноут | |
8) Отключить БП |
OlderNewer