Colors of social brands is [here][2]
Facebook Share
http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwebsite.com&t=url%20encoded%20text
Facebook Like Button
http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwebsite.com
| <html> | |
| <head> | |
| <style> | |
| span.cursor { | |
| -webkit-animation: blink 2s steps(1) infinite; | |
| -moz-animation: blink 2s steps(1) infinite; | |
| -ms-animation: blink 2s steps(1) infinite; | |
| -o-animation: blink 2s steps(1) infinite; | |
| animation: blink 2s steps(1) infinite; | |
| } |
Opera:
[Docs for > Opera 9.5 ][1]
doesnotexist:-o-prefocus, .example {
/*The following will apply rules to 'example' class in Opera only.*/
}
Firefox:
| server { | |
| listen 80; | |
| server_name domain.com; | |
| location / { | |
| proxy_pass http://mystream; | |
| proxy_set_header Host $http_host; | |
| } | |
| } |
| # ---------------------------------------------------------------------- | |
| # ROOT/ folder .htaccess | |
| # ---------------------------------------------------------------------- | |
| # Laravel Note: | |
| # Note: Laravel is designed to protect your application code, | |
| # and local storage by placing only files that are necessarily | |
| # public in the public folder. It is recommended that you either | |
| # set the public folder as your site's documentRoot (also known as a web root) | |
| # or to place the contents of public into your site's root directory | |
| # and place all of Laravel's other files outside the web root. |
| # ---------------------------------------------------------------------- | |
| # /PUBLIC folder .htaccess | |
| # ---------------------------------------------------------------------- | |
| # This .htaccess file is recommended | |
| # to be placed at root/public folder | |
| # of your Laravel powered application | |
| # ---------------------------------------------------------------------- | |
| # This file works with Laravel 3 and 4 | |
| # ---------------------------------------------------------------------- | |
| # Turning on the rewrite engine is necessary for the following rules and |
| #!/bin/sh | |
| diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nomount ram://8388608` |
| #start Apache | |
| sudo apachectl start | |
| #restart Apache | |
| sudo apachectl restart | |
| #stop Apache | |
| sudo apachectl stop |
| diskutil erasevolume HFS+ "diskname" `hdiutil attach -nomount ram://2048` | |
| #The line above mounts disk with name "diskname" and with size of 2048 blocks (~1 MB) | |
| #More info: http://osxdaily.com/2007/03/23/create-a-ram-disk-in-mac-os-x/ | |
| #Convert blocks to megabytes and vise versa - http://www.unitconversion.org/data-storage/blocks-to-megabytes-conversion.html | |
| #Note: Disk will be unmounted and all data will be lost on: empty battery, system reboot. | |
| #How to save data on RAM disk on reboot, sleep or empty battery: http://puregin.org/setting-up-a-persistent-ramdisk-on-MacOS |
| sudo purge |