- http://snazzymaps.com/ - site with colored maps
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
$data = file_get_contents(“http://myurls.com/feed.xml”); | |
$data = str_replace("content:encoded>","content>",$data); | |
$xml = simplexml_load_string($data); | |
$item = $xml->channel; | |
foreach($item->item AS $art){ | |
$content = $art->content; | |
echo $content; | |
} |
- https://github.com/carrot/share-button - share buttons
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
public function lowThatWord( $word ) | |
{ | |
return mb_strtoupper( mb_substr( $word, 0, 1, 'UTF-8' ), 'UTF-8' ).mb_strtolower( mb_substr( $word, 1, mb_strlen( $word, 'UTF-8' ), 'UTF-8' ), 'UTF-8' ); | |
} |
- Double 1
- String 2
- Object 3
- Array 4
- Binary data 5
- Undefined (deprecated) 6
- Object id 7
- Boolean 8
- Date 9
- Null 10
- https://github.com/miketucker/svg-verlet.js - Plugin for SVG animation
- http://www.greensock.com/gsap-js/ - Professonal Animation (Hobbit demo)
- http://www.remvst.com/article-30-canvas-electricity-effect.html - electricity effect
- http://codepen.io/kennethcachia/pen/Fhvie - experiment with nice transform text in the bubbles
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://habrahabr.ru/post/199500/ | |
http://habrahabr.ru/post/199472/ |
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
.spin{ | |
-webkit-animation: spin 1s infinite linear; | |
-moz-animation: spin 1s infinite linear; | |
-o-animation: spin 1s infinite linear; | |
animation: spin 1s infinite linear; | |
} | |
@-moz-keyframes spin { | |
0% { | |
-moz-transform: rotate(0deg); |
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
-webkit-transition: all 100ms; | |
-moz-transition: all 100ms; | |
-ms-transition: all 100ms; | |
-o-transition: all 100ms; |