BlogsDope image BlogsDope
article on blogsdope

Beginning with ML 3.0: Logistic Regression

New to supervised machine learning algorithms? Intimidated by the math behind these algorithms? Don't worry about it! Read on to understand logistic regression.
article on blogsdope

Using *args and **kwargs in Python

Use of * (*args) and ** (**kwargs) in Python. Make a function to take different number of parameters. Packing arguments in tuple or dictionary.
article on blogsdope

Solving Sudoku with Backtracking | C, Java and Python

Explanation and code of Sudoku-solving algorithm using backtracking. A little introduction about Sudoku and how we can use backtracking to solve it.
article on blogsdope

Mouse Rollover Zoom Effect on Images

Move your mouse pointer over an image in any direction and get a magnified view of that part of the image in the way you want, without using any jQuery plugin.
article on blogsdope

Pure CSS Moving Cloud Animation

Create moving clouds animation for your website using just CSS in 3 easy steps.
article on blogsdope

int main() vs void main() vs int main(void) in C & C++

Difference between int main() , void main(), int main(void) and void main(void) in C and C++. Decide which you should use while writing a program.
article on blogsdope

Calculator using Java Swing and AWT with source code

This is a simple calculator using Java to demonstrate the working of Swing and AWT. You can modify the code according to your need and add more fucntions
article on blogsdope

Animate your Website Elements with CSS Transforms

Change the normal position and orientation of an element by scaling, rotating, translating, skewing and applying other animation effects by using CSS transform
article on blogsdope

Common examples of loops in C

Common examples of loops in C at one place. Read and learn examples like Factorial, Prime Numbers, Palindrome and Armstrong Numbers.
article on blogsdope

Prime numbers using Sieve Algorithm in C

Sieve of Eratosthenes for getting all prime numbers in a given range using examples and C code. Read and learn the explained C code for prime numbers.
article on blogsdope

Common examples of loops using recursion in C

Get your concepts of recursion cleared. See the examples of loops using recursion and understand them. Learn and write better recursions.
article on blogsdope

Queue in C

Explanation of queue in C. First-in, First-out (FIFO) and explanation of every functions which are used in queue. Functions like enqueue, dequeue, etc.
Recent
article on blogsdope

pow() in Python

The pow() function returns the value of x to the power of y
article on blogsdope

memoryview() in Python

The Python memoryview(arg) function returns a memoryview object of the given bytes or bytearray argument.
article on blogsdope

next() in Python

The next() in Python returns the next item in an iterator
article on blogsdope

CSS text-align-last

The CSS text-align-last property is used to specify the alignment of the last line of an element.
article on blogsdope

CSS text-indent

The CSS text-indent property is used to specify the indentation of text.
article on blogsdope

CSS text-justify

The CSS text-justify property allows us to specify how spaces should be distributed between words of a justified text.
article on blogsdope

CSS text-overflow

The CSS text-overflow property specifies how to display the content that overflows its container.
article on blogsdope

CSS text-wrap

The CSS text-wrap property is used to specify the break points at which lines should break.
article on blogsdope

CSS text-outline

The CSS text-outline property is used to give outline to text.
article on blogsdope

CSS padding

The CSS padding property is used to set the padding for an element.
Editor's Picks