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
function Escape-JSONString($str){ | |
if ($str -eq $null) {return ""} | |
$str = $str.ToString().Replace('"','\"').Replace('\','\\').Replace("`n",'\n').Replace("`r",'\r').Replace("`t",'\t') | |
return $str; | |
} | |
function ConvertTo-JSON($maxDepth = 4,$forceArray = $false) { | |
begin { | |
$data = @() | |
} |
/** | |
* Module dependencies. | |
*/ | |
var inflect = require('i')(); | |
var flv = require('flv'); | |
var http = require('http'); | |
var icecast = require('icecast'); | |
var url = process.argv[2] || 'http://7269.live.streamtheworld.com/KSANFMAAC'; |
#!/usr/bin/env sh | |
export AR=arm-unknown-linux-gnueabi-ar | |
export CC=arm-unknown-linux-gnueabi-gcc | |
export CXX=arm-unknown-linux-gnueabi-g++ | |
export LINK="$CXX" | |
export CFLAGS="-march=armv6j -mfpu=vfp -mfloat-abi=hard" | |
export CXXFLAGS="$CFLAGS" | |
make binary BINARYNAME=node-v`python tools/getnodeversion.py`-linux-arm-pi DESTCPU=arm CONFIG_FLAGS="--without-dtrace --dest-os=linux" |
/** | |
* Module dependencies. | |
*/ | |
var lame = require('lame'); | |
var icecast = require('icecast'); | |
var Speaker = require('speaker'); | |
/** |
When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.
Raw Attribute Strings
<div my-directive="some string" another-param="another string"></div>
1033edge.com | |
11mail.com | |
123.com | |
123box.net | |
123india.com | |
123mail.cl | |
123qwe.co.uk | |
126.com | |
150ml.com | |
15meg4free.com |
Install python-all-dev | |
emscripten/system/include/net/netinet/in.h | |
Add the following lines (see http://pubs.opengroup.org/onlinepubs/009695399/basedefs/arpa/inet.h.html) | |
#define INET_ADDRSTRLEN (16) | |
#define INET6_ADDRSTRLEN (48) | |
nanohttp.c |
using System; | |
using System.Linq; | |
using System.Net.Http.Formatting; | |
using System.Web.Http.Controllers; | |
using Newtonsoft.Json.Serialization; | |
namespace DemoApplication.Extensions.WebApi | |
{ | |
public class CamelCaseJsonAttribute : Attribute, IControllerConfiguration | |
{ |
# Generate Private Key | |
$ openssl genrsa -out server.key 2048 | |
# Generate CSR | |
$ openssl req -new -out server.csr -key server.key -config openssl.cnf | |
# => Fill in info | |
# Check CSR | |
$ openssl req -text -noout -in server.csr | |
# Sign Cert | |
$ openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt -extensions v3_req -extfile openssl.cnf |