This file contains 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
#res h3 { | |
font-size: 16px !important; | |
} | |
#tads a, #tadsb a, #res a, #rhs a, #taw a { | |
text-decoration: underline; | |
} |
This file contains 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
JavaScript Basics: | |
1. Напишите функцию, рассчитывающую размер ипотечного аннуитетного платежа. Функция должна принимать размер кредита в долларах, процентную ставку за период и количество периодов. Для расчета платежа воспользуйтесь формулой на странице http://ru.wikipedia.org/wiki/%D0%98%D0%BF%D0%BE%D1%82%D0%B5%D0%BA%D0%B0. | |
2. Создайте метод у всех числовых объектов, который бы выводил значение числа от 0 до 99 в виде слов. Например, число 45 должно выводиться как "сорок пять" (англ. "forty-five"). Для выполнения задания используйте свойство prototype. | |
3. Напишите функцию для создания такой таблицы размером NхM, чтобы каждая ячейка заполнялась случайной буквой английского алфавита и случайным цветом фона (для выполнения задания воспользуйтесь методом random() объекта Math, кроме того, создайте массив в элементами – буквами алфавита). |
This file contains 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
JavaScript DOM: | |
Напишите функцию createDiagram, которая динамически добавит диаграмму величины продаж: | |
https://drive.google.com/file/d/0B-P2lKnSdvr4bElzRzVjajNRM28/edit?usp=sharing. | |
Можно использовать свойства width и background-color элемента span. | |
Размер горизонтальных полос вычисляется пропорционально. | |
Исходные данные: | |
June July August |
This file contains 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
jQuery: | |
Создайте приложение "To-Do список" (добавление, удаление задач), используя jQuery и HTML5 Local Storage. |
This file contains 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
/** | |
* Created by Programulya on 9/4/2014. | |
*/ | |
function sendEmails() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var startRow = 25; // First row of data to process | |
var numRows = 35; // Number of rows to process | |
var dataRange = sheet.getRange(startRow, 1, numRows); | |
// Fetch values for each row in the Range. |
This file contains 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
http://jsbin.com/babaye/1/edit?html,js,output |
This file contains 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
Install: | |
- node.js | |
- npm | |
- some editor (Sublime, WebStorm, Visual Studio etc.) | |
How to install: | |
- https://nodejs.org/download/ | |
- http://blog.teamtreehouse.com/install-node-js-npm-windows | |
- https://code.visualstudio.com/Docs/nodejs | |
- http://www.hanselman.com/blog/IntroducingNodejsToolsForVisualStudio.aspx |
This file contains 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
ENG | |
Solve the system of linear equations using Gaussian elimination (also known as row reduction) with the general element in rows. | |
Calculate the X vector and vector of errors (E = B-A*X): | |
-3*x1 + 4*x2 + x3 + 4*x4 = -1; | |
1*x2 + 3*x3 + 2*x4 = -1; | |
4*x1 - 2*x3 - 3*x4 = 4; | |
1000*x1 + 3*x2 + x3 - 5*x4 = -2. | |
The program should contain: |