Open in app

Sign In

Write

Sign In

sandeep negi
sandeep negi

15 Followers

Home

About

Jul 21, 2021

How to use react-bootstrap-icons ?

install react-bootstrap-icons dependency npm i react-bootstrap-icons 2. Navigate to the website : https://icons.getbootstrap.com/#usage to see all the icons that we can use 3. Let say we wants to use the icon called as trash so lets see how we can use this in our component here we have imported the icon that we need like “trash” and then we added it as a componentt we can give any color , size and we can send it as a prop in the component.

React

1 min read

How to use react-bootstrap-icons ?
How to use react-bootstrap-icons ?
React

1 min read


Jul 20, 2021

Docker 101 : Getting Started

So here i am back again with some easy steps to learn docker I am assuming you have already installed the docker and configured it. Now lets learn all the command docker ps // this will showcase all the container that are running docker stop container-name //this command will stop…

Docker

2 min read

Docker 101 : Getting Started
Docker 101 : Getting Started
Docker

2 min read


Jul 8, 2021

Most Used SQL Query used in current job ?

Query all the records from the table substitute_details select * from SUBSTITUTE_DETAIL where user_id=’userid’; Query records from the substitute_details table where user_id =123 and application key is default means multiple conditions in where clause select * from SUBSTITUTE_DETAIL where user_id=’123’ and application_key=’default’ ; Query to update the date using SQL in Oracle database update TABLE_NAME SET START_DATE=TO_DATE(‘06/07/2021’, ‘DD/MM/YYYY’), END_DATE=TO_DATE(‘07/07/2021’, ‘DD/MM/YYYY’) WHERE USER_ID=’userID’ AND APPLICATION_KEY=’default’;

Sql

1 min read

Sql

1 min read


Jun 29, 2021

Tips for an Online proctored exam using Pearson VUE ?

Hello and welcome back to my blog post hope you guys are doing great, my name is sandeep working in tech for the past 2 years, basically love all things tech. Why you should read this post ? I have recently cleared AZ-900, and I have given my exam using Pearson vue online proctored exam at home…

Online Test Series

2 min read

Tips for an Online proctored exam using Pearson VUE ?
Tips for an Online proctored exam using Pearson VUE ?
Online Test Series

2 min read


Jun 29, 2021

How I cleared AZ-900 , Azure Fundamentals ?

Hey everyone welcome back to our blog post, my self sandeep working in tech for the past 2 years, working with technology such as AWS, Azure, Spring boot, Angular, and Test automation using Selenium and Postman and Azure DevOps. So Recently I cleared the exam AZ-900, Azure Fundamentals, this is…

Azure

2 min read

How I cleared AZ-900 , Azure Fundamentals ?
How I cleared AZ-900 , Azure Fundamentals ?
Azure

2 min read


Jun 3, 2021

VSCode Proxy Configuraiton

Use the below-mentioned settings when you are using some local proxy like cntlm or any other in windows. In VS Code open File->Preferences->User Settings Copy HTTP configuration from default settings to settings.json Change the HTTP configuration as follows: { ... "http.proxy": "http://127.0.0.1:3128", ... } The file is located in C:\Users\<your_username>\AppData\Roaming\Code\User\settings.json

Vscode

1 min read

Vscode

1 min read


Jun 3, 2021

How to print nth Fibonacci number using recursion and iteration?

Approach 1 : Recursion, this one is comparatively easy public static int printFibonacciNthRecursion(int n) { if(n==1) return 0; if(n==2) return 1; return printFibonacciNthRecursion(n-1)+printFibonacciNthRecursion(n-2); } Approach 2: Iteration: here we have used two variables first and second after each iteration , first will store value of second and second will store result value.

Coding

1 min read

Coding

1 min read


Jun 2, 2021

Java Coding Series: How to check vowel is present in the string?

Approach 1 : Most Useful, We will use regex to find wether vowels present in the stirng or not. public static Boolean isVowelPresent(String sample) { return sample.toLowerCase().matches(".*[aeiou].*"); } Approach 2 : Traversing one by one and finding whether vowel is present or not using indexOf method public static Boolean isVowelPresent(String…

Java

1 min read

Java

1 min read


May 28, 2021

SSH Service connection in azure devops

Without waisting any time lets take a look what are the information required to make a service connection to a remote machine This Service connection will be used to run any commands in the remote machine or execute any bash script on that particular machine using azure pipelines, SSH Service Connection : Create a…

Ssh

1 min read

Ssh

1 min read


May 27, 2021

Most Important Scenarios, while executing Performance testing

Few Things to consider before Load Testing Number of Concurrent Users Test Duration Setting up Ramp-Up Period. Simulating real user-test scenarios With proper think time and delays Geo-Distributed virtual loads. What metrics we will track Analyzing captured Data. No need to read further, if are interested in knowing more about…

Performance Testing

2 min read

Most Important Scenarios, while executing Performance testing
Most Important Scenarios, while executing Performance testing
Performance Testing

2 min read

sandeep negi

sandeep negi

15 Followers

Software Engineer, who loves challenges and new technologies. :)

Following
  • The Educative Team

    The Educative Team

  • Matt Croak Code

    Matt Croak Code

  • Fahim ul Haq

    Fahim ul Haq

  • Eric Elliott

    Eric Elliott

  • Anmol Sehgal

    Anmol Sehgal

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech