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
| /* CSS2 */ | |
| /* CSS2 attribute selectors */ | |
| a[rel] { color: yellow; } /* simple attribute selector */ | |
| a[rel='nofollow'] { color: yellow; } /* exact attribute value selector */ | |
| a[rel~='nofollow'] { color: yellow; } /* partial attribute value selector */ | |
| a[lang|='ru'] { color: red; } /* Language Attribute Selector */ | |
| /* CSS3 */ |
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
| General | |
| ======= | |
| xtype Class | |
| ------------- ------------------ | |
| box Ext.BoxComponent | |
| button Ext.Button | |
| colorpalette Ext.ColorPalette | |
| component Ext.Component | |
| container Ext.Container |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
| <xs:element name="response"> | |
| <xs:complexType> | |
| <xs:sequence> | |
| <xs:element name="merchant"> | |
| <xs:complexType> | |
| <xs:sequence> |
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> | |
| <head> | |
| <title>Autocomplete</title> | |
| <style> | |
| </style> | |
| <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script> | |
| <script type="text/javascript"> |
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
| Комманды Linux | |
| -------------- | |
| dmesg | more - для того что-бы посмотреть все сообщения выводимые при загрузке. | |
| fsck - аналог Scandisk в Windows. | |
| getty - программа которая контролирует разные опции защиты и терминала. | |
| printenv - выводит на экран все переменные окружения. | |
| clear - команда для очистки эарана. |
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
| Commands | |
| -------- | |
| show dbs - show all the databases | |
| use admin - select database (example: 'admin' database) | |
| Start of work | |
| ------------- | |
| mongod - starts the MongoDB server |
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
| Built-in variables | |
| ------------------ | |
| __dirname - variable containing the path where the code is running; | |
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
| Compatibility | |
| ============= | |
| scrollWidth and scrollHeight | |
| ---------------------------- | |
| Not proper in IE 5.5, 6, 7 (http://www.quirksmode.org/dom/w3c_cssom.html), use something like this: | |
| if (navigator.appName == 'Microsoft Internet Explorer' && (document.compatMode == undefined || document.compatMode != 'CSS1Compat')) | |
| { |
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
| <!--Radio buttons alignment (vertical) starts here--> | |
| <style> | |
| div.RadioCont {overflow: auto;} | |
| div.RadioCont input {display: block; clear: both; float: left; height: 15px;} | |
| div.RadioCont div {float: left; margin: 1px 0 0 2px;} | |
| </style> |
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
| http://www.sencha.com/products/io/ - cloud platform for building mobile web apps; | |
| https://addons.mozilla.org/en-US/firefox/addon/yslow/ - YSlow analyzes web pages and why they're slow based on Yahoo!'s rules for high performance web sites. | |
| http://www.blaze.io/mobile/ - mobile web performance tester; | |
| http://httparchive.org/ - about HAR files; | |
| http://www.smushit.com - site that deletes unnecessary bytes from the image; |
OlderNewer