9lessons:Custom Audio Player with Jquery Audio Controls Plugin

9lessons:Custom Audio Player with Jquery Audio Controls Plugin

Link to 9lessons Programming Blog

Custom Audio Player with Jquery Audio Controls Plugin

Posted: 20 May 2015 03:41 PM PDT

Introducing the new jquery AudioControls plugin for custom web HTML5 audio players, this helps you to make fastest audio player system for your web projects. This plugin actually works with HTML5 <audio> tag, create your own player design and just apply plugin data attributes to the HTML elements. First version supports basic audio controls, we are going to improve this in future Thanks!

Custom Audio Player with Jquery Audio Controls Plugin

Read more »


Post a Comment

9lessons:7 Examples of Great Minimal Design with Webydo

9lessons:7 Examples of Great Minimal Design with Webydo

Link to 9lessons Programming Blog

7 Examples of Great Minimal Design with Webydo

Posted: 29 Apr 2015 07:31 AM PDT

As the young web took off so many years ago, the rush to fill digital pages with all manner of cool widgets and effects proved too tempting. We wound up with a busy, cluttered internet full of superfluous content. Remember those days? Fortunately, modern trends in web design have gone down a much more utilitarian path while still promoting compelling design.
Read more »


Post a Comment

9lessons:Google Charts with Jquery Ajax

9lessons:Google Charts with Jquery Ajax

Link to 9lessons Programming Blog

Google Charts with Jquery Ajax

Posted: 26 Apr 2015 09:05 PM PDT

If you are working for analytics project, you need a rich chart system to display big data results. Google is providing us a powerful chart tools that you can implement charts very simple, this tutorial will explain you how to implement Google charts with Jquery ajax JSON data. Try out there are many free interactive charts and data tools, take a quick look at this live demo.

Audio Recording with Custom Audio Player using Jquery and HTML5

Read more »


Post a Comment

C Programming

C Programming


Print Rectangle Pattern Program In C

Posted: 18 Apr 2015 06:15 AM PDT

Q. Print the rectangle pattern program in C as following design:

  1111111
  1222221
  1233321
  1234321
  1233321
  1222221
  1111111

Ans.

  1111111
  1222221
  1233321
  1234321
  1233321
  1222221
  1111111

Tips/Tricks:  Each color group represent a loop in rectangle pattern program as the below                              source code written.

/* source code for print the rectangle pattern program*/

#include<stdio.h>
int main()
{

 int num=4,r,c,m,n,p,q=6;
 for(r=1; r<=num; r++,q=q-2)
 {
    for(c=1; c<=r; c++)
        printf("%d", c);
    for(p=q; p>=1; p--)
       printf("%d", r);
    for(c=r-1; c>=1; c--)
        printf("%d", c);
    printf("\n");
 }
 for(r=3,m=1; r>=1; r--,m=m+2)
 {
    for(c=1; c<=r; c++)
        printf("%d", c);
    for(n=m; n>=1; n--)
        printf("%d", r);
    for(c=r; c>=1; c--)
        printf("%d", c);
    printf("\n");
 }
 getch();
 return 0;
}

/**********************************************************
The output of above program would be:
***********************************************************/

Output of Print Rectangle Pattern Program In C
Figure: Screen shot for Print Rectangle Pattern Program In C

You might also like:

  1. Big list of 98+ C Pattern Programs
  2. Latest Pattern Program list asked by user


Post a Comment

9lessons:Audio Recording with Custom Audio Player using Jquery and HTML5

9lessons:Audio Recording with Custom Audio Player using Jquery and HTML5

Link to 9lessons Programming Blog

Audio Recording with Custom Audio Player using Jquery and HTML5

Posted: 18 Mar 2015 12:28 PM PDT

Few days back one of my friend sent me an audio message in Facebook messenger, the moment I was realized that I haven't covered this audio recording system on 9lessons.info. Today I want to discuss how to publish a voice recording messages on newsfeed using Jquery and HTML5 with custom HTML5 audio player. Take a quick look at the live demo, make sure use the microphone for better result.

Audio Recording with Custom Audio Player using Jquery and HTML5

Read more »

Elegant Themes Bloom Upcoming Email OptIn Wordpress Plugin.

Posted: 18 Mar 2015 12:18 PM PDT

Are you using Wordpress for blog, there is an update for you? Elegantthemes.com is releasing a new email opt-in(sent emails to many people at the same time) plugin called Bloom. Every blog is required a perfect email subscription system, that plays the most important role for generating direct traffic. Using Bloom you can create different types of Opt-In(subscription) forms like popup, flyin and etc. and that can integrate with email API service providers like Aweber, MailChimp and etc. just take a quick look at these features.

Elegant Themes Bloom Upcoming Email OptIn Wordpress Plugin.

Read more »


Post a Comment

C Programming

C Programming


Floyd Algorithm Character Pattern In C

Posted: 05 Mar 2015 12:28 AM PST

Q. WAP (Write A Program) to making the floyd algorithm character pattern in C as:

  A
  BC
  DEF
  GHIJ
  KLMNO

Ans.

/*c program for floyd algorithm character pattern*/
#include<stdio.h>
int main()
{

 int n=5,x='A';
 char r,c;
 for(r='A'; n>=1; r++, n--)
 {
   for(c='A'; c<=r; c++, x++)
       printf("%c", x);
   printf("\n");
 }
 getch();
 return 0;
}

/************************************************************
The output of above program would be:
*************************************************************/

Output of Floyd Algorithm Character Pattern In C
Figure: Screen shot for Floyd Algorithm Character Pattern In C


Your might also like:

  1. Floyd Algorithm Number Pattern In C
  2. Big List of 98+ C Pyramid Programs
  3. Latest Pyramid Programs list asked by user


Post a Comment

9lessons:Working with Chrome Developer Tools.

9lessons:Working with Chrome Developer Tools.

Link to 9lessons Programming Blog

Working with Chrome Developer Tools.

Posted: 03 Mar 2015 07:53 PM PST

Nowadays it's hard for Front end designers to develop and test the applications. They need to design the screens, make changes in the source code and deploy the changes each and every time. Here we learn are going to discuss about how to debug web application, analyze the performance of it and making it as responsive by using the Chrome Dev Tools. Which is helpful for the Developers to minimize their work and give the deep knowledge about their web applications.

Working with Chrome Developer Tools.


Read more »


Post a Comment

C Programming

C Programming


How To Make Half Rhombus Shape Number Triangle

Posted: 03 Mar 2015 08:57 AM PST

Q. How to make half rhombus number triangle as:

  5
  456
  34567
  2345678
  123456789
  2345678
  34567
  456
  5

Ans.

/*c program for half rhombus number triangle*/
#include<stdio.h>
int main()
{
 int r,c,j,num,n;
 printf("Enter Any Number : ");
 scanf("%d", &num);

 n=num;
 for(r=1; r<=num; r++,n--)
 {
   for(c=n; c<=num; c++)
       printf("%d", c);
   for(c=r, j=num+1; c>1; c--, j++)
       printf("%d", j);
   printf("\n");
 }
 for(r=2; r<=num; r++)
 {
   for(c=r; c<=num; c++)
       printf("%d", c);
   for(c=num-r, j=num+1; c>=1; c--, j++)
       printf("%d", j);
   printf("\n");
 }
 getch();
 return 0;
}

/********************************************************
The output of above program would be:
********************************************************/

Output of How To Make Half Rhombus Shape Number Triangle C program
Figure: Screen shot for How To Make Half Rhombus Shape
Number Triangle C program



You might also like:

  1. Big List of 98+ C Pyramid Programs
  2. Latest Pyramid Programs List Asked By User


Post a Comment

C Programming

C Programming


How to make continuous number pyramid with Zero

Posted: 17 Feb 2015 08:46 AM PST

Q. Write a C program to make a continuous number pyramid with adding digit "Zero" as:

  1
  02
  003
  0004
  00005
  000006
  0000007
  00000008
  000000009

Ans.

/*c program for making a continuous number pyramid*/
#include<stdio.h>
int main()
{
 int r,c;

 printf("1\n");
 for(r=2; r<=9; r++)
 {
   for(c=1; c<=r; c++)
   {
      if(c==r)
         printf("%d",r);
      else
         printf("0");
   }
   printf("\n");
 }
 getch();
 return 0;
}

/***********************************************************
The output of above program would be:
***********************************************************/

Output of How to make continuous number pyramid  with Zero C Program
Figure: Screenshot for How to make continuous number pyramid
 with Zero C Program


You might also like:

  1. Big list of 98+ C Pyramid programs
  2. Latest pyramid programs list asked by user



Post a Comment

9lessons:Facebook Style Background Image Upload and Position Adjustment.

9lessons:Facebook Style Background Image Upload and Position Adjustment.

Link to 9lessons Programming Blog

Facebook Style Background Image Upload and Position Adjustment.

Posted: 16 Feb 2015 11:47 AM PST

I received many tutorial requests from my readers that asked to me how to design Facebook style ajax background image upload and position adjustment using Jquery. I have been published many tutorials about ajax image upload, this one is very interesting and it is a combination of many features. I has implemented this in Wall Script, this post will explain you how to design timeline HTML frame, CSS techniques and database design for background image system.

Facebook Style Background Image Upload and Position Adjustment.

Read more »


Post a Comment