Posts

How to add new line in google forms linear scale type question

Image
 Below script helps to add a new line in the linear scale type question in google forms. Follow the steps in the video given for more details: Script : function addLineBreaks() {   var form = FormApp.getActiveForm();       // find form items you need    var questions = form.getItems(FormApp.ItemType.SCALE);      for(i = 0; i < questions.length; i++)   {     var title = questions[i].getTitle();     questions[i].setTitle(title.split(". ").join("\n"));   } }

Whatsapp , Facebook and Instagram crashed globally. on october 4

 No clue on the exact reason, WhatsApp , Facebook and Instagram is down  for a while. The issue is reported globally and not servicing still. WhatsApp has acknowledged that they are working on the issue.  They mentioned  “working to get things back to normal and will send an update here as soon as possible." Users of WhatsApp have tweeted that one of the world's most popular instant messaging apps has not been working for some time now. Some Instagram users also reported that the app is down. No messages were getting delivered on WhatsApp, users tweeted, while no content could be loaded on the photo- and video-sharing app Instagram. Users can check the downdetector to see the current status: https://downdetector.com/status/whatsapp/

How to add a new line in Date type question in google forms

Image
 In Google forms, adding a new line in Date type question can be done by running the below script in the script editor. To follow the steps, please watch the video: Code to Run :  function   addLineBreaks () {    var   form  =  FormApp . getActiveForm ();        // find form items you need     var   questions  =  form . getItems ( FormApp . ItemType . DATE );       for ( i  =  0 ;  i  <  questions . length ;  i ++)   {      var   title  =  questions [ i ]. getTitle ();      questions [ i ]. setTitle ( title . split ( ". " ). join ( "\n" ));   } }

How to add a line break in file upload type question in google forms

Image
 For file upload type, add the below code in script editor in google forms and run this to add a line break for the question . Please refer the video below to see how to do: code: function   addLineBreaks () {    var   form  =  FormApp . getActiveForm ();        // find form items you need         var   questions  =  form . getItems ( FormApp . ItemType . FILE_UPLOAD );       for ( i  =  0 ;  i  <  questions . length ;  i ++)   {      var   title  =  questions [ i ]. getTitle ();      questions [ i ]. setTitle ( title . split ( ". " ). join ( "\n" ));   } }

Best websites to earn money online 2021 | Best freelance jobs online for testers 2021

Image
  There are several websites for testers which will be paying for the work or issues they submit through the platforms. Most of the website follow their own rules and instructions are given to the users to follow. All of these require a new user registration and there will be a test to be completed to get qualified for continuing with testing. Following are some of the best websites which pay for testing. 1.  Usertesting Usertesting is the most popular website which pays user for testing the websites. These tests mostly have user to talk and record the user experience while testing. user will be paid through paypal when the threshold comes. Users has to submit a demo test and results will be sent to confirm whether user is qualified to continue or not. 2.  Testio Testio is a best website which will give you much test invitations per day. User has to register and complete a test to continue with testio. Users will be paid through paypal, payoneer or by bank transfer. payments will be do

ColdFusion Interview questions 2021 - Part 1

Image
  1. What is ColdFusion. How it works? ColdFusion is a powerful and fast development platform built on java for web application development. For more detailed explanation,  you can refer the video below: 2. Difference between Application.cfc and Applicaion.cfm Every time a page runs, ColdFusion looks for the Application.cfm page  in the current directory and then in each parent directory up to the web root until it finds one. As soon as it finds an Application.cfm page, it runs it and stops looking. ColdFusion looks for the Application.cfc, page in the same manner as it does for Application.cfm. Below video shows the main difference between Application.cfm and Application.cfc   3. What are components in ColdFusion? Components are nothing but a class with methods / functions and variables in it. In ColdFusion the tag <cfcomponent> is used for creating components. The functions inside a component can be created by using <cffunction> tag. The syntax for creating a component

Coldfusion : How to fix multiple content disposition error when cfheader is used

Image
  There are some cases where we will get the below error while using files downloads or using cfheader attachment attributes. This occurs when there will be be a comma in the file name which will make the server give error like multiple content. To fix this error, a simple code update can help: we can add the filename in double quotes so that the code will look like: <cfheader name="Content-Disposition" value="attachment; filename=""#myfilename#""">