motyar.github.io motyar.github.io

motyar.github.io

Motyar • API developer.

I'm Motyar, an entrepreneur and API developer from India. Creating value through Programming. Motyar Creating value through Programming. An application programming interface (API) provides access to the data and services a company is providing in "raw form" (JSON, XML etc) and allows to use that data in diverse ways to get and give value. APIs are the best way to get your services out there and used. Check what you are misssing. Third party API integration in your website or app. From start to finish, Mo...

http://motyar.github.io/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR MOTYAR.GITHUB.IO

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

October

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.2 out of 5 with 13 reviews
5 star
5
4 star
6
3 star
2
2 star
0
1 star
0

Hey there! Start your review of motyar.github.io

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.2 seconds

CONTACTS AT MOTYAR.GITHUB.IO

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Motyar • API developer. | motyar.github.io Reviews
<META>
DESCRIPTION
I'm Motyar, an entrepreneur and API developer from India. Creating value through Programming. Motyar Creating value through Programming. An application programming interface (API) provides access to the data and services a company is providing in raw form (JSON, XML etc) and allows to use that data in diverse ways to get and give value. APIs are the best way to get your services out there and used. Check what you are misssing. Third party API integration in your website or app. From start to finish, Mo...
<META>
KEYWORDS
1 motyar
2 blog
3 hire me
4 services
5 rest api development
6 api integration
7 oauth integration
8 consulting
9 muaz
10 eric
CONTENT
Page content here
KEYWORDS ON
PAGE
motyar,blog,hire me,services,rest api development,api integration,oauth integration,consulting,muaz,eric,indy,ershun,check my blog,twitter,and facebook,geodata,web scrape master,webscrapemaster
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Motyar • API developer. | motyar.github.io Reviews

https://motyar.github.io

I'm Motyar, an entrepreneur and API developer from India. Creating value through Programming. Motyar Creating value through Programming. An application programming interface (API) provides access to the data and services a company is providing in "raw form" (JSON, XML etc) and allows to use that data in diverse ways to get and give value. APIs are the best way to get your services out there and used. Check what you are misssing. Third party API integration in your website or app. From start to finish, Mo...

INTERNAL PAGES

motyar.github.io motyar.github.io
1

Motyar- Web Services and API developer (CV)

http://motyar.github.io/cv

Creating value through Programming. Web Developer with extensive knowledge of web services and web APIs. API building on Backend (Using PHP, Golang) and front-end(using jQuery). Currently specialising in writing high-speeed, robust code for projects for some of World's biggest web agencies and online organisations. I've worked on projects for C2MI,. Amazon,eBay and other shoping APIs. FaceBook,Tumbler, LinkedIn and other social API integration. OAuth 2.0 authorization protocol. I can help you to build.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

1

LINKS TO THIS WEBSITE

motyar.blogspot.com motyar.blogspot.com

Why & When to use NodeJS?

http://motyar.blogspot.com/2013/12/why-when-to-use-nodejs.html

Dec 5, 2013. Why and When to use NodeJS? Ever wonder how to decide when to use NodeJS? And why to use NodeJS? Here is a list :-. 1 NodeJS is Super-fast (and Super cool too). 2 It is very lightweight. 3 Easy to configure. 4 Lots of modules available for free. 5 Using NodeJs you can create a server with few lines of code. 6 It is 90% faster than PHP Its event based single threaded non-blocking i/o model scales very well. 8 Is event-based so all the wonderful Ajax like stuff. Can be done on the server side.

motyar.blogspot.com motyar.blogspot.com

Single Page Web Application using Golang and AngularJS

http://motyar.blogspot.com/2014/12/single-page-web-application-using.html

Dec 16, 2014. Single Page Web Application using Golang and AngularJS. A single page application (SPA) is an application that intracts with server via RESTfull API using JavaScript code on Client side. RESTfull API on Backend. This part is created using Golang on server, we are using MySql as database. Here is blog post about it REST API in Golang. And code is hosted on Github here Github / motyar / restgomysql.

motyar.blogspot.com motyar.blogspot.com

How to parse XML in Angular JS

http://motyar.blogspot.com/2014/08/how-to-parse-xml-in-angular-js.html

Aug 4, 2014. How to parse XML in Angular JS. Still many webServices and REST APIs provide output in XML, AngularJS doent work with XML data. We are going to use x2js. To convert XML data to JSON object. All other code will not be effected any way. We are going to parse this XML sample file. Here is very basic example code. You can check working DEMO here.

motyar.blogspot.com motyar.blogspot.com

Installing and running MondoDB on Ubuntu / Linux

http://motyar.blogspot.com/2014/07/installing-and-running-mondodb-on.html

Jul 10, 2014. Installing and running MondoDB on Ubuntu / Linux. Sudo apt-key adv - keyserver hkp:/ keyserver.ubuntu.com:80 - recv 7F0CEB10 echo 'deb http:/ downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' sudo tee /etc/apt/sources.list.d/10gen.list sudo apt-get update & sudo apt-get install mongodb-10gen. Tail -f /var/log/mongodb/mongodb.log. Dir if not exists, and give permissions:-. Sudo chown -R mongodb:mongodb /root/data/db. Start mongod as a Daemon:-.

motyar.blogspot.com motyar.blogspot.com

Writing files in NodeJS

http://motyar.blogspot.com/2014/01/writing-files-in-nodejs.html

Jan 2, 2014. Writing files in NodeJS. Want to process and create files in NodeJs? Is what you are looking for. To use this module use require('fs'). All the methods can be called asynchronous or synchronous forms. Here is a very basic example. Var fs = require('fs'); fs.writeFile("/tmp/test", "Hey there! Function(err) { if(err) { console.log(err); } else { console.log("The file was saved! More about it on this StackOverflow thread. Check full NodeJs course here. Learning NodeJs.

motyar.blogspot.com motyar.blogspot.com

WaterMark Image with Golang

http://motyar.blogspot.com/2014/09/watermark-image-with-golang.html

Sep 26, 2014. WaterMark Image with Golang. Go is powerful, Golang's package 'image' can be used to watermarning an image with another image. Here is the code, I found on StackOverFlow:.

motyar.blogspot.com motyar.blogspot.com

A basic HTTP server in NodeJs

http://motyar.blogspot.com/2013/11/a-basic-http-server-in-nodejs.html

Nov 4, 2013. A basic HTTP server in NodeJs. Nodejs has a built-in HTTP server library, making it possible to run a web server without the use of external software, such as Apache etc. It allow more control of how the web server works. So in nodeJs, You don’t have a server, you have to code web server along with your application code. This is an implementation of a "hello world" HTTP server in Node.js:. Put this code in web server.js, and run. Node web server.js.

motyar.blogspot.com motyar.blogspot.com

Forever Free Static Site using Github and Dropbox

http://motyar.blogspot.com/2014/06/forever-free-static-site-using-github.html

Jun 24, 2014. Forever Free Static Site using Github and Dropbox. Here are few related links from my other blog. Host your website on Github for FREE. How to Update Github hosted static website. Auto Publish To Github Pages From Dropbox.

motyar.blogspot.com motyar.blogspot.com

Installing NodeJs on Ubuntu

http://motyar.blogspot.com/2013/10/installing-nodejs-on-ubuntu.html

Oct 9, 2013. Installing NodeJs on Ubuntu. Its very simple open your terminal and type this command. Sudo apt-get install nodejs. Typical installation using ppa. Sudo apt-get update sudo apt-get install python-software-properties python g make sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs. You may need to install software-properties-common. Use this command:. Sudo apt-get install software-properties-common. Check if its installed. You may get this error.

motyar.blogspot.com motyar.blogspot.com

Creating Static WebServer in Go ( golang )

http://motyar.blogspot.com/2014/09/creating-static-webserver-in-go-golang.html

Sep 8, 2014. Creating Static WebServer in Go ( golang ). I am learning golang. I have go through the golang tour. I found it a very easy and fast language for web backend. In this post I want to share a very simple static file server we can create in few line of Go (golang). Here is the code you have to put in server.go ( or any name dot go). You can change the dot with any path or dir that you want to server on port 8080. Port can be anything too. Run this code like this. Go run server.go.

UPGRADE TO PREMIUM TO VIEW 11 MORE

TOTAL LINKS TO THIS WEBSITE

21

SOCIAL ENGAGEMENT



OTHER SITES

motyan.com motyan.com

消化器の病気大百科

1日7分 自宅で出来る視力回復方法 リカバリー アイ.

motyar.blogspot.com motyar.blogspot.com

Motyar - blog

Aug 3, 2017. Refresh element without page refresh. Jul 24, 2017. Auto versioning JavaScript and CSS files with PHP. Mar 30, 2017. Using TOR is easy. Feb 25, 2017. Long tail keyword generator. Feb 24, 2017. Golang Web Development with Examples. Jan 6, 2017. Quick quotes generation Tool. Aug 28, 2016. Mar 31, 2016. IFTTT Hack: Save Pinterest pin Image to Dropbox. Mar 10, 2016. Foreach in Golang ( golang foreach ). Mar 4, 2016. Upgrade MongoDB to Latest Version on Linux. Nov 17, 2015. Jul 3, 2015.

motyar.github.io motyar.github.io

Motyar • API developer.

I'm Motyar, an entrepreneur and API developer from India. Creating value through Programming. Motyar Creating value through Programming. An application programming interface (API) provides access to the data and services a company is providing in "raw form" (JSON, XML etc) and allows to use that data in diverse ways to get and give value. APIs are the best way to get your services out there and used. Check what you are misssing. Third party API integration in your website or app. From start to finish, Mo...

motyas.deviantart.com motyas.deviantart.com

Motyas - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 3 Years. This deviant's full pageview. Last Visit: 4 days ago. This is the place where you can personalize your profile! Shades of ...

motyasal.blogfa.com motyasal.blogfa.com

سي تا نما تا عشق

سي تا نما تا عشق. عشق وحشی ست، و آن لحظه که کسی تلاش در اهلی کردنش کند، نابود می شود. عشق گردبادی ست از آزادی، از بودن. از غم دوریت مردم. خنده رو از لب این دل ناشاد بگیر. یک کم عاشق شدن رو از دلم یاد بگیر. اگه حتی تو بخوای عهدمون شکسته شه. نمیذارم یه نفس دلم از تو خسته شه. دلم من از غم دوریت مرده. توخیال میکنی خوابش برده. یه دفعه از من بیچاره چرا. نمی پرسی زنده ام یا مرده. نمی پرسی و نمیدونی غمت. چه بلایی به سرم آورده. بذار عمرم به امیدت سر شه. تا یه ذره خستگیهام در شه. عطش خواستنتو ازم نگیر. واقعا واست ...

motyassaban.com motyassaban.com

Moty Assaban – Architecture and Design מוטי אסאבן Moty Assaban

motycafe.com motycafe.com

Motycafé | Artigiani del gusto

La Motycafé nasce con l'obiettivo di diffondere la cultura del caffè attraverso una qualità che appartiene solo ad un prodotto artigianale. Oggi vogliamo essere la valida alternativa, nella realtà del mondo del caffè. La meta di questo viaggio è solo una. la vostra tazzina con il vostro aroma preferito. 2017 • Politica sulla privacy. Realizzato da: Go Marketing and Comunicazione. Corso Umberto, 137.