Showing posts with label web. Show all posts
Showing posts with label web. Show all posts
Saturday, February 9, 2013
Web Design Principles
There are four principles that help create basic best designs. Also known how that CRAP stands for Contrast , Repetition, Alignment and Proximity . The definitions of these principles :
01. Contrast : Items that are not the same, must be different, making them slightly different only lead to confusion among them unconsciously relate. Contrasting sharply items, get the user moves from one element to another correctly until the end of the page, thus avoiding a sea of similarity being very boring.
02. Repeat : Repeat the style of your site for all of it, creating consistency. If elements relate in a certain way in one area, this trend repeated in other areas.
03. Alignment : Everything on the page needs to be visually connected to something else, nothing should be out of place or different for all other design elements.
04. Proximity : The proximity creates a relationship of meaning, related items should be grouped, and between different elements should have enough space between them so that they appreciate that distinction.
Friday, February 1, 2013
Tips for making a great Podcasting
I'm planning to do soon a podcast and for this I first started researching everything about the podcast to try to make the best quality, although I have no experience with this I managed to find good ideas , if anyone has other ideas I share them.
- Podcasts should be short s, one of 30 minutes is too long unless it is of excellent quality, life is too short and requires much attention. Manténtu podcast short, about 15 minutes or 20 at most.
- Do not take it so seriously . A podcast where we talk more informally is more successful than boring formal podcast.
- Musical voice. This point may be the same as the # 2, but the best podcasts are entertaining and if your voice is not always the same music or sounds likely to go to sleep more than one.
- You must be concise. visit short segments, each segment between sound adds a cap may be music, a sound effect, musical effect with your voice, etc..
- Being organized. This should seem obvious, but some podcasters take up to 45 minutes to answer a question in aninterview . If you're interviewing someone, prepare questions before and send them to your subject in order to be consistent, but if you're not interviewing anyone prepare your dialog, make a líneade time with issues or points that are going to try and muévetecoherentemente between them.
- Talking fast. Generally the mind works faster than your mouth so try to make your podcast rápidamentepero also understandable.
- Be regular. Whether your podcast comes out every three months or every week, what matters is the quality but if you are having each week do not stop for more than two weeks because people heard you may no longer return you to listen.
- Getting decent audio! Imagine listening to a podcast with a poor sound quality and loud screams could cause you a headache or hurt your ears so that's good to invest in a good recording equipment (a good microphone.
- Get a partner. alguiencon If you can get micrófonoademás who share the experience will help you to be strong.
- That that partner is of the opposite sex is not mandatory but the best podcast that has heard a man and a woman.
- Take notes show the talk. mencionaralgo If you you have sounds good demonstration of what you're mentioning this helps to give depth to the subject.
- Stop talking to your interviewee. That does not mean you feel and let him talk about what he pleases paste.Proporciónalelas questions but the more time you spend with micrófonoluciendote, must be the facilitadorprincipal help theinterview in its field.
- Be more creative. There are many issues to deal with, not try issues that everyone speaks, it needs something fresh.
- Try to be natural. Ponto is a very obvious but not performed Do not be lazy and stupid, but not stuffy.
- Do not be afraid. If you get someone to do a great interview and only write like this article, you will get an interviewmediocre, what to do because a podcast is a podcast requires more attention has more depth, do not miss the opportunity .
- Corrects notes. If you take note of other audio programs or documentaries because you do not have to say as it is, if you can edit, add or drop would be much better, a little work in production will result in an excellent podcast.
- Use it music. really softened Music Podcast. I do not mean an MP3 of your favorite songs, but as an intro, a little background as transition material, music can really polish things, you can download licensed music creative commons inwww.jamedo.com / mx
- Verbally identifies your podcast. At the beginning of your podcast. mentioned date, issue number, issue / guest, etc..This is necessary to give context because someone can hear out of sequence or even years or decades later. Takes a couple of seconds in the beginning.
- Add links. If you have your podcast in iTunes or Odeo links placed in an appropriate place on your website or blog to make it easier for the user to subscribe.
- If you have something important to say, say it. although it does not guarantee you have a good podcast, but if you have great content some omissions from the list of ideas are tolerables.Cómo conclusion, make a buenpodcast not easy, requires equipment, production, planning and good feedback. These things take time, effort and money.
Some podcasters who achieved this:
- Cadena Ser
- PinPodcast
- Delta Park Project (English)
- Church of the Customer (English)
- American Copywriter (English)
What is 301 redirect? and how to make it
In going from one location on our website page Web access to it from other pages that link to get lost besides those who visit us from a search engine like Google will not find the page.
What we have to do is try to set up the page so that when the search engine robot know that the page has changed location permanently, for this we will use the 301 redirect, it should be noted that this state passes values PageRank for Google and the number of pages that link.
The 301 redirect is a state of the protocol standards HTTP , here are some ways to do it.
301 redirect with PHP
The redirect page we will replace it with a PHP file with the following code:
<? Php
header ("HTTP/1.1 301 Moved Permanently");
header ("location: http://www.neoideas.com.mx");
?>
It is important that this code is to the beginning of the php file (the first line).
301 redirect with ASP
The redirect page we will replace it with an ASP file with the following code:
<%
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "http://www.url-de-la-nueva-direccion.com"
%>
301 redirect with ASP.NET
The redirect page we will replace it with an ASP file with the following code:
private void Page_Load (object sender, System.EventArgs e)
{
Response.Status = "Moved Permanently";
Response.AddHeader ("Location, http://www.url-nueva.com");
}
301 redirect with ColdFusion
The page that we will redirect ColdFusion replaced by a file with the following code:
<. Cfheader statuscode = "301" statusText = "Moved permanently">
<. Cfheader name = "Location" value = "http://www.url-de-la-nueva-direccion.com">
301 redirect with Apache
You create a. Htaccess (if not, if you edit the current one) in your root directory and add the following line:
Redirect 301 / http://www.url-de-la-nueva-direccion.com
Redireción 301 on an IIS server
We need to configure the server by entering the Internet Services Manager as follows:
- Select the "redirection to a URL"
- Enter the page that will redirect
- Check the URL introduced as "a permanent redirection for this resource"
- Click "Apply"
301 redirect from an HTML
This type of redirection is not possible, it is necessary for any of the above methods or access server configuration.
Note that in all these forms of redirection http://www.url-de-la-nueva-direccion.com need to change the new URL.
Subscribe to:
Posts (Atom)