Test
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
Yandex 52.0.2743.2765 (64-bit version) | |
Revision ac660e94e25fbeaea6d16541969c3c83a641fd5d | |
OS Mac OS X | |
Blink 537.36 (@db2a30b1236da2645d15fc4ae4f0ff27082837e9) | |
JavaScript V8 5.2.361.49 | |
Flash 23.0.0.162 | |
User Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 YaBrowser/16.9.0.2765 Safari/537.36 | |
Command Line /Applications/Yandex.app/Contents/MacOS/Yandex --flag-switches-begin --flag-switches-end --disable-client-side-phishing-detection --profile-info --disable-field-trial-config --enable-mse-h264-support | |
Executable Path /Applications/Yandex.app/Contents/MacOS/Yandex | |
Profile Path /Users/stansidel/Library/Application Support/Yandex/YandexBrowser/Default |
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> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>The HTML5 Herald</title> | |
<meta name="description" content="The HTML5 Herald"> | |
<meta name="author" content="SitePoint"> |
I hereby claim:
- I am stansidel on github.
- I am stansidel (https://keybase.io/stansidel) on keybase.
- I have a public key ASA3-6gQD-i4Zgdhod4QajW-7MW9ljmEU1C72HNlUrab6go
To claim this, I am signing this object:
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
<style> | |
#paint-me { | |
font-color: red; | |
} | |
</sенду> |
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
<script> | |
$('#fill-me').text('пример текста'); | |
</script> |
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
Module::IncludeModule('iblock'); | |
$Res = CIBlockElement::GetList(array(), array("IBLOCK_ID" => 1, "ACTIVE" => 'Y'), false, false, array()); | |
while ($arItem = $res->GetNext()) { | |
echo $arItem["NAME"]."\n"; | |
} |
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
<script> | |
$(document).on('click', '#make_header_red', function() { | |
$('#header').css('font-color', 'red'); | |
}); | |
</script> |
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
class MyClass { | |
var name: String | |
init(name: String) { | |
self.name = name | |
} | |
} | |
var mc1 = MyClass(name: "Name 1") |
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
import Foundation | |
class MyClass { | |
private let name: String | |
init(name: String) { | |
self.name = name | |
} | |
// Pure computed property, cannot be set. Behaves like a constant field for the user of the class | |
var computed: String { |