Skip to content

Instantly share code, notes, and snippets.

View jelnur's full-sized avatar
🎯
Focusing

Elnur Jabarov jelnur

🎯
Focusing
View GitHub Profile
Relay Apollo
Built by Facebook (Check out the project on GitHub) Meteor (Check out the project on GitHub)
Frontend Technologies Requires React / React Native and configuration of Babel plugin Framework and platform agnostic (works with any JS framework such as React, Angular or Vue as well as on the native mobile platforms)
GraphQL API Requires a certain structure in the GraphQL schema Works with any GraphQL schema
Complexity Slow learning curve: Lots of powerful magic happening behind the scenes Low entrance barrier: Let's you get started quickly and involves more manual work for certain features
Flexibility Almost no flexibility, strict rules how to
@mdnmdn
mdnmdn / gist:2819763
Created May 28, 2012 15:33
SQL Server http get function
sp_configure 'Ole Automation Procedures', 1;
GO
RECONFIGURE;
GO
CREATE function fn_get_http
(
@url varchar(8000)
)
returns varchar(8000)