sudo killall -HUP mDNSResponder
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
- How is speed browsing different than normal browsing?
- What is the format of web fonts do you support?
- Could you share, list of features you support for specific OS and browser versions?
- Any quick way to reach your technical team for help? UC web forum doesn't seems to be an easy way for technical help.
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
/** | |
* Attempt for Chrome-style progress-indicator with SVG and CSS animations | |
*/ | |
@keyframes spin { | |
to { | |
stroke-dashoffset: -264; | |
} | |
} |
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
/** | |
* Attempt for Chrome-style progress-indicator with SVG and CSS animations | |
*/ | |
@keyframes spin { | |
to { | |
stroke-dashoffset: -264; | |
} | |
} |
- HttpRewriteModule
- the name of a variable; false vales are: empty string("", or any string starting with "0");
- a comparison of a variable using the = and != operators;
- pattern matching with
regular expressions
:
~
performs a case-sensitive match
~*
performs a case-insensitive match i.efirefox
matchesFirefox
!~
and!~*
mean the opposite, doesn't match. - checking of existence of a file using the
-f
or!-f
operators;