➿A while loop will execute till the condition is true. If the condition false, the program will exit from the loop. The while keyword will be used ➿The syntax for a while loop is: ➿While loops whose condition never evaluates to false are known as infinite loops ➿The condition never evaluates to false therefore the while loop will execute infinitely. So make sure your conditional
Shady run by “IIT” coding bootcamps
I wanted to write about this earlier but didn’t get the time. Last year McLaren College had put a posting on Upwork for a JavaScript instructor so I applied. Long story short their “technical exam” consisted of questions copy pasted off questions copy-pasted off geeksforgeeks.com For example the 1st and 3rd are Java/C++ questions taken from geeksforgeeks.com You can literally copy paste the questions in
Getters & Setters in JavaScript – part 3
Setters in JavaScript. Check out parts 1 and 2 Setters in JavaScript There are three ways you can use setters:1. Default method syntax2. get keyword3. Object.defineProperty() method We will now discuss the above three in detail. 1. Default method syntax The default method syntax can also be used for setters. Setters will set the property of theobject to the value passed in to the setter
Learn Twitter Bootstrap in VR – update
Level 1 of Bootstarry is almost complete, a few glitches and narration is missing but it’s starting to shape up. I’ve moved from Unreal Engine to Unity3D for now which means dipping into C# which is ok because I find that better than the flowchart type system that UE4 engine has (blueprints) which makes game development seem a bit magical.
51-100 #javascript interview questions
#2020 the year of
#POA (Plan of Action) Like 2019, #2020 will be a year of skills. Which means build, test, deploy! Skill #1 C++ I’ve enrolled in an online C++ certification. Finally not doing C++ like its 1995! I need this for unreal engine Skill #2 Unreal Engine Mostly blueprints to deal with the functional side of making games. Skill #3 Vue.js I had already started with vue.js
Adaptive learning & thinking toolbox
Learning how to learn is a fundamental skill. Note: This is a work in progress Introduction: Recently I’ve decided to spend more time learning virtual reality development with Unreal Engine 4. There wasn’t any panic involved, just a prolonged period of 5 days where I expended a lot of mental energy figuring out a course of action. This is akin to the “Pathways” option provided
Simply Auth now on heroku!
Past week I’ve been fixing issues with the simply auth project now on heroku! https://simplyauth.herokuapp.com/ I will add a rate limiting feature to limit login attempts to 3 and call it a day with this project. Rate limiting helps with brute force attacks so that a request from the same I.P address cannot have an unlimited amount of login attempts. It also makes an ‘app’
JWT: What are JSON Web Tokens & use cases
Same old web..new drama.. What are JSON Web Tokens? [JWT]? JWT are tokens that you can use in your web application to transfer data over a network and therefore authenticate communication between 2 parties. A better definition is: JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties. – Source It is a hash like encrypted string
Newbie guide : socket.IO: Code a chat app – Part 2
Code a chat app Guide Introduction The features of the chat app Socket.IO methods Socket.IO events Callback functions Directory structure So far.. Set up index.html and style.css Sending a message from the client to the server Receiving the message from the client at the server Displaying the message to all connected clients Broadcasting “user is typing…” message Display greeting message when someone joins the chat