Archive for the ‘General’ Category

Want to start streaming videos? What about free space at Dropbox. Lets use it. Here is a quick guide which can help you achieve this:

1. Host/Save your Video over the Dropbox in the Public Folder

2. Get the public link

3. If you are using WordPress or any other CMS, simply use the Media file manager to add the file.

Here you go, how dropbox can help you do FREE Streaming of Videos icon smile Let Start Streaming Videos via Dropbox

 

General

Creating and using classes is not a big deal in terms of effort, but there are very simple cases where classes are not really needed. For instance if you have developed some code that is not meant to be used more than once and there is no chance that the names of any global functions and variables for different purposes collide, using classes is not necessary. But you never know   Read More ...

General

In simple terms Internet Bot is a software application that runs repeatedly to perform a task over the internet. Normally the task are for web spidering in which an automated script fetches, analyzes and files information from web servers at many times the speed of a human.

General

HipHop is a popular open source PHP transformer used by Facebook for speeding up the CPU performance. HipHop transforms your PHP source code into highly optimized C++ and then compiles it with g++ to build binary files. You keep coding in simpler PHP, then HipHop executes your source code in a semantically equivalent manner and sacrifices some rarely used features – such as eval() – in exchange for improved performance.   Read More ...

General

Using following snippet will let you have URLs like www.example.com/my-page, and still open your file.

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)$ $1.php

Same applies to the .html simply needs to replace .php with .html

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^([^/]+)$ $1.html

and your url will convert from example.com/about.html to example.com/about

Hope the above snippets help, if incase of any question you can leave behind as a comment. Thanks.


		
General htaccess

By Definition Emulate means: Match or surpass (a person or achievement), typically by imitation. In short “Make it Appear Over”. So if you want your IE9 to behave like IE7 and render the pages. Then you can do this via a simple line of code:

<meta http-equiv="X-UA-Compatible" 
content="IE=EmulateIE7" />
General

Suppose you want to perform an action via some button, an action is a click of a another anchor. In order to perform this case, here is what is needed to be done:

1. In your html, have a button and a link

<input id="btn" type="button" value="Click me">
<a id="actionanchor" href="myScript.php"
class="thickbox" title="">Link</a>

2. Using jQuery the following piece of code will help to perform an action of Click over an anchor when someone clicks the button.

<script type="text/javascript">
$(function(){
        $('#btn').click(function(){
                $('#actionanchor').click();
        });
});
</script>

Leave a comment if incase you face an issue. We will surely get you back.


		
General

It is a delays between an input being processed and the corresponding output providing real time characteristic which is unnoticeable by human eye.

General

Codeanywhere is a code editor in a browser with an integrated ftp client, and all popular web formats are supported (HTML, PHP, JavaScript, CSS, and XML).

Visit: Code Any Where for more information.

General

Add Tweets and Facebook posts to your Buffer from anywhere and we automagically share them for you through the day. Good for bloggers and scheduling post to submit to social media platforms. Buffer App

General