Showing posts with label Web. Show all posts
Showing posts with label Web. Show all posts

Tuesday, February 2, 2016

Configurações dos servidores POP, IMAP e SMTP dos principais FAI

AOL

  • Servidor POP: pop.aol.com (Porta 110)
  • Servidor SMTP: smtp.ol.com
  • Servidor IMAP: imap.aol.com

BOL

  • Servidor POP: pop3.bol.com.br Porta 995 (SSL apenas)
  • Servidor SMTP: smtps.bol.com.br Porta 587 (STARTTLS) ou 465 (SSL)
  • Servidor IMAP: nenhuma imap.bol.com.br

ALTERN.ORG

  • Servidor POP: pop.altern.org ou altern.org
  • Servidor SMTP: não
  • Servidor IMAP: imap.altern.org (a ser modificado)

CARAMAIL

  • Servidor POP: pop.lycos.co.uk
  • Servidor SMTP: smtp.lycos.co.uk
  • Servidor IMAP: não

ESTVIDEO COMMUNICATION

  • Servidor POP: pop.evhr.net
  • Servidor SMTP: smtp.evhr.net

GAWAB

  • Servidor POP: pop.gawab.com
  • Servidor SMTP: smtp.gawab.com
  • Servidor IMAP: imap.gawab.com

GMAIL


HOTMAIL


Opera Mail (mail.opera.com)

  • Servidor IMAP: imap.myopera.com Porta 993 (SSL apenas)
  • Servidor SMTP: smtp.myopera.com Porta 587 (STARTTLS) ou 465 (SSL)

NERIM

  • Servidor POP: pop.nerim.net
  • Servidor SMTP: smtp.nerim.net

SYMPATICO

  • Servidor POP: pop1.sympatico.ca
  • Servidor SMTP: smtp1.sympatico.ca
  • Servidor IMAP: não

Yahoo

  • Servidor POP: pop.mail.yahoo.com.br (sobre a ativação da opção POP3 do Yahoo) Porta 995com conexão SSL
  • Servidor SMTP: smtp.mail.yahoo.com.br Porta 465 com conexão SSL
  • Servidor IMAP: imap.mail.yahoo.com (é preciso utilizar SSL com a Porta 993)
  • Página de configuração detalhada (em inglês).

BRTurbo

  • Servidor POP: pop.brturbo.com.br Porta 995 (SSL apenas)
  • Servidor SMTP: smtp.brturbo.com.br Porta 587 (STARTTLS) ou 465 (SSL)
  • Servidor IMAP: nenhuma imap.brturbo.com.br

Click21

  • Servidor POP: pop.click21.com.br
  • Servidor SMTP: smtp.click21.com.br
  • Servidor IMAP: nenhuma imap.click21.com.br

GLOBO

  • Servidor POP: pop3.globo.com
  • Servidor SMTP: smtp.globo.com
  • Servidor IMAP: nenhuma imap.globo.com

iBest

  • Servidor POP: pop.ibest.com.br Porta 995 (SSL apenas)
  • Servidor SMTP: smtp.ibest.com.br Porta 587 (STARTTLS) ou 465 (SSL)
  • Servidor IMAP: pop.ibest.com.br Porta 993 (SSL apenas)

IG

  • Servidor POP: pop.ig.com.br (Porta 995)
  • Servidor SMTP: smtp.ig.com.br (Porta 587 ou 465)
  • Servidor IMAP: nenhuma map.ig.com.br

Terra

  • Servidor POP: pop.terra.com.br
  • Servidor SMTP: smtp.terra.com.br
  • Servidor IMAP: nenhuma imap.terra.com.br

UOL

  • Servidor POP: pop3.uol.com.br (Porta 995)
  • Servidor SMTP: smtps.uol.com.br (Portas 587 ou 465)
  • Servidor IMAP: imap.uol.com.br (Porta 993)

Fonte: http://br.ccm.net/faq/844-configuracoes-dos-servidores-pop-imap-e-smtp-dos-principais-fai

Saturday, August 9, 2014

Django para iniciantes - Comandos 1 / OSX 10.9

Instalando :
pip é um sistema de gerenciamento de pacotes usado para instalar e gerenciar pacotes de software escritos nalinguagem de programação Python. Muitos pacotes podem ser encontrados no Python Package Index (PyPI).
Virtualenv é uma ferramenta que permite que criemos, ambientes virtuais isolados para projetos Python. 


sh-3.2# easy_install pip virtualenv

MacBook-de-Andre:Projects_Web alds$ mkdir Projects_Web
MacBook-de-Andre:Projects_Web alds$ cd Projects_Web/
MacBook-de-Andre:Projects_Web alds$ mkdir venvs

Criar os ambientes virtuais para projetos Python
MacBook-de-Andre:Projects_Web alds$ virtualenv --system-site-packages venvs/django-1.4
New python executable in venvs/django-1.4/bin/python
Installing setuptools, pip...done.
MacBook-de-Andre:Projects_Web alds$

Ativando projeto
MacBook-de-Andre:Projects_Web alds$ source venvs/django-1.4/bin/activate
(django-1.4)MacBook-de-Andre:Projects_Web alds$

Instalando pacote dentro do projeto
(django-1.4)MacBook-de-Andre:Projects_Web alds$ pip install django
Downloading/unpacking django
  Downloading Django-1.6.5-py2.py3-none-any.whl (6.7MB): 6.7MB downloaded
Installing collected packages: django
Successfully installed django
Cleaning up...

Verificando versão do 
Python
(django-1.4)MacBook-de-Andre:Projects_Web alds$ python
Python 2.7.5 (default, Mar  9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(1, 6, 5, 'final', 0)
>>>

ROTEIRO

django-admin.py
django-admin.py startproject cursodjango
python manage.py runserver

Iniciando Projeto Web

(django-1.4)MacBook-de-Andre:Projects_Web alds$ mkdir sites
(django-1.4)MacBook-de-Andre:Projects_Web alds$ cd sites/
(django-1.4)MacBook-de-Andre:sites alds$ pwd
/Volumes/STORAGE/Projects_Web/sites
(django-1.4)MacBook-de-Andre:sites alds$ django-admin.py startproject cursodjango
(django-1.4)MacBook-de-Andre:sites alds$


(django-1.4)MacBook-de-Andre:sites alds$ pwd
/Volumes/STORAGE/Projects_Web/sites
(django-1.4)MacBook-de-Andre:sites alds$ ls
cursodjango
(django-1.4)MacBook-de-Andre:sites alds$ cd cursodjango/
(django-1.4)MacBook-de-Andre:cursodjango alds$ ll
total 8
drwxr-xr-x  6 alds  admin   204B  9 Ago 12:27 cursodjango
-rwxr-xr-x  1 alds  admin   254B  9 Ago 12:27 manage.py
(django-1.4)MacBook-de-Andre:cursodjango alds$

Iniciando Server Web
(django-1.4)MacBook-de-Andre:cursodjango alds$ python manage.py runserver
Validating models...

0 errors found
August 09, 2014 - 15:54:56
Django version 1.6.5, using settings 'cursodjango.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.


Fonte : 
http://allissonazevedo.com
https://www.youtube.com/watch?v=ZJKNbgq_lhg&list=PLfkVgm8720kzm6fmTekjtKyFcppyD4Ubd

Monday, September 10, 2012

Perl - [ Create INDEX.HTML ]

 #!/usr/bin/perl
use strict;
use warnings;

&Usage if $#ARGV<0;

my $REGEX = shift;

print "
<html>
    <head>
        <title></title>
        </head>
        <body>
                <center><h1></h1></center>

                                                        ";
foreach my $file (glob ("*.html")){

        my $text = $file;
        $text =~ s/\.$REGEX.*//g;

        print "\t\t<a href=\"$file\">$text</a><br/>\n";
}
print "
        </body>

</html>

";

sub Usage(){

    print "\nUsage: perl CreatePageIndex.pl fastq > index.html\n";
        exit(1);
}

----------------------------------------------------------------------------------------------------

-bash-4.0$ ll
total 2356
-rw-r--r-- 1 andre users 326585 2012-09-10 10:57 Phix.sort.bam.html.html
-rw-r--r-- 1 andre users 350366 2012-09-10 10:57 polipo11p.sort.bam.html.html
-rw-r--r-- 1 andre users 336857 2012-09-10 10:57 polipo17p.sort.bam.html.html
-rw-r--r-- 1 andre users 345978 2012-09-10 10:57 polipo45p.sort.bam.html.html
-rw-r--r-- 1 andre users 342493 2012-09-10 10:57 tumor11t.sort.bam.html.html
-rw-r--r-- 1 andre users 344666 2012-09-10 10:57 tumor17t.sort.bam.html.html
-rw-r--r-- 1 andre users 351703 2012-09-10 10:57 tumor45t.sort.bam.html.html
-bash-4.0$perl CreatePageIndex.pl

Usage: perl CreatePageIndex.pl fastq > index.html

-bash-4.0$ perl CreatePageIndex.pl sort

<html>
    <head>
        <title></title>
        </head>
        <body>
                <center><h1></h1></center>

                                                                        <a href="Phix.sort.bam.html.html">Phix</a><br/>
                <a href="polipo11p.sort.bam.html.html">polipo11p</a><br/>
                <a href="polipo17p.sort.bam.html.html">polipo17p</a><br/>
                <a href="polipo45p.sort.bam.html.html">polipo45p</a><br/>
                <a href="tumor11t.sort.bam.html.html">tumor11t</a><br/>
                <a href="tumor17t.sort.bam.html.html">tumor17t</a><br/>
                <a href="tumor45t.sort.bam.html.html">tumor45t</a><br/>

        </body>

</html>

Sunday, May 13, 2012

HTML BASIC TAG



TAG
<html></html>
Inicia/termina um documento em HTML.
<head></head>
Define a àrea de cabeçalho, com elementos não visualisáveis na página.
<body></body>
Define a área visível do documento.
CABEÇALHO
<title></title>
Coloca o nome da página na barra de título da janela.
ATRIBUTOS DO CORPO
<body bgcolor=?>
Cor de fundo.
<body text=?>
Cor de texto.
<body link=?>
Cor das links.
<body vlink=?>
Cor das links previamente visitadas.
<body alink=?>
Cor da link activa.
TEXTO
<b></b>
Texto carregado.
<i></i>
Texto em itálico.
<tt></tt>
Texto estilo máquina de escrever, monoespaçamento.
<font size=?></font>
Tamanho das letras.
<font color=?></font>
Cor das letras.
<font face=?></font>
Define a fonte utilizada.
LINKS
<a href="URL"></a>
Cria uma hiperligação.
<a href="mailto:EMAIL"></a>
Cria uma link para o envio de correio.
<a name="NOME"></a>
Cria um 'alvo' dentro de uma página.
<a href="#NAME"></a>
Faz a ligação a um 'alvo' presente dentro da mesma página.
FORMATAÇÃO
<p></p>
Define a área de um parágrafo.
<p align=?>
Alinhamento de um parágrafo.
<br>
Insere uma quebra de linha.
<div align=?>
'Tag' genérico utilizado para formatar blocos de texto.
GRAFISMO
<img src="FICHEIRO">
Insere uma imagem.
<img src="FICHEIRO" align=?>
Alinha uma imagem em relação ao resto do texto.
<img src="FICHEIRO" border=?>
Define a borda da imagem.
<hr>
Insere uma linha horizontal.
TABELAS
<table></table>
Cria uma tabela.
<tr></tr>
Linha de uma tabela
<td></td>
Célula individual numa linha.
ATRIBUTOS DAS TABELAS
<table border=#>
Borda à volta de cada célula.
<table cellspacing=#>
Espaço entre as células.
<table cellpadding=#>
Margem interior das células.
<table width=# or %>
Largura da tabela - em pixels ou percentagem.
<tr align=?> or <td align=?>
Alinhamento horizontal do conteúdo das células.quot;left", "center" ou "right")
<tr valign=?> or <td valign=?>
Alinhamento vertical do conteúdo das células.("top", "middle" ou "bottom")
<td colspan=#>
Numero de colunas 'percorridas' por uma célula.
<td rowspan=#>
Numero de linhas 'percorridas' por uma célula.
FRAMES
<frameset></frameset>
Define o conjunto de frames. Surge antes de <body> num documento com frames.
<frameset rows="valor,valor">
Define as linhas num conjunto de frames. Valor pode ser em pixels, percentagem ou * (o resto / proporção).
<frameset cols="valor,valor">
Define as colunas num conjunto de frames. Valor pode ser em pixels, percentagem ou * (o resto / proporção).
<frame>
Define uma unica frame. Surge dentro de <frameset>.
<noframes></noframes>
Área onde é inserido o conteúdo visivel em browsers que não suportam o uso de frames.
ATRIBUTOS DE UMA FRAME
<frame src="URL">
Especifica o documento HTML a ser exibido na frame.
<frame name="nome">
Dá um nome à frame de modo a poder ser 'linkada' a partir de outras frames.
<frame scrolling=VALOR>
Define se a frame tem barra de scroll. VALOR pode ser "yes", "no" ou "auto".
<frame noresize>
Impede o visitante de redimensionar a frame.



font : http://www.truquesedicas.com/tutoriais/html/00007a.htm

Sunday, May 6, 2012

Installing MySQL + Apache + PHP + phpMyAdmin | Linux - Like

$sudo su 

#apt-get update

#apt-get -f install mysql-server
Do you want to continue [Y/n]? Y

#apt-get -f install apache2
Do you want to continue [Y/n]? Y

#apt-get -f install php5
Do you want to continue [Y/n]? Y

#apt-get -f install php5-mysql
Do you want to continue [Y/n]? Y

#apt-get -f install phpmyadmin
Do you want to continue [Y/n]? Y

#cp -R usr/share/phpmyadmin/ /var/www/
#chown www-data.www-data /var/www/phpmyadmin

access : http://127.0.0.1
access : http://127.0.0.1/phpmyadmin

Attention. 
Read all instructions during installation.
NOTEsame password for all software.

Share this page.

Saturday, February 25, 2012

HTML - Tables

<html>
     <head>
         <title>Tables HTML</title>
     </head>

     <body>

        <table border = "1" width="60%">
            <tr>
                <td>Cell 1  HTML</td>
                <td>Cell 2  TABLES</td>
            </tr>
            <tr>
                <td>Cell 3  ANDRE L S</td>
                <td>Cell 4  COMMAND LINE</td>
            </tr>
        </table>
     </body>
</html>

will look like this in the browser:


Cell 1 HTML Cell 2 TABLES
Cell 3 ANDRE L S Cell 4 COMMAND LINE

HMTL - link / Attributes

<html>

     <head>
        <title> Attributes </title>
     </head>

     <body>

        <p style="background-color:#00688B;">Line Attributes</p>
        <p>Background-color</p>
        <body style="background-color:#6CA6CD;">
        <hr/>
        <p>Links</p>
        <a href="http://www.youtube.com/">Click here go to Youtube</a><br/>
        <a href="http://www.ufpa.br/dicas/htm/htm-cor2.htm">Click here go to Table Colors HTML</a><br/>

        <p><a href="#intro">Link to Introduction</a></p>
        <p><a href="#text">Link to Text</a></p>
        <hr/>

        <p>Images</p>
        <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1OHrugD5-ua5qNZ_zX2VUK2rvQkwT2MCljLLaSleFRvKCndU7PtbUIqHqXPXmpFAjHF-dEDN1sTLVeQdWpMrDgTL2xQL0NVBQ6y2IC2A39c2rZJO0xjkj_YvnO_X4lmINivmEOPPCQ4o/s1600/ciencia_da_computacao_c2.gif"/>
        <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1OHrugD5-ua5qNZ_zX2VUK2rvQkwT2MCljLLaSleFRvKCndU7PtbUIqHqXPXmpFAjHF-dEDN1sTLVeQdWpMrDgTL2xQL0NVBQ6y2IC2A39c2rZJO0xjkj_YvnO_X4lmINivmEOPPCQ4o/s1600/ciencia_da_computacao_c2.gif" width="250px" height="250px" />
        <p>Gifs</p>
        <img src="http://www.reinodosgifs.net/galeriadegifs/emoticons_msn/06.gif"/>
     
        <h1 id="intro">Introduction</h1>
        <p>Text text text text</p>

        <h1 id="text">Text</h1>
        <p>Text text text text</p>

    </body>

</html>

will look like this in the browser:


Line Attributes
Background-color

Links
Click here go to Youtube
Click here go to Table Colors HTML
Link to Introduction
Link to Text

Images

 Gifs

Introduction

Text text text text

Text

Text text text text

HTML - For beginners

Example.html 

<html>
     <head>
        <title> Tags </title>
     </head>
     <body>
         <p>Some Tags</p><hr/>
        <strong>Stronger emphasis.</strong><br/>
        <small>This should be in small.</small><br/>
        <p>used for paragraphs.</p>
        <em>Emphasis text.</em></br>
        <h1>Heading</h1>
        <h2>Subhead</h2>
        <h3>Sub-subhead</h3>
        <hr/>
     </body>
</html>

Will look like this in the browser:

Some Tags

Stronger emphasis.
This should be in small.

used for paragraphs.
Emphasis text.

Heading 

Subhead

Sub-subhead




For beginners - HTML / CSS

HTML
Tutorial 
http://www.html.net/tutorials/html/introduction.php


CSS
Definitions
http://linguistlist.org/audio-video/tutorials/Basic-CSS-tutorial.pdf
http://www.w3c.br/divulgacao/pdf/guia-css-w3cbr.pdf
http://www.w3c.br/pub/Cursos/CursoCSS3/css-web.pdf
http://www.pereiraaps.com/Apostilas/css.basico.pdf
http://pt.wikipedia.org/wiki/Cascading_Style_Sheets
Tutorial 
http://pt-br.html.net/tutorials/css/introduction.php