Posts

Showing posts with the label WebApps

Can you do a WebApp in 10 minutes?

Image
Today I explored WebApps,  a programming environment that lets you publish Web Sites without the need to provision a Web Server. In other words, it is serverless . It uses AppScript as programming language which provides great integration into Google apps. I want to show you that you can create your first  WebApp in 10 minutes. If you need longer, leave me a comment please - eager to get feedback. Challenge:  Show something from your Google Calendar using WebApps Solution: Point your Chrome to sheets.new -> Tools -> Script Editor. Click on Services -> Add Service -> Google Calendar API. Then, add the following code: function   doGet ( params ) {    var   today  =  new   Date ()    events = CalendarApp . getDefaultCalendar (). getEventsForDay ( today )    output = "Here are your calendar events: <br/> "    for  ( i = 0 ; i < events . length ; i...