<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Web Technologies II - Questions by </title>
      <link>https://padlet.com/vidhurojit/cjb4zuejsc4p</link>
      <description>There is no stupid question : stupid people don&#39;t ask questions</description>
      <language>en-us</language>
      <pubDate>2017-01-02 16:26:23 UTC</pubDate>
      <lastBuildDate>2020-05-25 12:15:57 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-assets.s3.amazonaws.com/icons/Diskette.png</url>
      </image>
      <item>
         <title>JS-Constructor Overloading</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/144984303</link>
         <description><![CDATA[<div>Can JS constructors be overloaded?<br>No.They cannot be overloaded as JavaScript is a dynamically typed language</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-02 16:27:32 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/144984303</guid>
      </item>
      <item>
         <title>JS: Editing Constructors</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145027408</link>
         <description><![CDATA[<pre>function Foo() {
}
Foo.prototype.bar = "I'm bar on Foo.prototype";
Foo.bar = "I'm bar on Foo";
var f = new Foo();
console.log(f.bar)//gives undefined. why does is not print <strong>"I am foo on bar"</strong> </pre><div>Explanation at <a href="http://stackoverflow.com/questions/9582341/adding-new-properties-to-constructor-function-without-prototype">http://stackoverflow.com/questions/9582341/adding-new-properties-to-constructor-function-without-prototype</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-03 09:23:03 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145027408</guid>
      </item>
      <item>
         <title>JS Inheritance</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145398873</link>
         <description><![CDATA[<div>TO designate Rectangle as the parent of square why cant we say<br>Square.prototype=Rectangle.prototype?<br><em><br>ANS In this case any methods added to Square.prototype will be accessible to  rectangle objects as well . These are object references</em><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-05 00:06:20 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145398873</guid>
      </item>
      <item>
         <title>JS Prototypal Inheritance</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145398951</link>
         <description><![CDATA[<div>What happens behind the scenes when you say <br>Square.prototype=new Rectangle()</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-05 00:08:00 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145398951</guid>
      </item>
      <item>
         <title>AJAX: When you make repeated calls to the same server resource wont the resource be cached?</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145526887</link>
         <description><![CDATA[<div><em>Ans Including teh following code in the page prevents it from being cached<br></em><br></div><div>&lt;?php
   header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");//Dont cache
   header("Pragma: no-cache");//Dont cache
   header("Expires: Thu, 19 Nov 1981 08:52:00 GMT");//Make sure it expired in the past (this can be overkill)
?&gt;</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-05 16:22:08 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145526887</guid>
      </item>
      <item>
         <title>JS Inheritance</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145628913</link>
         <description><![CDATA[<div>Is multiple inheritance possible in JavaScript?<br><em>ANS</em></div><div>Some object-oriented languages allow multiple inheritance. That is, an object can inherit the properties and values from unrelated parent objects. JavaScript does not support multiple inheritance.<br><br></div><div>Inheritance of property values occurs at run time by JavaScript searching the prototype chain of an object to find a value. Because an object has a single associated prototype, JavaScript cannot dynamically inherit from more than one prototype chain.</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-06 05:24:13 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145628913</guid>
      </item>
      <item>
         <title>AJAX Techniques</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145926153</link>
         <description><![CDATA[<div>WHat happens if we put target of a form as div in the page</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-09 09:20:53 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145926153</guid>
      </item>
      <item>
         <title>AJAX </title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145926240</link>
         <description><![CDATA[<div>Does clicking form.submit() work same as clicking the submit button. Especially in terms  of "required" attribute</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-09 09:21:26 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145926240</guid>
      </item>
      <item>
         <title>AJAX IMAGES</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145926361</link>
         <description><![CDATA[<div>Is Content -type header always requred?</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-09 09:22:24 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/145926361</guid>
      </item>
      <item>
         <title>CROSS DOMAIN ACCESS IN IFRAMES</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/146157561</link>
         <description><![CDATA[<div><a href="http://softwareas.com/cross-domain-communication-with-iframes/">http://softwareas.com/cross-domain-communication-with-iframes/</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-10 04:14:04 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/146157561</guid>
      </item>
      <item>
         <title>TARGET ATTRIBUTE OF A FRAME</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/146161659</link>
         <description><![CDATA[<div>The acceptable values for the target attribute of a frame are<br>&lt;form target="_blank|_self|_parent|_top<em>|framename</em>"&gt;</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-10 05:34:10 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/146161659</guid>
      </item>
      <item>
         <title>READY STATE</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/147222060</link>
         <description><![CDATA[<div>Q:What do the different readyState values(0 through 4) mean?<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-15 09:17:56 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/147222060</guid>
      </item>
      <item>
         <title>XHR BINARY FETCH</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/148270692</link>
         <description><![CDATA[<div>Why are large size blobs not downloading?</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-20 03:17:08 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/148270692</guid>
      </item>
      <item>
         <title>HOW CAN YOU SET UP MULTIPLE HOSTS ON XAMPP</title>
         <author>vidhurojit</author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/149196310</link>
         <description><![CDATA[<div><a href="https://delanomaloney.com/2013/07/10/how-to-set-up-virtual-hosts-using-xampp/">https://delanomaloney.com/2013/07/10/how-to-set-up-virtual-hosts-using-xampp/</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-01-24 23:20:13 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/149196310</guid>
      </item>
      <item>
         <title>Multistage download versus Streaming</title>
         <author></author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/163380003</link>
         <description><![CDATA[<div>How is Streaming different from multistage download? Both are used to display data part by part on the web page to give the user a faster service.<br><br>In multistage download the client issues a request and the a response is sent with respect to it. In streaming a persisitent connection is kept open and multiple responses are sent by checking readystate 3</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-03-29 11:37:30 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/163380003</guid>
      </item>
      <item>
         <title>Madam, Please send the Makeup Scheme and Solutions for both PESIT and PESU.</title>
         <author></author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/170187671</link>
         <description><![CDATA[<div>done</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-05-05 14:18:18 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/170187671</guid>
      </item>
      <item>
         <title>WebSockets</title>
         <author></author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/251900192</link>
         <description><![CDATA[<div>How to implement websockets using just javascript ( not even jquery ) and php?<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-04-15 16:04:27 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/251900192</guid>
      </item>
      <item>
         <title>Why is ob_start used ?What is the difference between ob_flush and flush ?</title>
         <author></author>
         <link>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/592829909</link>
         <description><![CDATA[<div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-05-25 12:12:35 UTC</pubDate>
         <guid>https://padlet.com/vidhurojit/cjb4zuejsc4p/wish/592829909</guid>
      </item>
   </channel>
</rss>
