agora.io doesn't show me function,action,usage for me - agora.io

in https://www.agora.io/ in project section the function and usage and action parts doesn't appear for me can someone please help me I've tried every thing but it seems the site won't show me fully (I've refreshed the site multiple times)

Related

Cached version by Google of my website shows the Google Custom Search window open (with No Results)

I am using Google Custom Search on my website for a quite a while. I have noticed that when I open the Google-cached version of my website, it shows the Custom Search result window open (saying No Results) for no reason.
You can see for yourself here:
https://webcache.googleusercontent.com/search?q=cache:z55mQx1mHn8J:https://www.fireplace.co.uk/+&cd=122&hl=en&ct=clnk&gl=uk
Here is a screenshot:
!http://i.imgur.com/kXQhV30.png
I havent been able to find ANYTHING about this issue on Google and I havent gotten a single reply on the Google Custom Search support forum for more than a week.
Does anyone please have any idea what could be causing this and how to resolve it? It is really annoying to see the cached version of my website covered by a modal window.
I came across this question while looking for something and, although it's been a while since it was asked, I noticed the problem is not solved so thought I'd try to help.
By looking at the cache URL you've provided, the reason you see the modal window seems to be the fact that the same URL variable (q=...) is being used by both, the webcache page AND by the Google custom search on your website.
So, when someone opens the cached page, the custom search engine is also being fired because of the presence of the q URL variable.
In the case of the cached page, the search term (value of q variable) is "cache:z55mQx1mHn8J:https://www.fireplace.co.uk/+&cd=122&hl=en&ct=clnk&gl=uk" and if you paste this value in the actual search on fireplace.co.uk you'll see that it returns an empty search results window.
The solution would probably be to update your custom search engine so that it uses a different variable than the default one (which is q). That can be done, just look in the custom search documentation.
Hope this helps.

Mechanical Turk - can't view HIT, appears blank

I m trying to setup a few image categorization tasks on Mechanical Turk sandbox developer version. When I try to view the HIT(the annotation image), it appears blank. I clicked on the 'Accept HIT' button but I still couldn't see anything.
In order to make sure that nothing was wrong with my project setup in particular, I signed in as a worker to accept HITS on other projects involving image categorization. I still continue to see a blank image in their categorization projects, where the image to be annotated is supposed to be displayed.
Can anyone help with this problem?Thanks.
Problem solved - it was a simple browser incompatibility problem.
I know you have already answered this for yourself, however for other requesters out there I think this may be useful.
I was developing HITs and I too was having issues view the HIT in Sandbox in Chrome and Firefox, I realized that it had something to do with the script being blocked by the browser and the way to fix this was to "unblock the content" - usually a shield icon in the URL bar.
When further developing my HIT I added information about how to see the HIT in the description box of the HIT so turkers could read the instructions and then work on the HIT - to be absolutely clear to the turkers, I added a "(READ DESCRIPTION)" in the title so turkers would know where to look.
Hope this helps!

Multiple UIWebView

Ok, so I am an extremely novice programmer. I know next to nothing (which is why I am asking you guys.) So, I built a tab bar application in xcode to run on my iPhone. (I used this turorial: http://fuelyourcoding.com/creating-a-tab-bar-application-using-storyboards-in-xcode-4-2/) Everything from that point of view works great, the tabs all go to the correct pages and I know how to add more pages if I want to. The problem that I am coming across is that I want a good amount of the tabs to be web views. The problem that I am facing is that I can get the first view controller to work (thanks to this tutorial: http://conecode.com/news/2011/05/ios-tutorial-creating-a-web-view-uiwebview/) but I have no idea how to get another one to do the same thing. I have googled and what I get is just a bunch of code that I have no idea where to put. Any help?

Show a single thumbnail when posting on facebook

A little background info is that my team and I developed a website for a Real Estate Agency and I've been assigned the task of setting the image of the currently selected property into facebook's sharing feature.
The webpage for the property is dynamic as there are several listings, so what I've done is select the first image that is loaded on the page and set it to the og:image meta tag.
Now let's say I copy the URL and post it on Facebook, it'll show the correct thumbnail, HOWEVER, it'll also show multiple thumbnails from other listings.
All images on the website are over 200 x 200px and are within an aspect ratio of 3:1.
My question is, how do I tell Facebook to only take my initial image and not grab others while it's as it.
Is there perhaps a SelectSingleImage property that I can apply?
I've already spent more time searching for the answer to this issue than I would have liked, so thanks for any help provided, it's much appreciated.
One method I use sometimes is to recognize Facebook's server and simply provide it with different data. This way you can actually only have one image on the page (as far as Facebook knows).
I don't know anything about vb.net, but here is a simple code sample in PHP. All it does is perform a regular expression on the user agent of the request to match it against the string "facebook".
$isFacebook = false;
if(preg_match("/facebook/",strtolower($_SERVER["HTTP_USER_AGENT"]))) {
$isFacebook = true;
}
Facebook may very well change their user agent signature one day, but for now, I'm pretty sure you'll be safe but keep synced with the Developers Blog and the Roadmap.
It seems that Facebook saved those images in cache for some bizarre reason, but to resolve this issue all I had to do was enter the URL into Facebook's Linter tool which in turn cleared the cache on their server.

Forced to switch from iframe to SDK for share buttons

I was using an iframe share button solution to be able to share products or posts on facebook. I used this systeme wich worked great on about 10 different websites but this week, they all ended up no working.
I read I should get an appId for each website and use Asynchroneous SDK, which I did, and followed steps to get it to work:
Load the SDK with appId authentification.
Load jQuery if needed (some buttons require it).
Add button code were desired.
I can see the SDK is loaded in <div id="fb-root"></div> but the share button never appears on the page and it is not a layout issue. I have tried several different buttons but they all seam to never make it to the user.
I read a lot of posts about the issue but each one was magically solved on Jully 22nd... not mine. I need help implementing this first button as I need to fix many websites afterwards. Thx!
When doing a fresh implementation of FB btns I ended up going here:
https://developers.facebook.com/tools/debug
to force FB to crowl the pages I was working on at the moment.
This proved usedful in getting immediate feedback on how things were working out.