http 400 BAD REQUEST

http 400 bad request

http 400 BAD REQUEST The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). The 400 Bad Request error is an HTTP status code that means that the request you sent to the … Read more

Asterisk and Speech Recognition

asterisk

Asterisk and Speech Recognition Before we dive into Asterisk, we need to select a speech engine. There are two main types of speech engines: Text-to-Speech (TTS) Automatic Speech Recognition (ASR). Generally speaking, your choices for TTS engines are more plentiful. There are more vendors in the TTS market and they cover more languages. ASR vendors and … Read more

Chess Game program in C language

Chess Game program in C language

Chess Game program in C language   #include<stdio.h> #include<conio.h> #include<graphics.h> void blk(int,int); void display(); //enum bool{TRUE,FALSE}; /*void main() //MAIN FUNCTION { display(); getch(); } */ void display() //DISPLAY TO SHOW THE BOARD { int gd=DETECT,gm,i,j,l,m,b; char pattern[]={0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}; int arrodd[32][2]={ {0,0},{100,0},{200,0},{300,0},{50,50},{150,50} ,{250,50},{350,50},{0,100},{100,100},{200,100},{300,100} ,{50,150},{150,150},{250,150},{350,150},{0,200},{100,200} ,{200,200},{300,200},{50,250},{150,250},{250,250},{350,250}, {0,300},{100,300},{200,300},{300,300},{50,350},{150,350}, {250,350},{350,350} }; int arrevn[33][2]={{50,0},{150,0},{250,0},{350,0},{0,50},{100,50},{200,50}, {300,50},{50,100},{150,100},{250,100},{350,100},{0,150}, {100,150},{200,150},{300,150},{50,200},{150,200},{250,200}, {350,200},{0,250},{100,250},{200,250},{300,250},{50,300}, {150,300},{250,300},{350,300},{0,350},{100,350},{200,350}, {300,350}}; clrscr(); initgraph(&gd,&gm,””); … Read more

RANGE Partitioning in MySQL

mysql-range partition

RANGE Partitioning in MySQL What is Partitioning? Partitioning is a way in which a database (MySQL in this case) splits its actual data down into separate tables, but still get treated as a single table by the SQL layer. When partitioning, it’s a good idea to find a natural partition key. You want to ensure … Read more

Tetris Game in C : Game program in C

tetris game in c

Tetris Game in C : Game program in C Let us see the Tetris Game in C #include <graphics.h> #include <stdlib.h> #include <stdio.h> #include <dos.h> #include <conio.h> void swap(int a,int b);void bar1();void bar2(); void bar3(); void bar4(); check0(); check1(); check2(); void del(); void rod1(); void rod2(); void box1();void box2();void tee1();voidtee2(); void tee3();void tee4();check3();void insert(); void … Read more

Data Cleaning : Data Science Skill Portfolio

data scientist

Data Cleaning : Data Science Skill Portfolio Data cleansing is the process of altering data in a given storage resource to make sure that it is accurate and correct. There are many ways to pursue data cleansing in various software and data storage architectures; most of them center on the careful review of data sets … Read more

Essential skills and traits of elite data scientists

data scientist

Essential skills and traits of elite data scientists These days the data scientist is king. But extracting true business value from data requires a unique combination of technical skills, mathematical know-how, storytelling, and intuition. Data scientists continue to be in high demand, with companies in virtually every industry looking to get the most value from … Read more

MongoDB releases mobile specific version of its NoSQL database

nosql

MongoDB releases mobile specific version of its NoSQL database Database specialist MongoDB has made a range of announcements this week during MongoDB World – which is back in New York for its first year as a publicly listed company – including a new mobile version of its core database and the addition of ‘global clusters’ … Read more

Google Doodle : 1st july Gottfried Wilhelm Leibniz’s 372nd Birthday

Google Doodle Celebrates Gottfried Wilhelm Leibniz 372nd Birthday

Google Doodle : 1st july Gottfried Wilhelm Leibniz’s 372nd Birthday Google today celebrates the 372nd birthday of German philosopher and mathematician’s Gottfried Wilhelm Leibniz with a doodle. He was born on July 1, 1646, Leipzig, then Roman Empire (now in Saxony, Germany). His contributions to a vast array of subjects have been scattered across various … Read more