Quantcast
Channel: Developer Feed - Web Developer
Browsing all 39 articles
Browse latest View live

How to get video id from a Youtube url in Javascript?

Snippete.g. if the youtube, video url is:http://www.youtube.com/watch?v=xptDCPlSSfI& The snippet will return xptDCPlSSfI var url = "http://www.youtube.com/watch?v=xptDCPlSSfI"; var video_id =...

View Article



How to configure PhpMyAdmin in Apache WebServer?

A typical configuration of PhpMyAdmin as configured in apache.conf looks like.# phpMyAdmin default Apache configurationAlias /phpmyadmin /usr/share/phpmyadmin<Directory /usr/share/phpmyadmin>...

View Article

How to embed Youtube Video using from flashvars using HDFlvPlayer?

SnippetThe following snippet shows the HDFlashPlayer embeding a YouTube video into HTML using the FlashVars. It assumes the the flash player is located in hdflvplayer/hdplayer.swf relative to the page...

View Article

What is YUI Library?

<!--?xml version="1.0" encoding="UTF-8"?-->The YUI Library is a set of utilities and controls, written with JavaScript and CSS, for building richly interactive web applications using techniques...

View Article

SELinux does not allow Apache to use Sendmail

SELinux is activated and configured by default. As such  SELinux does not allow Apache (httpd,phpmailer) to use the sendmail function and make any sort of network connection.Using the getsebool command...

View Article


Image may be NSFW.
Clik here to view.

What are the various HTML Entities?

HTML EntitiesHTML has some special reserved characters e.g. < , > etc. that have special meaning and thus cannot be used freely in the document. But what if we have to display an > or < in...

View Article

Image may be NSFW.
Clik here to view.

How to create a shortcut to Export images in Pixelmator?

Pixelmator is a great Photo Editing tool for Mac. However of the important function like Exporting the image to PNG, JPEG etc. is not accessible via a shortcode. This is required specially when you one...

View Article

[Errno 13] Permission denied: when installing CherryPy Python Framework

Common Issuemymac:CherryPy-3.2.2 mvohra$ python setup.py installrunning installerror: can't create or remove files in install directoryThe following error occurred while trying to add or remove files...

View Article


What are Micro Frameworks for Python Web Development?

What are Micro Frameworks? • Minimalist approach that helps to python websites • Examples – Bottle.py, Flask, Cherry Python, many others • Maps URL routes to Python function calls: –Request Routing...

View Article


How to check the version of MySQL database using Python?

#!/usr/bin/python# -*- coding: utf-8 -*- import MySQLdb as mdbimport sys con = None try:     con = mdb.connect('localhost','username',        'password','dbname');     cur = con.cursor()...

View Article

Image may be NSFW.
Clik here to view.

Thread Dump in JSP

<%@ page language="java" import="java.util.*,java.lang.Thread.State" contentType="text/html; charset=ISO-8859-1"    pageEncoding="ISO-8859-1"%><html><head><meta...

View Article

Image may be NSFW.
Clik here to view.

Coolest Things in HTML5

HTML (hypertext markup language) is very used markup language for the building the web pages. Currently we are using version 4.x of this great language. HTML 5 is the next revision of the HTML language...

View Article

Image may be NSFW.
Clik here to view.

Setup URL Redirection in Apache

Let's say you have changed the location of one page to another. Since the url for the page has changed, when some other tries to reach that page via Search Engine or a Bookmark, they would get a HTTP...

View Article


Image may be NSFW.
Clik here to view.

How to proxy static content via Apache Server?

Basically the content in a website can be categorized into to categories:Dynamic content - generated by using of Web Sever/Application Server runing JSP, Servlets etc. This content is dynamically...

View Article

Image may be NSFW.
Clik here to view.

Apache Server Guide

This guide provides a collection of articles related to Apache Web Server.

View Article


Image may be NSFW.
Clik here to view.

What are the advantages of Spring MVC over Struts(Original)?

When we talk about MVC frameworks Struts(original and not  Struts2) is the first framework that comes to mind, not only its because has been the pioneers in this space, but its one of best frameworks...

View Article

Image may be NSFW.
Clik here to view.

Before you begin creating a website

So before you begin to create a site, let review what down the road. Please review the following topics. How to Create Website

View Article


Image may be NSFW.
Clik here to view.

Basic skills needed to create a Website

Basically I assume the following about you skills and resources at you disposal to get started.<!--break--> Minimum You have a basic knowledge of computers.Have a good knowledge of written...

View Article

Image may be NSFW.
Clik here to view.

Webmaster's evaluate your technical skills

Lets see where you stand here.How much technical know how do you have? Classify your self.Low - Just know basic computer, MS Word etc.Medium - Know HTML, CSS, Photo Editing, Blogs etc.High - Know...

View Article

Image may be NSFW.
Clik here to view.

How to retreive web page contents using Ruby?

This script retrieves the content of url and dumps it to the output .Example copy this script into file named : get_page.rb#!/usr/bin/rubyrequire 'net/http'host,port,url = ARGV http =...

View Article
Browsing all 39 articles
Browse latest View live


Latest Images