Facebook
http://www.facebook.com/sharer/sharer.php?u={{URL}}
Twitter
https://twitter.com/share?text={{OPTIONAL_TEXT}}&url={{URL}}
XING
https://www.xing.com/spi/shares/new?url={{URL}}
# weiterleitung zu ssl | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name subdomain.domain.de; | |
return 301 https://$server_name$request_uri; | |
} | |
# eigentliche port weiterleitung | |
server { |
email.replace(/[a-z]{4}/g,'****')} |
Verwende Bilder mit mindestens 1200 x 630 Pixel für die beste Anzeige auf hochauflösenden Geräten. Du solltest zumindest Bilder mit 600 x 315 Pixel verwenden, um Linkseitenbeiträge mit größeren Bildern anzuzeigen. Bilder können bis zu 8 MB groß sein. Quelle: https://developers.facebook.com/docs/sharing/best-practices/
<link rel="publisher" href="{{URL ZUR GOOGLE + SEITE}}"/>
I hereby claim:
To claim this, I am signing this object:
function getMouseTouchPointPosition( e ) { | |
var result = { | |
x : 0, | |
y : 0 | |
}; | |
if (e.originalEvent.touches) { | |
var touches = e.originalEvent.touches; | |
if (touches.length > 0) { | |
result.x = touches[0].pageX; |
alias isim='open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app' |
Please replace the paths with your choses.
Then place the file in /usr/local/bin
You can rename it to start-mongo
(without extension .sh) to use it only like this:
$ start-mongo
import fetch from 'node-fetch'; | |
// for use in browser you need to import fetch from fetch-polyfill | |
import co from 'co'; | |
co(function *() { | |
const url = 'http://jsonplaceholder.typicode.com/posts/i'; | |
const response = yield fetch(url); | |
const post = yield response.json(); | |
const { title } = post; | |
// export constant | |
export const $V$ = '$V$'; |