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 Parent (name) { | |
this.name = name || 'Adam'; | |
this.things = ['apple']; | |
} | |
Parent.prototype.getThingsList = function() { | |
return this.things.join(', '); | |
}; | |
function Child() {} |
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 Parent(name) { | |
this.name = name || 'Adam'; | |
} | |
Parent.prototype.say = function() { | |
return this.name; | |
}; | |
function Child() {} |
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
chkdsk d: /r |
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
В свойстве первого списка AfterUpdate написать | |
Me.ПолеКодВрача.Requery |
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
html:5 |
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 asciiToStr(asciiStr) { | |
var | |
srcText = asciiStr, | |
arr = srcText.split(' '), | |
outText = "", | |
i,len; | |
for (var i = 0, len = arr.length; i < len; i +=1) { | |
outText += String.fromCharCode(arr[i]) + ' '; | |
} | |
return outText; |
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
To create a shortcut to open an FTP site in Windows Explorer | |
1. Open Computer by clicking the Start button , and then clicking Computer. | |
2. Right-click anywhere in the folder, and then click Add a Network Location. | |
3. This displays the Add Network Connection wizard. Click Next. | |
4. In the wizard, select Choose a custom network location, and then click Next. | |
5. Enter the name of the FTP site, with the full FTP:// in front of it, and then click Next. | |
6. To use a name and password, clear the Log on anonymously check box. Type a user name, and then click Next. | |
7. By default, the name of the shortcut is the same as the FTP address. If you want to give the shortcut a different name, type it in the Type a name for this network location box. Click Next. | |
8. If you do not want the FTP site to open after you're done setting up the shortcut, clear the Open this network location when I click Finish check box. Click Finish. A shortcut to the FTP site appears in the Computer folder. You can drag that shortcut to your deskt |
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
bcdedit | |
bcdedit /delete {id записи} |
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#accordion((h3{One!}+div{This is panel $})*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
Только что разбирался с такой же проблемой на ноуте HP Pavilion. Батарея новая (пару месяцев), на днях перестала заряжаться, показывает "Подключена, не заряжается". Стал гуглить, оказалось, что проблема не только у меня, но нормального решения ни у кого нету. То биос прошивать, то в сервис нести. Стал гуглить глубже, и таки нашел решение на англоязычных форумах TechNet. Вот чего советуют: | |
1) Отключить БП | |
2) Выключить ноут | |
3) Вытащить батарею | |
4) Подключить БП | |
5) Включить ноут | |
6) Зайти в Диспетчер устройств, раздел Батареи и удалить оттуда "Батарея с ACPI-совместимым управлением (Microsoft)". Если там несколько таких (хотя обычно одна), то удалить все. | |
7) Выключить ноут | |
8) Отключить БП |