Неужели все эти вебмастера умеют работать с серверами?
Или это что-то простое, вроде как поставить денвер на windows?
"scripts": {
"test": "./node_modules/.bin/jasmine-node spec"
}
<form>
<label for="mail">I would like you to provide me an e-mail</label>
<input type="email" id="mail" name="mail">
<button>Submit</button>
</form>
var email = document.getElementById("mail");
email.addEventListener("keyup", function (event) {
if (email.validity.typeMismatch) {
email.setCustomValidity("I expect an e-mail, darling!");
} else {
email.setCustomValidity("");
}
});
SIZES = ('1920x1080', '1600x1200', '1400x1050', '1280x1024', '1280x960', '1152x864', '1024x768',
'3840x2400', '3840x2160', '3840x1200', '2560x1600', '2560x1440', '2560x1080', '2560x1024',
'2048x1152', '1920x1200', '1680x1050', '1600x900', '1440x900', '1280x800', '1280x720', '2160x3840',
'1440x2560', '1366x768', '1080x1920', '1024x600', '960x544', '800x1280', '800x600', '720x1280',
'540x960', '480x854', '480x800', '400x480', '360x640', '320x480', '320x240', '240x400', '240x320',
'2732x2732', '2048x2048', '1024x1024', '750x1334', '640x1136', '640x960', '1280x900')
def str2tuple(arr):
return sorted([(int(item.split('x')[0]), int(item.split('x')[1])) for item in arr])
def tuple2str(arr):
return ["%dx%d" % (item[0], item[1]) for item in arr]
print tuple2str(str2tuple(SIZES))
['240x320', '240x400', '320x240', '320x480', '360x640', '400x480', '480x800', '480x854', '540x960', '640x960', '640x1136', '720x1280', '750x1334', '800x600', '800x1280', '960x544', '1024x600', '1024x768', '1024x1024', '1080x1920', '1152x864', '1280x720', '1280x800', '1280x900', '1280x960', '1280x1024', '1366x768', '1400x1050', '1440x900', '1440x2560', '1600x900', '1600x1200', '1680x1050', '1920x1080', '1920x1200', '2048x1152', '2048x2048', '2160x3840', '2560x1024', '2560x1080', '2560x1440', '2560x1600', '2732x2732', '3840x1200', '3840x2160', '3840x2400']
<?php
$file = '../fdf';
// Открываем файл для получения существующего содержимого
$current = file_get_contents($file);
// Добавляем нового человека в файл
$current .= '$kol = "for $kol string"'.PHP_EOL;
// Пишем содержимое обратно в файл
file_put_contents($file, $current);
?>
.block>img {
transition: all 1s;
max-width: 200px;
max-height: 200px
}
.block>img:hover {
transform: rotate(360deg);
border-radius: 50%
}
//Вставка кода в активную вкладку и последующая отправка на внедрённый скрипт значения
chrome.tabs.executeScript({code:" document.createElement('script');script.src = chrome.extension.getURL('lib/inject/script.js');document.head.appendChild(script); "});
"content_scripts": [{
"all_frames": false,
"matches": ["*://*/*"],
"js": ["lib/inject/script.js"],
"run_at": "document_end"
}],