monsur.hossa.in monsur.hossa.in

monsur.hossa.in

Monsur Hossain

Staff Software Engineer @ Google.

http://monsur.hossa.in/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR MONSUR.HOSSA.IN

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.5 out of 5 with 10 reviews
5 star
4
4 star
1
3 star
3
2 star
0
1 star
2

Hey there! Start your review of monsur.hossa.in

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.2 seconds

FAVICON PREVIEW

  • monsur.hossa.in

    16x16

  • monsur.hossa.in

    32x32

  • monsur.hossa.in

    64x64

  • monsur.hossa.in

    128x128

  • monsur.hossa.in

    160x160

  • monsur.hossa.in

    192x192

CONTACTS AT MONSUR.HOSSA.IN

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Monsur Hossain | monsur.hossa.in Reviews
<META>
DESCRIPTION
Staff Software Engineer @ Google.
<META>
KEYWORDS
1 monsur hossain
2 current
3 previous
4 xanga / amazon
5 publications
6 cors in action
7 projects
8 enable cors org
9 sonos frame
10 blog
CONTENT
Page content here
KEYWORDS ON
PAGE
monsur hossain,current,previous,xanga / amazon,publications,cors in action,projects,enable cors org,sonos frame,blog
SERVER
AmazonS3
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Monsur Hossain | monsur.hossa.in Reviews

https://monsur.hossa.in

Staff Software Engineer @ Google.

INTERNAL PAGES

monsur.hossa.in monsur.hossa.in
1

benchmark.js: how it works - monsur.hossa.in

http://monsur.hossa.in/2012/12/11/benchmarkjs.html

Benchmark.js: how it works. I've been playing around with benchmark.js. To do some performance testing in JavaScript. Its an easy-to-use library, but because its so easy, it hides a lot of its details behind the scenes. Mathias Bynens. The authors of benchmark.js, wrote a great overview of how benchmark.js works. But I wanted a better understanding of what's going on, so I took a deeper look at the code. The code above represents a single benchmark. Check out the weird scoping in this particular test:.

2

About - monsur.hossa.in

http://monsur.hossa.in/about.html

This is the weblog of Monsur Hossain. I'm a software engineer with Google. Where I work on Search infrastructure. My previous projects include the Google APIs Discovery Service. And the Google APIs JavaScript client. Before that I worked at Xanga. I live in Chicago. I also wrote the book CORS in Action. And maintain the site enable-cors.org. This site is built using Jekyll. And is hosted at WebFaction. The header icons are courtesy of Komodo Media.

3

Projects - monsur.hossa.in

http://monsur.hossa.in/projects.html

Here are some of the personal projects I've hacked on over the years. Any new projects are usually hosted on GitHub. A book I wrote about Cross-Origin Resource Sharing. Available Oct 2014 from Manning. A CORS advocacy site, documenting various ways to enable CORS on your server. My own personal "read-later" application (similar to Instapaper). A Python utility to compare JSON objects or files. A helper server for testing HTTP requests. Written in Node.js. A simple LRU cache for JavaScript.

4

Why I Vote - monsur.hossa.in

http://monsur.hossa.in/2012/11/04/why-i-vote.html

Its around this time of the election year (and over and over throughout the years) that I hear the common refrain of your vote doesn’t matter (especially in a decidedly blue state like Illinois). Yes, I understand the mathematics of how one vote out of 100 million will not make a dent in the outcome. But I don’t believe that means you shouldn’t vote. Consider the Jim Crow laws. Voter turnout dropped drastically through the South as a result of such measures. Posted on 04 Nov 2012.

5

enable-cors.org - monsur.hossa.in

http://monsur.hossa.in/2012/12/10/enable-cors-org.html

And I have just released a revamped version of the enable-cors.org. Site The site includes resources on using CORS, including details on how to configure CORS for various servers. It also has test-cors.org. Which helps test CORS support on various servers. The site's source code is hosted on GitHub. So feel free to contribute! Posted on 10 Dec 2012.

UPGRADE TO PREMIUM TO VIEW 3 MORE

TOTAL PAGES IN THIS WEBSITE

8

LINKS TO THIS WEBSITE

sreenath.net sreenath.net

Sreenath H B

http://sreenath.net/blog

Another IT Guy and a space for his thoughts. Accessing the device camera using HTML5 GetUserMedia. Enabling Cross Domain Ajax Requests using CORS. Use a Server Side Proxy. Use JSONP (if the remote API supports it). I will leave the JSONP technique for another day and get to my subject now. The W3C made CORS (Cross Origin Resource Sharing) a Recommendation in January 2014, a document that was in the works for some time now. I will jump to my demo now. http:/ sreenath.net/demos/CORSDemo.htm. Http:/ api&#46...

enable-cors.org enable-cors.org

enable cross-origin resource sharing

http://enable-cors.org/server_nginx.html

The following Nginx configuration enables CORS, with support for preflight requests. Source: Michiel Kalkman, https:/ michielkalkman.com/snippets/nginx-cors-open-configuration.html. The content on this site stays fresh thanks to help from users like you! If you have suggestions or would like to contribute, fork us on GitHub. Save 39% on CORS in Action with promotional code hossainco. Last update on 26 Jun 2016. Layout thanks to Bootstrap. Icons thanks to Batch.

enable-cors.org enable-cors.org

enable cross-origin resource sharing

http://enable-cors.org/server_apache.html

To add the CORS authorization to the header using Apache, simply add the following line inside either the. Sections of your server config (usually located in a *.conf file, such as httpd.conf or apache.conf), or within a. Header set Access-Control-Allow-Origin "*". To ensure that your changes are correct, it is strongly reccomended that you use. To check your configuration changes for errors. After this passes, you may need to reload Apache to make sure your changes are applied by running the command.

enable-cors.org enable-cors.org

enable cross-origin resource sharing

http://enable-cors.org/server.html

I want to add CORS support to my server. For simple CORS requests, the server only needs to add the following header to its response:. There are some more headers and settings involved if you want to support verbs other than GET/POST, custom headers, or authentication. You can learn more about these options in the Using CORS. Tutorial on HTML5 Rocks. If you want the TL;DR version, take a look at the flowchart for implementing CORS support. Save 39% on CORS in Action with promotional code hossainco.

enable-cors.org enable-cors.org

enable cross-origin resource sharing

http://enable-cors.org/index.html

Cross-Origin Resource Sharing (CORS) is a specification. That enables truly open access across domain-boundaries. If you serve public content, please consider using CORS to open it up for universal JavaScript/browser access. Why is CORS important? JavaScript and the web programming has grown by leaps and bounds over the years, but the same-origin policy. Still remains. This prevents JavaScript from making requests across domain boundaries, and has spawned various hacks for making cross-domain requests.

enable-cors.org enable-cors.org

enable cross-origin resource sharing

http://enable-cors.org/client.html

I want to use CORS from JavaScript. More details coming soon. For now you can following the Using CORS. Tutorial at HTML5 Rocks. The content on this site stays fresh thanks to help from users like you! If you have suggestions or would like to contribute, fork us on GitHub. Save 39% on CORS in Action with promotional code hossainco. Last update on 26 Jun 2016. Layout thanks to Bootstrap. Icons thanks to Batch.

UPGRADE TO PREMIUM TO VIEW 8 MORE

TOTAL LINKS TO THIS WEBSITE

14

OTHER SITES

monsuphilly.com monsuphilly.com

Monsu - Home

Experience delicious Sicilian cuisine on the edge of Philadelphia's Italian Market. Monsu delivers bold flavors drawing inspiration from Sicily and classic theory combined with Chef McAndrews’ personal finesse. We welcome you and your friends to enjoy an authentic Italian experience. Saturday and Sunday 11:00am- 3:00pm. 8203; Closed on Monday and Tuesday. 8203;Cash Only, BYOB. 901 Christian St. Philadelphia, PA 19147. Proudly powered by Weebly.

monsupport.info monsupport.info

Découvrez MonSupport.info - MonSupport.info

Est-ce que votre entreprise est bien protégée? Découvrez le en procédant à une analyse de vulnérabilité réalisée par nos ressources certifiées. Avez-vous des problèmes informatiques à répétition? Est-ce que votre ressource en TI est disponible en tout temps? Découvrez comment MonSupport.info peut optimiser l’informatique de votre entreprise en nous confiant la gestion quotidienne de vos opérations. Gestion de projets et consultation. Contacter notre équipe pour un audit de votre infrastructure.

monsur-ahmed-choudhury.blogspot.com monsur-ahmed-choudhury.blogspot.com

Words and stuff

Wednesday, 18 July 2012. We do We have to Pay to Live in a World We were Born Into? This is such a simple question, yet it keeps haunting me. In order for a human being to survive, he/she must be able to eat food, drink water, wear clothes and have a roof over his/her head every single day. We have enough wealth and resources to ensure that not a single person out of 7 billion succumbs to starvation, dehydrates from thirst, goes without clothing and lives under the open sky. Thursday, 8 March 2012.

monsur.8m.com monsur.8m.com

《7258.com域名网》主要为客户提供域名购买,域名中介担保等服务。

极品数字域名请进 www.7258.com. 500元专场域名请进 www.72588.com.

monsur.es monsur.es

MON SUR

monsur.hossa.in monsur.hossa.in

Monsur Hossain

Staff Software Engineer @ Google.

monsur.net monsur.net

Monsur.net

monsur.org monsur.org

Monsur.org

monsura.blogspot.com monsura.blogspot.com

WELCOME TO HELL ~ by Glenn Walker

WELCOME TO HELL by Glenn Walker. Glenn Walker is a writer who knows pop culture. He loves, hates, and lives pop culture. He knows too freaking much about pop culture, and here's where he talks about it all: movies, music, comics, television, and the rest. Welcome to Hell. Lost Hits of the New Wave. The All Things Fun! Agents of S.H.I.E.L.D. Guardians of the Galaxy. Thursday, November 30, 2017. Actor and singer Jim Nabors passed away, he was 87. I have later memories of Jim Nabors, like his slapstick robo...

monsura.tumblr.com monsura.tumblr.com

Glenn Walker Tumbles

173: Bobby the Brain and the Avengers Go to Twin Peaks ». Posted 6 months ago. The Make Mine Magic Podcast 107: Don’t Stop the Omni-Mover! Posted 10 months ago. The Make Mine Magic Podcast 106: Fireworks Dessert Party ». Posted 10 months ago. Podcast 135: The 2016 Camden Comic Con Five Star Spectacular ». Posted 1 year ago. Sticky Wicket Series Now Available ». Posted 1 year ago. Podcast Episode 114: Finally, Fantastic Four! Posted 2 years ago. Podcast Episode107: Weird Worlds ». Posted 2 years ago.

monsuraiswaiting.com monsuraiswaiting.com

Home | Monsura is Waiting

A Kevin Newbury Film. Designed by Hajir Sailors.