Pesudo Asynchronous JavaScript

JavaScript inherently has Single threaded Synchronous Execution i.e. javascript is running on a single thread, line by line, in the sequence in which code is written. But then the big question is how can it handle all the Events like Clicks or Hover and many other like. Even bigger question how AJAX works in JavaScript? … More Pesudo Asynchronous JavaScript

Matrix URI

While working on a sample problem, I got stuck in a problem (Eventually solved)  due to some misplacement of parameters in the function (Which is not much important ) and I got the error message stating “Root segment cannot have matrix parameters” Which was like why root URL can’t have parameters with the mindset that … More Matrix URI

Beauty Is Irrational

“Beauty Is Irrational” which seems like is a reasonable statement as there is no logic or parameter by which we can define a thing is beautiful or not. But, Mathemticans found out that most thing which seems beautiful have one particular number embedded into itself  that is golden ratio. So, Golden ratio (φ) can be … More Beauty Is Irrational

Grown Up Pointers

Shared_pointers #include<iostream> int main(){ int *b=new int(12); //initialize the pointer int *c; c=b;       //make  pointer c points to same pointer delete b; //delete the pointers std::cout<<*c; } Above program will produce an error on running. Why? because the object to which c was pointing got deleted will c is still pointing to it. In … More Grown Up Pointers

Customizer: Parameters order as in the source code

There was an issue https://github.com/openscad/openscad/issues/1844 that says the order of parameters and group should be according the order of the parameters in the script which was a difficult task as we were saving all parameters in map which don’t keep order in which parameters were added instead arranges the object inside it according to the … More Customizer: Parameters order as in the source code

6-month Training Summary

During my 6 month training, I worked on three main projects: OpenSCAD’s customizer, sunehaG and TheRoadproject. Where OpenSCAD being chosen by me as the main project. So, Let’s start with OpenSCAD’s customizer. OpenSCAD OpenSCAD is basically the programmers 3D CAD i.e.  we can create 3D models using programming and the programming language used by it … More 6-month Training Summary

30th November 2016

Today, Removed the share button from the menu in the login screen and while adding the new account. Also, did some testing of sunehaG and found the issue with the sharing of the URI for Groups.  After that helped Sandeep with GRASS.  At the end of  the day, Wrote section related to Testing with that, … More 30th November 2016