Feedly is based on what ajax framework? - ajax

Feedly.com is kind of cool. Can you guys give me some clues about it is developed based on what ajax framework?

If you ask about the Firefox plugin its based on their own framework, you can download the freedly.xpi, change its extension to .zip and open it to see what is inside.

Related

How is this interactive website made?

I am trying to make a website similar to this and I'd like to know how this website was made. The website is also run on desktop and has a mobile app too so there's no HTML or anything in the back end.
Any ideas?
You can use Wappalyzer to identify the technologies used for this Website.
https://www.wappalyzer.com/
Result for https://realtimeboard.com/signup/
as mentioned you can use https://www.wappalyzer.com/ or http://builtwith.com to know the technologies used, further more you can view the webpage source or use the inspect element tool to have a better idea of what is going on. and ofcourse there is HTML used in that page whether it was automatically generated or manually

Google Sites - Using Forms

I am building a Google Sites page with a simple form in which you can upload attachments. How would I go about having users fill out a form and attach a .jpeg that would automatically add the new jpeg file to the home page?
Thank you!
There is no way you can attach a .jpeg file to a google form, i am on similar project.
BUT! You can make a special form created by HTML and JavaScript, where you can add the file submit button. It took me days before i got it but to help you i show you where i started:
Google Forms file upload complete example
It is an asked question about similar topic.
http://www.labnol.org/internet/receive-files-in-google-drive/19697/
This is the page, where i finaly understood what is going on.
Just by the way. You will have to do a lot more scripting than that. This are only ideas where to start. I am working now on the uploading to the google site.
If you have anymore problems, please contact me. I can show you the source codes i am working on right now.
Have a nice day and good luck with sripting ;)

whick one is better fkeditor or ckeditor?

i am running through a problem to choose either fkeditor or ckeditor which one is better than the other in my project. and how can i get the tutorial regarding customization of any one of these editor in php.
Can you name some websites where i could get the help thanks.
CKEditor is formerly known as FCKEditor (the creator was unaware that FCKEditor didn't sound very... professional) - so you'll want CKEditor.
The CKEditor website has a wealth of information - check out the User Guide, Tutorials and How Tos. Also, when you have downloaded the CKEditor file, you'll find some example code in ckeditor/_samples/php which should help.

How to inject JavaScript using FireBreath

is it possible to inject javascript inside a web page from a Plug-In made under FireBreath Framework? i dont want to use safari extensions so I am wondering if using Plug-ins I can do the same or even more than suggest do it with Extensions. Mi idea is to write a function that detects a keyPress event in whatever textbox in the page and then pass the message to a javascript function which communicate with the JSAPI function exposed by the plugin.
thanks for any suggestions or guide.
BTW I am creating the firebreath plug-in to work with Mac OSx platform.
While you can inject JavaScript into a page from a plugin - just like you could from JavaScript - you'd need to get the plugin embedded into the page.
If you have that kind of control over the page then you won't need a plugin in the first place.
To have control over arbitrary pages that you can't control directly, you need a browser-extension/-addon. This article contains more detail on the subject.

Embed Powerpoint viewer on a web page (PHP)

I am building a PHP application where the user upload Powerpoint files. I want the other users to view it online instead of downloading. (Using a third party apps like google docs might be a little cumbersome for the users) Is it possible to write a powerpoint viewer code in PHP?
You could automate the process of using google docs with php.
Google provides a ppt viewer that can be embed into webpages using the following code
<iframe src="http://docs.google.com/gview?url=http://www.domainname.come/presentation.ppt&embedded=true" style="width:550px; height:450px;" frameborder="0"></iframe>
Now im assuming php handles the uploads your users make, thus it would be easy to find the url to the specific ppt file. You could store this url either in a variable or a database, fetch it when needed and place it in the code above.
I hope I have been able to explain the logic im trying to apply, do let me know if you need more specifications.
I suspect it would be much easier to reduce the powerpoint slides to .PNG files, and build a simple PHP script to cycle through the images.
You want to re-write Powerpoint in PHP? I'm gonna say... very difficult at best. There are, however, tools out there that make your life easier. Also, there's a "Save as web page" option in Powerpoint, so maybe you could have your uploaders save the powerpoint as a web page, and upload that output, which I would imagine would be pretty easy for you to subsequently put up on the web.
Alternatively, if you're feeling more ambitious, you could read up on the Google docs APIs, and possibly create a portal to upload to Google docs for the contributors, and view Google docs for your visitors. Your PHP frontend could leverage the power of Google docs, but eliminate the cumbersomeness (I'm kind of surprised that's a real word).
"Is it possible to write a powerpoint viewer code in PHP?"
Yes. Unfortunately, if you are asking this question, you probably won't be able to do it yourself.
If you want to try it anyways, here's a good place to start:
http://msdn.microsoft.com/en-us/library/cc313106(office.12).aspx
Or you can look for a library that does that. They are probably out there, just Google it.
EDIT: Found one here:
http://phppowerpoint.codeplex.com/
Powerpoint files can be embedded on a webpage using the API provided by Microsoft.
<iframe src="https://view.officeapps.live.com/op/embed.aspx?src=https://yourdomainname.com/your_powerpoint_file.pptx" width="100%" height="565px" frameborder="0"> </iframe>

Resources