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
| $re = '%# Collapse whitespace everywhere but in blacklisted elements. | |
| (?> # Match all whitespans other than single space. | |
| [^\S ]\s* # Either one [\t\r\n\f\v] and zero or more ws, | |
| | \s{2,} # or two or more consecutive-any-whitespace. | |
| ) # Note: The remaining regex consumes no text at all... | |
| (?= # Ensure we are not in a blacklist tag. | |
| [^<]*+ # Either zero or more non-"<" {normal*} | |
| (?: # Begin {(special normal*)*} construct | |
| < # or a < starting a non-blacklist tag. | |
| (?!/?(?:textarea|pre|script)\b) |
| # ---------------------------------------------------------------------- | |
| # /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` |
| // !!! THIS IS META CODE, NOT A REAL SUGGESTION TO A CODEBASE | |
| // JUST VERY SIMPLIFIED FORM OF PROPOSAL | |
| Meteor._user = new ReactiveVar(null); | |
| Meteor._userId = new ReactiveVar(null); | |
| Tracker.autorun(() => { | |
| Meteor._user.set(Meteor.user() || null); | |
| }); | |
| Tracker.autorun(() => { | |
| Meteor._userId.set(Meteor.userId() || null); |
| auto lo | |
| iface lo inet loopback | |
| # The primary network interface | |
| auto eth0 | |
| iface eth0 inet static | |
| address 10.0.1.2 | |
| netmask 255.255.255.0 | |
| gateway 10.0.1.1 |
| var getReadableFileSizeString = function(fileSizeInBytes) { | |
| var i = -1; | |
| var byteUnits = [' kB', ' MB', ' GB', ' TB', 'PB', 'EB', 'ZB', 'YB']; | |
| do { | |
| fileSizeInBytes = fileSizeInBytes / 1024; | |
| i++; | |
| } while (fileSizeInBytes > 1024); | |
| return Math.max(fileSizeInBytes, 0.1).toFixed(1) + byteUnits[i]; | |
| }; |
| storage: | |
| dbPath: /var/lib/mongodb | |
| journal: | |
| enabled: true | |
| engine: wiredTiger | |
| wiredTiger: | |
| engineConfig: | |
| cacheSizeGB: 0.3 | |
| systemLog: | |
| destination: file |
| # Our servers has 32GB of RAM | |
| storage: | |
| dbPath: /data/mongo | |
| journal: | |
| enabled: true | |
| engine: wiredTiger | |
| wiredTiger: | |
| engineConfig: | |
| cacheSizeGB: 8 |