Rohan Sakhale

Technology Evangelist, Product Engineer, Analytics Expert

vuePress-theme-reco Rohan Sakhale    2011 - 2024
Rohan Sakhale Rohan Sakhale

Choose mode

  • dark
  • auto
  • light
Home
Category
  • Codes
  • Learning
  • Libraries
  • Performance Testing
  • Personal Experience
  • Inspirational
  • Collaboration
Tag
TimeLine
About
Contact
  • GitLab (opens new window)
  • GitHub (opens new window)
  • Twitter (opens new window)
  • LinkedIn (opens new window)
GitLab (opens new window)
author-avatar

Rohan Sakhale

57

Articles

38

Tags

    Home
    Category
    • Codes
    • Learning
    • Libraries
    • Performance Testing
    • Personal Experience
    • Inspirational
    • Collaboration
    Tag
    TimeLine
    About
    Contact
    • GitLab (opens new window)
    • GitHub (opens new window)
    • Twitter (opens new window)
    • LinkedIn (opens new window)
    GitLab (opens new window)

    Codes Categories

    vuePress-theme-reco Rohan Sakhale    2011 - 2024
    • Codes 45
    • Learning 1
    • Libraries 2
    • Performance Testing 2
    • Personal Experience 5
    • Inspirational 1
    • Collaboration 1
    CSS Media Queries for Responsive Web Development

    # Information

    One of the main factor for responsive website development is developing css for multiple screen devices. Often it becomes difficult when we have so many set of devices and different set of dimension to each of those device, what dimensions we should fit. There are many answers already available on internet via css-tricks, stackoverflow etc.

    Rohan Sakhale 1/31/2017 csscode-examplemedia-queries
    Java String Literal vs String Object

    Most asked question during your interviews, different between

    String s1 = "abc";
    String s2 = new String("abc");
    
    1
    2
    Rohan Sakhale 12/26/2016 code-examplejavastrings
    Swing Components using Grid Layout in Java

    # Summary

    Another Swing program demo where I have used 3 layouts to show up the demo which are BorderLayout, BoxLayout, GridLayout.

    # Border Layout

    A layout container that arranges and resizes its components to fit in five regions: north, south, east, west, and center.

    Rohan Sakhale 6/27/2012 code-examplejavajava-swing
    File IO Operation in Java

    # Summary

    The following is a simple example on how to read & write data from a file.

    Rohan Sakhale 6/27/2012 code-examplejava
    Stack & Queue using MVC architecture in Javascript

    # Summary

    MVC i.e. Model-View-Controller architecture usually separates the program in three parts which are Model i.e. the code we write in the form of modules or that represents a model, View that helps in displaying data to the user in the form of GUI and Controller usually handles the user gestures carried out on the GUI.

    When using MVC architecture, our view can remain the same and by changing the Model it reflects the view with the help of the controller i.e. user interaction.

    Rohan Sakhale 6/18/2012 code-examplejavascriptmvc
    Random Panel Color in Java

    # Summary

    Colors in computers are generally made up using RGB mode i.e. Red, Green, Blue.

    So in java if we generate random color values for RGB from 0 to 255 each we can make a whole new color out of it by passing this RGB to the color object.

    Rohan Sakhale 6/16/2012 code-examplejavajava-swing
    Concurrent Chat Application in Java

    # Summary

    One of the most basic starters program for demonstrating the proper use of Sockets in Java.
    The following code makes use of Swing components to illustrate the Client GUI side and the Server side plays the role in Console mode.

    Rohan Sakhale 6/16/2012 code-examplejavajava-swingsocket-programming
    Factorial Program in Java

    # Summary

    In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n.

    Rohan Sakhale 6/16/2012 code-examplejava
    Calculate Celsius to Fahrenheit Temperature in Java

    # Summary

    In-order to convert from Celsius to Fahrenheit, we have to apply a simple logic onto Celsius "Multiply by 9, then divide by 5, then add 32".

    Our code provides a simple GUI, where the user has to enter the temperature in Celsius and after clicking on convert displays the Fahrenheit temperature below button in the form of JLabel.

    Rohan Sakhale 6/16/2012 code-examplejavajava-swing
    Calculate Fahrenheit to Celsius Temperature in Java

    # Summary

    In-order to convert from Fahrenheit to Celsius, we have to apply a simple logic onto Celsius "Deduct 32, then multiply by 5, then divide by 9".

    Our code provides a simple GUI, where the user has to enter the temperature in Fahrenheit and after clicking on convert displays the Celsius temperature below button in the form of JLabel.

    Rohan Sakhale 6/16/2012 code-examplejavajava-swing
    Prev 1 ... 12345 ... 5 Next Jump To Go