Friday, January 26, 2018

digital marketing

  1. survey monkey
  2. mailchimp
  3. blogspot
  4. google calendar
  5. google forms
  6. reserving location on google map 
  7. wordpress
  8. facebook page
  9. twitter account
  10. linked in
  11. pinterest wallpaper
  12. youtube intro video
  13. whatsapp business account
  14.  indiamart listing
  15. affiliate for amazon and flipkart and shopclues and snapdeal
  16. quora
  17. onpage SEO



Wednesday, January 24, 2018

IDE issue

  • Once When I was shutting down my windows 10 Laptop ,I abruptly terminated STS  while it was turning off. This caused it not to start next time when i booted it up. exit code was 1. there was oracle java path at the top of path setting . I brought it down and brought the path of my jdk 1.8 installation folder to the top. This solved the problem. Before I had downloaded the latest STS . but it was also not starting up and showing the same problem.

Monday, January 22, 2018

Spring boot

Future Programming Skills

  1. Linux through Ubuntu
  2. Maven -> gradle
  3. Git through Github
  4. AWS
  5. Java latest Features
  6. IDE
    1. Eclipse
    2. IntelliJ
  7. Android
    1. NDK
  8. User Interface
    1. DOM
    2. HTML
    3. CSS
    4. Java Script
    5. JSON
    6. JQuery
    7. BootStrap 
  9. Security
  10. Testing
  11. Analysis and Design of Algorithm
  12. Data Structure
  13. Artificial Intelligence
  14. Digital Image Processing
  15. Maths
  16. Physics
  17. Chemistry
  18. Sensor
  19. Drones
  20. Robots
  21. Arduino
  22. Raspberry Pi
  23. Communicative English
  24. Basic Accounting & Commerce
  25. MBA
  26. IoT
  27. Networking

Saturday, January 20, 2018

json

thymeleaf

jquery

best practices

  • cdn
  • ec2 cluster
  • redis/memcache
  • jenkins
  • database cluster
  • e-commerce
    • sap hybris
  • messaging server
  • sms gateway

Tuesday, January 16, 2018

User Interface Design

  • If we keep logic of visibility of controls in javascript ie in plain html then following are the disadvantages:
    • anyone can copy the code
    • somebody can mess up with the security and data integrity ie changing the values
    • if javascript is disabled then mission critical application wont work
  • the advantage is it is fast to work

Saturday, January 6, 2018

javascript debugging

  • choose inspect element option  by right clicking on the html element of the html page and view its details in the inspector window
  • always open the console while running the javacript program. here the output or error is shown in the console as they happen
  •  always use console.log() function at appropriate places to check output.
  • onclick-calling-two-functions-simultaneously 
  •  

Friday, January 5, 2018

javascript

  • demystifying-javascript-variable-scope-hoisting
  • debugging code
  •   <html>
    <head>

    <script>

    function abc(temp)
    {




    var x = document.getElementById("cmbMS");
    var k=0;

    if(temp==rbtnMale)
    {

    for (var i=0; i<x.length; i++){
      if (x.options[i].value == 'widow' )
         x.remove(i);
      if(x.options[i].value=='widower')
      k=1;

    }//for

    if(k!=1)
    {
    var option = document.createElement("option");
    option.text = "widower";
    x.add(option);
    }

    }//if

    else
    {
    for (var i=0; i<x.length; i++){
      if (x.options[i].value == 'widower' )
         x.remove(i);
      if(x.options[i].value=='widow')
      k=1;
     
    }//for

    if(k!=1)
    {
    var option = document.createElement("option");
    option.text = "widow";
    x.add(option);
    }

    }//else


    } //abc()

    /*
    if opposite present then remove it
    if not present then add
    */

    </script>

    </head>


    <body>
    <form>
    gender<input type="radio" id="rbtnMale" name="gender" value="male" onClick="abc(this)">male
    <input type="radio" id="rbtnFemale" name="gender" value="female" onClick="abc(this)">female

    <select id="cmbMS" >
    <option value="neverMarried" selected>Never Married</option>
    <option value="divorcee">Divorcee</option>
    <option value="married">Married</option>
    <option value="havingchildren">Having Children</option>

    </select>

    </form>

    </body>


    </html>

latest in technology

  • typescript
  • angular 4
  • python
  • visual studio code
  • MEAN stack
    • mongodb
    • express
    • angular js
    • node js