76 posts is fetched
Engineer bro!
Thu Jun 23 2022 (3 weeks ago)
Learning SELECT statement and WHERE clause | SQL
In this article we'll learn SELECT and WHERE of SQL. Select statement is used for selecting rows from a table inside the database, we can also select particular column and rows upon conditions. Where clause is used to specify conditions for selecting rows.
1
0
18
Engineer bro!
Thu Jun 23 2022 (3 weeks ago)
SQL practice series
Starting SQL practice series. In this series we'll be solving real life problems provided by https://www.sql-practice.com. We'll understand the problem and they we'll try to solve them. At the end we'll understand the solution.
1
0
14
Engineer bro!
Fri Jun 17 2022 (1 month ago)
Websites you should consider while getting started with Web Development
In this article i have listed some cool website i used while learning web development. These website can be considered when you start learning web development, if you already know or experienced with the topic, then probably you won’t need it.
1
0
118
Engineer bro!
Sun Jun 12 2022 (1 month ago)
Basic terms for Database Management System
In this article, we'll see some basic terms for Database, Management System, such as data, metadata, raw data, etc.
0
0
76
Engineer bro!
Thu May 19 2022 (2 months ago)
What is a Database Management System ?
A DBMS is a software which lets you define schema of your data, organise the data, manipulate and retrieve the data.
1
0
99
Engineer bro!
Sat May 07 2022 (2 months ago)
Using import/export in NodeJs
The export statement is used when creating JavaScript modules to export live bindings to functions, objects, or primitive values from the module so they can be used by other programs with the import statement. The value of an imported binding is subject to change in the module that exports it.
1
0
67
Engineer bro!
Mon May 02 2022 (2 months ago)
Recurrence Relation
Recurrence relation is an equation that expresses the nth term of a sequence as a function of k preceding terms, for some fixed k (independent from n), which is called the order of the relation. Once k initial terms of a sequence are given, the recurrence relation allows computing recursively all the remaining terms of the sequence.
0
0
45
Engineer bro!
Sun May 01 2022 (2 months ago)
Amortized Analysis
Amortized analysis considers not just one operation but a sequence of operations on a given data structures or a database.
1
0
16
Engineer bro!
Sun May 01 2022 (2 months ago)
Analyzing control statements
Controls statements are basic building blocks for any algorithm, they decides that how your program will behave. Algorithm's control flow entirety depends on the control statements present in the algorithm. So, it's important to learn that how can we analyse the controls statements of an Algorithm.
0
0
13
Engineer bro!
Sat Apr 30 2022 (3 months ago)
Asymptotic analysis in practice
So far we have seen that what Asymptotic analysis is. In this article we'll explore the uses of Asymptotic analysis.
0
0
12
Engineer bro!
Fri Apr 29 2022 (3 months ago)
Asymptotic analysis
The asymptotic analysis defines the mathematical foundation of an algorithm's run time performance. If there is no input to an algorithm then the algorithm will always work at a constant time. Asymptotic analysis is the running time of any process or algorithm in mathematical terms.
1
0
45
Engineer bro!
Wed Apr 13 2022 (3 months ago)
Analysis of the Algorithm
The analysis of algorithms is the process of finding the computational complexity of algorithms—the amount of time, storage, or other resources needed to execute them.
1
0
33
Engineer bro!
Tue Apr 12 2022 (3 months ago)
What is the analysis of the Algorithm?
The analysis of algorithms is the process of finding the computational complexity of algorithms—the amount of time, storage, or other resources needed to execute them. Usually, this involves determining a function that relates the size of an algorithm's input to the number of steps it takes (its time complexity) or the number of storage locations it uses (its space complexity).
0
0
25
Engineer bro!
Tue Apr 12 2022 (3 months ago)
Introduction to Algorithm and Data Structure
A data structure is a named location that can be used to store and organize data. And, an algorithm is a collection of steps to solve a particular problem. Learning data structures and algorithms allow us to write efficient and optimized computer programs
0
0
15
Engineer bro!
Tue Apr 12 2022 (3 months ago)
What is Data structure?
In computer science, a data structure is a data organization, management, and storage format that enables efficient access and modification. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data, i.e., it is an algebraic structure about data.
0
0
17
Engineer bro!
Mon Apr 11 2022 (3 months ago)
What is the Algorithm?
A method or set of instructions that must be followed when performing problem-solving operations. As a result, an algorithm is a collection of instructions that govern how a work is to be conducted step-by-step to achieve the desired result termed as an algorithm.
1
0
26
Engineer bro!
Sun Apr 10 2022 (3 months ago)
Design and Analysis of Algorithm
This course has been designed for students pursuing a degree in computer science, who want to learn data structure and algorithms, and who want to crack competitive programming or any related field. It attempts to help students to grasp the essential concepts involved in algorithm design, analysis and data structures.
1
0
18
Engineer bro!
Sat Apr 09 2022 (3 months ago)
The modern mode, "use strict"
For a long time, JavaScript evolved without compatibility issues. New features were added to the language while old functionality didn’t change.
0
0
13
Engineer bro!
Sat Apr 09 2022 (3 months ago)
Semicolon in JavaScript
Semicolons are an essential part of JavaScript code. They are read and used by the compiler to distinguish between separate statements so that statements do not leak into other parts of the code. The good feature is that JavaScript includes an automatic semicolon feature.
0
0
12
Engineer bro!
Sat Apr 09 2022 (3 months ago)
Comments in JavaScript
Commenting involves placing Human Readable Descriptions inside of computer programs detailing what the Code is doing. Proper use of commenting can make code maintenance much easier, as well as help make finding bugs faster. Further, commenting is very important when writing functions that other people will use.
0
0
13
Engineer bro!
Sat Apr 09 2022 (3 months ago)
Coding structure in JavaScript.
Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines.
1
0
11
Engineer bro!
Sat Apr 09 2022 (3 months ago)
How to run JavaScript in the page?
You might have heard that, JavaScript can manipulate the page. But, how to execute JavaScript for manipulating the page. In order to do that, you need to load the JavaScript code after the page loaded.
0
0
13
Engineer bro!
Sat Apr 09 2022 (3 months ago)
Let's say Hello to the JavaScript world
You'll see the Hello World
example in many programming tutorials and we will start with Hello World
too.
0
0
12
Engineer bro!
Sat Apr 09 2022 (3 months ago)
Introduction of developer console of browser
Code is prone to errors. You are likely to make mistakes while coding. You wrote a script for the browser. But when you make mistakes, then where will you see those mistakes. Here developer console comes into the picture.
1
0
8
Engineer bro!
Sat Apr 09 2022 (3 months ago)
Code editors for JavaScript
JavaScript code can be edited by any editor which can edit the text content of the file, like notepad, and text editor. Editing code in a normal text editor is not easy, nowadays we have so many powerful editors that can speed up our development.
0
0
9
Engineer bro!
Sat Apr 09 2022 (3 months ago)
JavaScript basic
JavaScript basic covers the module which will help you to get started with JavaScript.
0
0
12
Engineer bro!
Sat Apr 09 2022 (3 months ago)
An introduction to JavaScript
JavaScript often abbreviated as JS, is a programming language that is one of the core technologies of the world wide web (WWW), long side HTML and CSS. Over 97% of the websites are using JavaScript for client-side scripting. All major browsers have a dedicated JavaScript engine to execute code on the user's device.
1
0
10
Engineer bro!
Sat Mar 19 2022 (4 months ago)
Getting started with Redis and NodeJs
Although Redis is mainly known for in-memory cache, it also provides a few other interesting features out of the box.
1
0
66
Engineer bro!
Sat Mar 19 2022 (4 months ago)
Using Nginx as a reverse proxy
Nginx, stylized as NGIИX, is a web server that can also be used as a reverse proxy, load balancer, mail proxy and HTTP cache. In this article, we'll see the basics of Nginx installation and setting up the proxy.
1
0
80
Engineer bro!
Wed Mar 16 2022 (4 months ago)
25 MCQs of JavaScript | SET - 5
In this article, I have listed 25 javascript MCQs for you to practice. Comment your answer with proper justification.
0
0
16
Engineer bro!
Wed Mar 16 2022 (4 months ago)
25 MCQs of JavaScript | SET - 4
In this article, I have listed 25 javascript MCQs for you to practice. Comment your answer with proper justification.
0
0
15
Engineer bro!
Wed Mar 16 2022 (4 months ago)
25 MCQs of JavaScript | SET - 3
In this article, I have listed 25 javascript MCQs for you to practice. Comment your answer with proper justification.
0
0
11
Engineer bro!
Fri Mar 04 2022 (4 months ago)
How to use the free image API of Imgur with NodeJs?
Almost all applications either small or big needs some sort of service to host the image. Imgur is one of those services that provide image hosting for free. We can also use its API to programmatically upload the images. In this article, we'll see how can we upload the image programmatically using Imgur APIs.
1
0
37
Engineer bro!
Mon Feb 21 2022 (5 months ago)
JavaScript Interview Question | Creating our own util.promisify()
The util.promisify() function takes a function following the common error-first callback style, i.e. taking a (err, value) => ... callback as the last argument, and returns a version that returns promises. There is a native implementation present in here, but you might get this question in an interview, so we should be able to answer that question.
1
0
150
Engineer bro!
Mon Feb 21 2022 (5 months ago)
JavaScript Interview Question | Create setInterval() using setTimeout()
This is a very hot question in the JavaScript world. It has been asked so many times in the JavaScript interview. In this article, I'll try to explain to you the concept behind this.
1
0
91
Engineer bro!
Sun Feb 20 2022 (5 months ago)
Building a sleep function for JavaScript
The aim of building a sleep function is to allow the program to wait for a specified amount of time before executing the next line. The sleep function has many use cases, as you want to execute another service if the previous service takes more time, etc.
1
0
64
Engineer bro!
Sun Jan 30 2022 (5 months ago)
Creating a ToDo application in Vanilla JavaScript
You will learn a lot by creating a to-do application. You will learn how can you manipulate the DOM, create a new HTML element, adding a new HTML element in the DOM.
1
0
109
Engineer bro!
Sat Jan 29 2022 (6 months ago)
3 Free image hosting platforms
Image hosting platforms are the platforms, where you can host the image and share the image with the world. You don't need to host any server, just upload the image using either API/UI.
2
0
93
Engineer bro!
Fri Jan 14 2022 (6 months ago)
Free hosting providers for React
In this article, I am going to list 3 hosting service providers where you can host React applications. This article only aims for pricing metrics but not about how can you host the application. All these hosting providers have been used by me.
1
0
109
Engineer bro!
Wed Dec 15 2021 (7 months ago)
Simulate delay of specified seconds in JavaScript
As a use case, suppose you are building an API that might take 5 sec to respond. In order to simulate this, you need a function that can run for an exact 5 sec.
2
0
65
Engineer bro!
Mon Dec 13 2021 (7 months ago)
List of 39 HTTP status codes and their meaning
Each Status-Code is described below, including a description of which method(s) it can follow and any metainformation required in the response.
1
0
46
Engineer bro!
Wed Dec 08 2021 (7 months ago)
How to download an image from URL in nodejs
In this article, we'll learn that how can we download images from a remote URL. After downloading the image, we will encode it in base64
format.
2
0
281
dsabyte
Sat Dec 04 2021 (7 months ago)
Software Development Engineer | SDE1 | @Amazon
Amazon is hiring for Software Development Engineer | SDE1.
1
0
111
dsabyte
Sat Dec 04 2021 (7 months ago)
Software Engineer I (Fullstack), Version Control @postman
The Postman is hiring for Software Engineer I. Over 17 million developers use Postman. By joining the postman, you'll be part of great team.
2
0
61
dsabyte
Tue Nov 30 2021 (7 months ago)
Clarion Technologies is hiring NodeJs develoeprs
Clarion Technologies is looking for topnotch Node JS Developers willing to work on projects with global customers. 50K On Joining Bonus + Permanent Work From Home
1
0
34
Rosalind Desai
Mon Nov 22 2021 (8 months ago)
Benefits of using Enterprise mobility apps in 2021
Before we dive into the topic we must understand what are enterprise mobility applications. Who makes it and what are its used for. Enterprise mobility application is developed by enterprise application development company. There are many enterprise application development company worldwide however it is advisable to get the enterprise software applications from the most reliable and trusted company that promises to offer the best solution for business.
1
0
28
Engineer bro!
Wed Nov 17 2021 (8 months ago)
25 MCQs of JavaScript | SET - 2
In this article, I have listed 25 javascript MCQs for you to practice. Comment your answer with proper justification.
1
0
67
Engineer bro!
Wed Nov 17 2021 (8 months ago)
Divisor Game a Dynamic programming problem to get started with DP
In this article, you'll learn that how can you use DP to reduce the execution time.
1
0
43
Engineer bro!
Mon Nov 15 2021 (8 months ago)
25 MCQs of JavaScript | SET - 1
In this article, I have listed 25 javascript MCQs for you to practice. Comment your answer with proper justification.
1
0
138
dsabyte
Sun Nov 14 2021 (8 months ago)
Mahindra Rise Fullstack Engineer Hiring Challenge | hackerearth
This is a full stack hiring challenge organised by Mahindra on hackerearth. The technical skills required are ReactJS, NodeJS, Cloud Services, DevSecOps, etc.
2
0
114
Engineer bro!
Sat Nov 13 2021 (8 months ago)
The count() and count_if() function in C++ | STL
In this article, we'll see that how can we use count()
and count_if()
function to count the element in the array.
1
0
29
Engineer bro!
Fri Nov 12 2021 (8 months ago)
The for_each function in C++ | STL
In this article, we'll see that how can we use the for_each
function of C++.
1
0
14
Engineer bro!
Fri Nov 12 2021 (8 months ago)
The all_any_none_of function in c++ | STL
In this article, we'll see how to use all_of
, any_of
and none_of
function in c++.
2
0
40
Engineer bro!
Thu Nov 11 2021 (8 months ago)
The use of is_sorted
in C++ | STL | CPP
is_sorted
function in STL is used to check if the input array is sorted or not. By default, it uses the binary operator to compare the elements, but you can customize the behaviour by passing the comparison function.
2
0
33
dsabyte
Sun Nov 07 2021 (8 months ago)
Capgemini is hiring Junior Software Developer
Capgemini is a global leader in consulting, digital transformation, technology and engineering services. The Group is at the forefront of innovation to address the entire breadth of clients’ opportunities in the evolving world of cloud, digital and platforms.
1
0
157
dsabyte
Fri Nov 05 2021 (8 months ago)
Data types and it's applications in JavaScript
Almost all programming language have built in data types and most of the modern programming languages also support user defined data types. In this article, i'll aim to attempt a quick overview of the data types.
1
0
59
dsabyte
Fri Nov 05 2021 (8 months ago)
DeTaSECURE
NodeJs AWS Developer in Bangalore Urban, Karnataka, India Remote
DeTaSECURE NodeJs AWS Developer in Bangalore Urban, Karnataka, India Remote
1
0
96
Engineer bro!
Sun Oct 31 2021 (8 months ago)
Solving a basic number theory problem with c++
You are given two numbers, . You have to find applied times.
1
0
83
dsabyte
Sat Oct 30 2021 (9 months ago)
Nektar.ai is hiring for Software engineer
Nektar.ai looking for engineers who can hit the ground running, with at least a year’s experience building production servers using Node.js. Experience with the frontend is positive but not required.
1
0
158
dsabyte
Thu Oct 28 2021 (9 months ago)
AMD is hiring Software Quality Engineer 1
Candidate will be part of Component Quality Engineering Team of about ~50 engineers. Validates 3D Driver components aggressively to meet Quality and Performance criteria before integrating to Mainstream.
2
0
105
dsabyte
Thu Oct 28 2021 (9 months ago)
Mettl is hiring Software Quality Engineer in Gurugram, Haryana, India (on site)
We are looking for a Strong QA professional who will be responsible for delivering high quality in a timely and cost-effective manner.
1
0
48
dsabyte
Thu Oct 28 2021 (9 months ago)
Associate Software Engineer(0-2 years) Immediate Joiners
The incumbent would be a part of Technology (Geeks) team within Assessment Solutions business and will be expected to strengthen our product by building and adding new products and improving the existing product features on the platform to improve existing offerings like:
1
0
55
dsabyte
Wed Oct 27 2021 (9 months ago)
Wipro is hiring Selenium-Test Engineer
As a Test Engineer, you should be able to understand the test requirements, design test cases, execute the test cases (Manual and Automated), ensuring schedule adherence to all milestone. You should ensure timely deliverables and weekly status reports, Test Execution Report and timely response to queries from clients and other stakeholders.
2
0
20
dsabyte
Wed Oct 27 2021 (9 months ago)
General Electric (GE) Hiring Graduate Engineer Trainee
General Electric (GE) India is hiring freshers as Graduate Engineer Trainee. Candidates from multiple batches are eligible for this role.
2
0
29
dsabyte
Mon Oct 25 2021 (9 months ago)
Java Developer
Summary In compute services division, we develop the common platform for all analytical solutions to fulfill all technology requirements. The existing team is being expanded to hire software engineers who will design, develop, debug, and maintain the world class software products which are used by fortune 500 companies. This team is responsible for the development of core pieces of SAS platform, security compliance and testing automation for the revenue generating products. It is an opportunity for junior developers to learn the best practices of development.
1
0
31
Engineer bro!
Sun Oct 24 2021 (9 months ago)
Embedding iframe on @dsabyte online editor
When publishing posts, you might often need to embed any content from some other website. You can just use the native iframe
tag to embed any post.
2
0
177
Engineer bro!
Fri Oct 22 2021 (9 months ago)
Youtube video in @dsabyte online editor
You can embed youtube video in @dsabyte online editor using iframe
.
2
0
86
Engineer bro!
Fri Oct 22 2021 (9 months ago)
Code syntax highlight in @dsabyte online editor
1
0
94
Engineer bro!
Fri Oct 22 2021 (9 months ago)
Writing in @dsabyte online editor
Writing maths diagrams in @dsabyte online editor is very easy. You just need to write some syntax and semantics to render maths in the editor.
1
0
125
Engineer bro!
Fri Oct 22 2021 (9 months ago)
Creating UML diagrams in @dsabyte markdown editor
The Unified Modeling Language is a general-purpose, developmental, modelling language in the field of software engineering that is intended to provide a standard way to visualize the design of a system.
1
0
138
Engineer bro!
Fri Oct 22 2021 (9 months ago)
Publishing a post on @dsabyte
Publishing posts on @dsabyte is very easy. You'll get a ready to use online Markdown + WYSIWYG editor. After writing the content just publish your post with a single click.
2
0
412
Engineer bro!
Fri Oct 08 2021 (9 months ago)
Max Sum Contiguous Subarray
You are given an array and you have to find a continues sub-array of which has the largest sum over any other sub-array of .
2
0
65
Engineer bro!
Wed Oct 06 2021 (9 months ago)
What is the algorithm?
The algorithm is a finite set of well-defined sequential instructions to perform any task. In computer science and mathematics, algorithms are used to solve a class of specific problems or perform any sort of computation.
1
0
205
Engineer bro!
Mon Oct 04 2021 (9 months ago)
How to write blogs on @dsabyte.com
Hi, I am Rahul, author of this site. I am very happy to launch this site and I am the one and only developer of this site. In this article, I'll show you that how can we publish any blog on @dsabyte.com
1
0
356
© 2021 dsabyte. All rights reserved