Framasoft es una asociación sin animo de lucro con el fin de proponer alternativas a Google y de liberarnos!
Degoogleizar
Tamaño de texto proporcional al ancho de la pantalla
The values are:
vw (% of the viewport width)
vh (% of the viewport height)
vi (1% of the viewport size in the direction of the root element’s inline axis)
vb (1% of the viewport size in the direction of the root element’s block axis)
vmin (the smaller of vw or vh)
vmax (the larger or vw or vh)
1 v* is equal to 1% of the initial containing block.
using it looks like this:
p {
font-size: 4vw;
}
As you can see, when the viewport width increases, so does the font-size, without needing to use media queries.
These values are a sizing unit, just like px or em, so they can be used to size other elements as well, such was width, margin, or padding.
Browser support is pretty good, but you’ll likely need a fallback, such as:
p {
font-size: 16px;
font-size: 4vw;
}
Internet Street Shopping
Nuevo marketplace de shopping alternativo con productos originales y de calidad.
El punto de este marketplace es de promocionar las marcas pocas conocidas con productos de calidad frente a los productos asiaticos y las marcas de multinacionales.
Login por redes sociales
http://www.janrain.com
Como juntar varios documentos excel en uno!
Update Excel 2016 Como juntar varios documentos excel 2017 en uno
Como juntar varios documentos de excel 2007 en uno
Si tienes muchos documentos excels con el mismo formato y quieres unirlos en un solo documento, sigue los siguientes pasos.
Esta junta se hace unicamente con las primeras hojas de cada documento.
- Pone todos los archivos excel que quieres juntar en un solo archivo.
- Luego cierras todos los exceles que tienes.
- Abre uno nuevo. Este sera el master, donde se juntaran todos los otros documentos.
- Abre el editor de Visual Basic con ALT + F11. Entonces aparecera un editor.
- Haz click sobre ThisWorkBook en el menu de la izquierda.
- Pega el siguiente codigo de macro en el editor
Sub simpleXlsMerger()
Dim bookList As Workbook
Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As Object
Application.ScreenUpdating = False
Set mergeObj = CreateObject("Scripting.FileSystemObject")
'change folder path of excel files here
Set dirObj = mergeObj.Getfolder("D:\change\to\excel\files\path\here")
Set filesObj = dirObj.Files
For Each everyObj In filesObj
Set bookList = Workbooks.Open(everyObj)
'change "A2" with cell reference of start point for every files here
'for example "B3:IV" to merge all files start from columns B and rows 3
'If you're files using more than IV column, change it to the latest column
'Also change "A" column on "A65536" to the same column as start point
Range("A2:IV" & Range("A65536").End(xlUp).Row).Copy
ThisWorkbook.Worksheets(1).Activate
'Do not change the following column. It's not the same column as above
Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial
Application.CutCopyMode = False
bookList.Close
Next
End Sub
Luego actualiza en el codígo la ruta de la carpeta donde estas los exceles que quieres juntar.
Tambien puedes cambiar si lo quieres la celda donde empezara la nueva hoja unificada.
Apreta el icono: play el codígo o apreta F5.
Ahora si vas al documento excel master, ya veras que lo tienes unificado.
Gracias a la web Da Ultimate por su tutorial fantastico:
http://www.oaultimate.com/office/merge-multiple-excel-files-into-a-single-spreadsheet-ms-excel-2007.html
Utilizar caracteres especiales en CSS con pseudo elementos after: y before:
Utilizar caracteres especiales en CSS con pseudo elementos after: y before:
Ejemplo: El simbolo © en html es ©. El numero ASCII es 169.
Puedes entonces convertir este número. Por ejemplo con el convertor ENTITY CONVERSION CALCULATOR, puedes hacer la conversión.
Por ejemplo con ®. El codígo html es ®
Podemos entonces crear una class para todas las palabras que requieren el simbolo register.
.reg:after {content:"\00ae";}
Se puede ir más alla con http://fontawesome.io
Mira: http://fontawesome.io/examples/
Special Characters
" | " | “ | quotation mark | u+0022 ISOnum | p:before { content:”\0022″; } | alert(“\42”) |
& | & | & | ampersand | u+0026 ISOnum | p:before { content:”\0026″; } | alert(“\46”) |
< | < | < | less-than sign | u+003C ISOnum | p:before { content:”\003c”; } | alert(“\74”); |
> | > | > | greater-than sign | u+003E ISOnum | p:before { content:”\003e”; } | alert(“\76”); |
Latin-1 entity set for HTML
Name | Numeric | Description | Hex | ISO in CSS content | Octal | |
---|---|---|---|---|---|---|
|   | no-break space | %A0 | p:before { content:”\00a0″; } | alert(“\240”); | |
¡ | ¡ | ¡ | inverted exclamation mark | %A1 | p:before { content:”\00a1″; } | alert(“\241”); |
¢ | ¢ | ¢ | cent sign | %A2 | p:before { content:”\00a2″; } | alert(“\242”); |
£ | £ | £ | pound sterling sign | %A3 | p:before { content:”\00a3″; } | alert(“\243”); |
¤ | ¤ | ¤ | general currency sign | %A4 | p:before { content:”\00a4″; } | alert(“\244”); |
¥ | ¥ | ¥ | yen sign | %A5 | p:before { content:”\00a5″; } | alert(“\245”); |
¦ | ¦ | ¦ | broken (vertical) bar | %A6 | p:before { content:”\00a6″; } | alert(“\246”); |
§ | § | § | section sign | %A7 | p:before { content:”\00a7″; } | alert(“\247”); |
¨ | ¨ | ¨ | umlaut (dieresis) | %A8 | p:before { content:”\00a8″; } | alert(“\250”); |
© | © | © | copyright sign | %A9 | p:before { content:”\00a9″; } | alert(“\251”); |
ª | ª | ª | ordinal indicator, feminine | %AA | p:before { content:”\00aa”; } | alert(“\252”); |
« | « | « | angle quotation mark, left | %AB | p:before { content:”\00ab”; } | alert(“\253”); |
¬ | ¬ | ¬ | not sign | %AC | p:before { content:”\00ac”; } | alert(“\254”); |
­ | | ­ | soft hyphen | %AD | p:before { content:”\00ad”; } | alert(“\255”); |
® | ® | ® | registered sign | %AE | p:before { content:”\00ae”; } | alert(“\256”); |
¯ | ¯ | ¯ | macron | %AF | p:before { content:”\00af”; } | alert(“\257”); |
° | ° | ° | degree sign | %B0 | p:before { content:”\00b0″; } | alert(“\260”); |
± | ± | ± | plus-or-minus sign | %B1 | p:before { content:”\00b1″; } | alert(“\261”); |
² | ² | ² | superscript two | %B2 | p:before { content:”\00b2″; } | alert(“\262”); |
³ | ³ | ³ | superscript three | %B3 | p:before { content:”\00b3″; } | alert(“\263”); |
´ | ´ | ´ | acute accent | %B4 | p:before { content:”\00b4″; } | alert(“\264”); |
µ | µ | µ | micro sign | %B5 | p:before { content:”\00b5″; } | alert(“\265”); |
¶ | ¶ | ¶ | pilcrow (paragraph sign) | %B6 | p:before { content:”\00b6″; } | alert(“\266”); |
· | · | · | middle dot | %B7 | p:before { content:”\00b7″; } | alert(“\267”); |
¸ | ¸ | ¸ | cedilla | %B8 | p:before { content:”\00b8″; } | alert(“\270”); |
¹ | ¹ | ¹ | superscript one | %B9 | p:before { content:”\00b9″; } | alert(“\271”); |
º | º | º | ordinal indicator, masculine | %BA | p:before { content:”\00ba”; } | alert(“\272”); |
» | » | » | angle quotation mark, right | %BB | p:before { content:”\00bb”; } | alert(“\273”); |
¼ | ¼ | ¼ | fraction one-quarter | %BC | p:before { content:”\00bc”; } | alert(“\274”); |
½ | ½ | ½ | fraction one-half | %BD | p:before { content:”\00bd”; } | alert(“\275”); |
¾ | ¾ | ¾ | fraction three-quarters | %BE | p:before { content:”\00be”; } | alert(“\276”); |
¿ | ¿ | ¿ | inverted question mark | %BF | p:before { content:”\00bf”; } | alert(“\277”); |
À | À | À | capital A, grave accent | %C0 | p:before { content:”\00c0″; } | alert(“\300”); |
Á | Á | Á | capital A, acute accent | %C1 | p:before { content:”\00c1″; } | alert(“\301”); |
 |  |  | capital A, circumflex accent | %C2 | p:before { content:”\00c2″; } | alert(“\302”); |
à | à | à | capital A, tilde | %C3 | p:before { content:”\00c3″; } | alert(“\303”); |
Ä | Ä | Ä | capital A, dieresis or umlaut mark | %C4 | p:before { content:”\00c4″; } | alert(“\304”); |
Å | Å | Å | capital A, ring | %C5 | p:before { content:”\00c5″; } | alert(“\305”); |
Æ | Æ | Æ | capital AE diphthong (ligature) | %C6 | p:before { content:”\00c6″; } | alert(“\306”); |
Ç | Ç | Ç | capital C, cedilla | %C7 | p:before { content:”\00c7″; } | alert(“\307”); |
È | È | È | capital E, grave accent | %C8 | p:before { content:”\00c8″; } | alert(“\310”); |
É | É | É | capital E, acute accent | %C9 | p:before { content:”\00c9″; } | alert(“\311”); |
Ê | Ê | Ê | capital E, circumflex accent | %CA | p:before { content:”\00ca”; } | alert(“\312”); |
Ë | Ë | Ë | capital E, dieresis or umlaut mark | %CB | p:before { content:”\00cb”; } | alert(“\313”); |
Ì | Ì | Ì | capital I, grave accent | %CC | p:before { content:”\00cc”; } | alert(“\314”); |
Í | Í | Í | capital I, acute accent | %CD | p:before { content:”\00cd”; } | alert(“\315”); |
Î | Î | Î | capital I, circumflex accent | %CE | p:before { content:”\00ce”; } | alert(“\316”); |
Ï | Ï | Ï | capital I, dieresis or umlaut mark | %CF | p:before { content:”\00cf”; } | alert(“\317”); |
Ð | Ð | Ð | capital Eth, Icelandic | %D0 | p:before { content:”\00d0″; } | alert(“\320”); |
Ñ | Ñ | Ñ | capital N, tilde | %D1 | p:before { content:”\00d1″; } | alert(“\321”); |
Ò | Ò | Ò | capital O, grave accent | %D2 | p:before { content:”\00d2″; } | alert(“\322”); |
Ó | Ó | Ó | capital O, acute accent | %D3 | p:before { content:”\00d3″; } | alert(“\323”); |
Ô | Ô | Ô | capital O, circumflex accent | %D4 | p:before { content:”\00d4″; } | alert(“\324”); |
Õ | Õ | Õ | capital O, tilde | %D5 | p:before { content:”\00d5″; } | alert(“\325”); |
Ö | Ö | Ö | capital O, dieresis or umlaut mark | %D6 | p:before { content:”\00d6″; } | alert(“\326”); |
× | × | × | multiply sign | %D7 | p:before { content:”\00d7″; } | alert(“\327”); |
Ø | Ø | Ø | capital O, slash | %D8 | p:before { content:”\00d8″; } | alert(“\330”); |
Ù | Ù | Ù | capital U, grave accent | %D9 | p:before { content:”\00d9″; } | alert(“\331”); |
Ú | Ú | Ú | capital U, acute accent | %DA | p:before { content:”\00da”; } | alert(“\332”); |
Û | Û | Û | capital U, circumflex accent | %DB | p:before { content:”\00db”; } | alert(“\333”); |
Ü | Ü | Ü | capital U, dieresis or umlaut mark | %DC | p:before { content:”\00dc”; } | alert(“\334”); |
Ý | Ý | Ý | capital Y, acute accent | %DD | p:before { content:”\00dd”; } | alert(“\335”); |
Þ | Þ | Þ | capital THORN, Icelandic | %DE | p:before { content:”\00de”; } | alert(“\336”); |
ß | ß | ß | small sharp s, German (sz ligature) | %DF | p:before { content:”\00df”; } | alert(“\337”); |
à | à | à | small a, grave accent | %E0 | p:before { content:”\00e0″; } | alert(“\340”); |
á | á | á | small a, acute accent | %E1 | p:before { content:”\00e1″; } | alert(“\341”); |
â | â | â | small a, circumflex accent | %E2 | p:before { content:”\00e2″; } | alert(“\342”); |
ã | ã | ã | small a, tilde | %E3 | p:before { content:”\00e3″; } | alert(“\343”); |
ä | ä | ä | small a, dieresis or umlaut mark | %E4 | p:before { content:”\00e4″; } | alert(“\344”); |
å | å | å | small a, ring | %E5 | p:before { content:”\00e5″; } | alert(“\345”); |
æ | æ | æ | small ae diphthong (ligature) | %E6 | p:before { content:”\00e6″; } | alert(“\346”); |
ç | ç | ç | small c, cedilla | %E7 | p:before { content:”\00e7″; } | alert(“\347”); |
è | è | è | small e, grave accent | %E8 | p:before { content:”\00e8″; } | alert(“\350”); |
é | é | é | small e, acute accent | %E9 | p:before { content:”\00e9″; } | alert(“\351”); |
ê | ê | ê | small e, circumflex accent | %EA | p:before { content:”\00ea”; } | alert(“\352”); |
ë | ë | ë | small e, dieresis or umlaut mark | %EB | p:before { content:”\00eb”; } | alert(“\353”); |
ì | ì | ì | small i, grave accent | %EC | p:before { content:”\00ec”; } | alert(“\354”); |
í | í | í | small i, acute accent | %ED | p:before { content:”\00ed”; } | alert(“\355”); |
î | î | î | small i, circumflex accent | %EE | p:before { content:”\00ee”; } | alert(“\356”); |
ï | ï | ï | small i, dieresis or umlaut mark | %EF | p:before { content:”\00ef”; } | alert(“\357”); |
ð | ð | ð | small eth, Icelandic | %F0 | p:before { content:”\00f0″; } | alert(“\360”); |
ñ | ñ | ñ | small n, tilde | %F1 | p:before { content:”\00f1″; } | alert(“\361”); |
ò | ò | ò | small o, grave accent | %F2 | p:before { content:”\00f2″; } | alert(“\362”); |
ó | ó | ó | small o, acute accent | %F3 | p:before { content:”\00f3″; } | alert(“\363”); |
ô | ô | ô | small o, circumflex accent | %F4 | p:before { content:”\00f4″; } | alert(“\364”); |
õ | õ | õ | small o, tilde | %F5 | p:before { content:”\00f5″; } | alert(“\365”); |
ö | ö | ö | small o, dieresis or umlaut mark | %F6 | p:before { content:”\00f6″; } | alert(“\366”); |
÷ | ÷ | ÷ | divide sign | %F7 | p:before { content:”\00f7″; } | alert(“\367”); |
ø | ø | ø | small o, slash | %F8 | p:before { content:”\00f8″; } | alert(“\370”); |
ù | ù | ù | small u, grave accent | %F9 | p:before { content:”\00f9″; } | alert(“\371”); |
ú | ú | ú | small u, acute accent | %FA | p:before { content:”\00fa”; } | alert(“\372”); |
û | û | û | small u, circumflex accent | %FB | p:before { content:”\00fb”; } | alert(“\373”); |
ü | ü | ü | small u, dieresis or umlaut mark | %FC | p:before { content:”\00fc”; } | alert(“\374”); |
ý | ý | ý | small y, acute accent | %FD | p:before { content:”\00fd”; } | alert(“\375”); |
þ | þ | þ | small thorn, Icelandic | %FE | p:before { content:”\00fe”; } | alert(“\376”); |
ÿ | ÿ | ÿ | small y, dieresis or umlaut mark | %FF | p:before { content:”\00ff”; } | alert(“\377”); |
Latin Extended-A
Œ | Œ | Œ | latin capital ligature oe | u+0152 ISOlat2 | p:before { content:”\0152″; } | alert(“\u0152”); |
œ | œ | œ | latin small ligature oe (ligature is a misnomer, this is a separate character in some languages) |
u+0153 ISOlat2 | p:before { content:”\0153″; } | alert(“\u0153”); |
Š | Š | Š | latin capital letter s with caron | u+0160 ISOlat2 | p:before { content:”\0160″; } | alert(“\u0160”); |
š | š | š | latin small letter s with caron | u+0161 ISOlat2 | p:before { content:”\0161″; } | alert(“\u0161”); |
Ÿ | Ÿ | Ÿ | latin capital letter y with diaeresis | u+0178 ISOlat2 | p:before { content:”\0178″; } | alert(“\u0178”); |
Latin Extended-B
ƒ | ƒ | ƒ | latin small f with hook, a.k.a. function, a.k.a. florin | u+0192 ISOtech | p:before { content:”\0192″; } | alert(“\u0192”); |
Spacing Modifier Letters
ˆ | ˆ | modifier letter circumflex accent | u+02C6 ISOpub | p:before { content:”\02c6″; } | alert(“\u02c6”); |
˜ | ˜ | small tilde | u+02DC ISOdia | p:before { content:”\02dc”; } | alert(“\u02dc”); |
Greek
Α | Α | Α | greek capital letter alpha | u+0391 | p:before { content:”\0391″; } | alert(“\u0391”); |
Β | Β | Β | greek capital letter beta | u+0392 | p:before { content:”\0392″; } | alert(“\u0392”); |
Γ | Γ | Γ | greek capital letter gamma | u+0393 ISOgrk3 | p:before { content:”\0393″; } | alert(“\u0395”); |
Δ | Δ | Δ | greek capital letter delta | u+0394 ISOgrk3 | p:before { content:”\0394″; } | alert(“\u0394”); |
Ε | Ε | Ε | greek capital letter epsilon | u+0395 | p:before { content:”\0395″; } | alert(“\u0395”); |
Ζ | Ζ | Ζ | greek capital letter zeta | u+0396 | p:before { content:”\0396″; } | alert(“\u0396”); |
&Eta ; | Η | Η | greek capital letter eta | u+0397 | p:before { content:”\0397″; } | alert(“\u0397”); |
Θ | Θ | Θ | greek capital letter theta | u+0398 ISOgrk3 | p:before { content:”\0398″; } | alert(“\u0398”); |
Ι | Ι | Ι | greek capital letter iota | u+0399 | p:before { content:”\0399″; } | alert(“\u0399”); |
Κ | Κ | Κ | greek capital letter kappa | u+039A | p:before { content:”\039a”; } | alert(“\u039a”); |
Λ | Λ | Λ | greek capital letter lambda | u+039B ISOgrk3 | p:before { content:”\039b”; } | alert(“\u039b”); |
&Mu ; | Μ | Μ | greek capital letter mu | u+039C | p:before { content:”\039c”; } | alert(“\u039c”); |
&Nu ; | Ν | Ν | greek capital letter nu | u+039D | p:before { content:”\039d”; } | alert(“\u039D”); |
&Xi ; | Ξ | Ξ | greek capital letter xi | u+039E ISOgrk3 | p:before { content:”\039e”; } | alert(“\u039e”); |
Ο | Ο | Ο | greek capital letter omicron | u+039F | p:before { content:”\039f”; } | alert(“\u039f”); |
&Pi ; | Π | Π | greek capital letter pi | u+03A0 ISOgrk3 | p:before { content:”\03a0″; } | alert(“\u03a0”); |
&Rho ; | Ρ | Ρ | greek capital letter rho | u+03A1 | p:before { content:”\03a1″; } | alert(“\u03a1”); |
there is no Sigmaf, and no u+03A2 character either) | ||||||
Σ | Σ | Σ | greek capital letter sigma | u+03A3 ISOgrk3 | p:before { content:”\03a3″; } | alert(“\u03A3”); |
&Tau ; | Τ | Τ | greek capital letter tau | u+03A4 | p:before { content:”\03a4″; } | alert(“\u03A4”); |
Υ | Υ | Υ | greek capital letter upsilon | u+03A5 ISOgrk3 | p:before { content:”\03a5″; } | alert(“\u03A5”); |
&Phi ; | Φ | Φ | greek capital letter phi | u+03A6 ISOgrk3 | p:before { content:”\03a6″; } | alert(“\u03A6”); |
&Chi ; | Χ | Χ | greek capital letter chi | u+03A7 | p:before { content:”\03a7″; } | alert(“\u03A7”); |
&Psi ; | Ψ | Ψ | greek capital letter psi | u+03A8 ISOgrk3 | p:before { content:”\03a8″; } | alert(“\u03A8”); |
Ω | Ω | Ω | greek capital letter omega | u+03A9 ISOgrk3 | p:before { content:”\03a9″; } | alert(“\u03A9”); |
α | α | α | greek small letter alpha | u+03B1 ISOgrk3 | p:before { content:”\03b1″; } | alert(“\u03b1”); |
β | β | β | greek small letter beta | u+03B2 ISOgrk3 | p:before { content:”\03b2″; } | alert(“\u03b2”); |
γ | γ | γ | greek small letter gamma | u+03B3 ISOgrk3 | p:before { content:”\03b3″; } | alert(“\u03b3”); |
δ | δ | δ | greek small letter delta | u+03B4 ISOgrk3 | p:before { content:”\03b4″; } | alert(“\u03b4”); |
ε | ε | ε | greek small letter epsilon | u+03B5 ISOgrk3 | p:before { content:”\03b5″; } | alert(“\u03b5”); |
ζ | ζ | ζ | greek small letter zeta | u+03B6 ISOgrk3 | p:before { content:”\03b6″; } | alert(“\u03b6”); |
&eta ; | η | η | greek small letter eta | u+03B7 ISOgrk3 | p:before { content:”\03b7″; } | alert(“\u03b7”); |
θ | θ | θ | greek small letter theta | u+03B8 ISOgrk3 | p:before { content:”\03b8″; } | alert(“\u03b8”); |
ι | ι | ι | greek small letter iota | u+03B9 ISOgrk3 | p:before { content:”\03b9″; } | alert(“\u03b9”); |
κ | κ | κ | greek small letter kappa | u+03BA ISOgrk3 | p:before { content:”\03ba”; } | alert(“\u03ba”); |
λ | λ | λ | greek small letter lambda | u+03BB ISOgrk3 | p:before { content:”\03bb”; } | alert(“\u03bb”); |
&mu ; | μ | μ | greek small letter mu | u+03BC ISOgrk3 | p:before { content:”\03bc”; } | alert(“\u03bc”); |
&nu ; | ν | ν | greek small letter nu | u+03BD ISOgrk3 | p:before { content:”\03bd”; } | alert(“\u03bd”); |
&xi ; | ξ | ξ | greek small letter xi | u+03BE ISOgrk3 | p:before { content:”\03be”; } | alert(“\u03be”); |
ο | ο | ο | greek small letter omicron | u+03BF NEW | p:before { content:”\03bf”; } | alert(“\u03bf”); |
&pi ; | π | π | greek small letter pi | u+03C0 ISOgrk3 | p:before { content:”\03c0″; } | alert(“\u03c0”); |
&rho ; | ρ | ρ | greek small letter rho | u+03C1 ISOgrk3 | p:before { content:”\03c1″; } | alert(“\u03c1”); |
ς | ς | ς | greek small letter final sigma | u+03C2 ISOgrk3 | p:before { content:”\03C2″; } | alert(“\u03c2”); |
σ | σ | σ | greek small letter sigma | u+03C3 ISOgrk3 | p:before { content:”\03C3″; } | alert(“\u03c3”); |
&tau ; | τ | τ | greek small letter tau | u+03C4 ISOgrk3 | p:before { content:”\03C4″; } | alert(“\u03c4”); |
υ | υ | υ | greek small letter upsilon | u+03C5 ISOgrk3 | p:before { content:”\03C5″; } | alert(“\u03c5”); |
&phi ; | φ | φ | greek small letter phi | u+03C6 ISOgrk3 | p:before { content:”\03C6″; } | alert(“\03c6”); |
&chi ; | χ | χ | greek small letter chi | u+03C7 ISOgrk3 | p:before { content:”\03C7″; } | alert(“\u03c7”); |
&psi ; | ψ | ψ | greek small letter psi | u+03C8 ISOgrk3 | p:before { content:”\03C8″; } | alert(“\u03c8”); |
ω | ω | ω | greek small letter omega | u+03C9 ISOgrk3 | p:before { content:”\03C9″; } | alert(“\u03c9”); |
ϑ | ϑ | ϑ | greek small letter theta symbol | u+03D1 NEW | p:before { content:”\03D1″; } | alert(“\u03D1”); |
ϒ | ϒ | ϒ | greek upsilon with hook symbol | u+03D2 NEW | p:before { content:”\03D2″; } | alert(“\u03D2”); |
&piv ; | ϖ | ϖ | greek pi symbol | u+03D6 ISOgrk3 | p:before { content:”\03D6″; } | alert(“\u03D6”); |
Punctuation
  |   | en space | u+2002 ISOpub | p:before { content:”\2002″;} | alert(“\u2002”); | |
  |   | em space | u+2003 ISOpub | p:before { content:”\2003″;} | alert(“\u2003”); | |
  |   | thin space | u+2009 ISOpub | p:before { content:”\2009″;} | alert(“\u2009”); | |
‌ | | ‌ | zero width non-joiner | u+200C NEW RFC 2070 | p:before { content:”\200C”;} | alert(“\u200C”); |
‍ | | ‍ | zero width joiner | u+200D NEW RFC 2070 | p:before { content:”\200D”;} | alert(“\u200d”); |
‎ | | ‎ | left-to-right mark | u+200E NEW RFC 2070 | p:before { content:”\200E”;} | alert(“\u200e”); |
‏ | | ‏ | right-to-left mark | u+200F NEW RFC 2070 | p:before { content:”\200F”;} | alert(“\u200f”); |
– | – | – | en dash | u+2013 ISOpub | p:before { content:”\2013″;} | alert(“\u2013”); |
— | — | — | em dash | u+2014 ISOpub | p:before { content:”\2014″;} | alert(“\u2014”); |
‘ | ‘ | ‘ | left single quotation mark | u+2018 ISOnum | p:before { content:”\2018″;} | alert(“\u2018”); |
’ | ’ | ’ | right single quotation mark | u+2019 ISOnum | p:before { content:”\2019″;} | alert(“\u2019”); |
‚ | ‚ | ‚ | single low-9 quotation mark | u+201A NEW | p:before { content:”\201A”;} | alert(“\u201a”); |
“ | “ | “ | left double quotation mark | u+201C ISOnum | p:before { content:”\201C”;} | alert(“\u201c”); |
” | ” | ” | right double quotation mark | u+201D ISOnum | p:before { content:”\201D”;} | alert(“\u201d”); |
„ | „ | „ | double low-9 quotation mark | u+201E NEW | p:before { content:”\201E”;} | alert(“\u201e”); |
† | † | † | dagger | u+2020 ISOpub | p:before { content:”\2020″;} | alert(“\u2020”); |
‡ | ‡ | ‡ | double dagger | u+2021 ISOpub | p:before { content:”\2021″;} | alert(“\u2021”); |
‰ | ‰ | ‰ | per mille sign | u+2030 ISOtech | p:before { content:”\2030″;} | alert(“\u2030”); |
‹ | ‹ | ‹ | single left-pointing angle quotation mark (lsaquo is proposed but not yet ISO standardised) |
u+2039 ISO proposed | p:before { content:”\2039″;} | alert(“\u2039”); |
› | › | › | single right-pointing angle quotation mark rsaquo is proposed but not yet ISO standardised |
u+203A ISO proposed | p:before { content:”\203A”;} | alert(“\u203a”); |
General Punctuation
• | • | • | bullet, a.k.a. black small circle bullet is NOT the same as bullet operator — u+2219 |
u+2022 ISOpub | alert(“\u2219”); |
… | … | … | horizontal ellipsis, a.k.a. three dot leader | u+2026 ISOpub | alert(“\u2026”); |
′ | ′ | ′ | prime, a.k.a. minutes, a.k.a. feet | u+2032 ISOtech | alert(“\u2032”); |
″ | ″ | ″ | double prime, a.k.a. seconds, a.k.a. inches | u+2033 ISOtech | alert(“\u2033”); |
‾ | ‾ | ‾ | overline, a.k.a. spacing overscore | u+203E NEW | alert(“\u203e”); |
⁄ | ⁄ | ⁄ | fraction slash | u+2044 NEW | alert(“\u8260”); |
Letterlike Symbols
℘ | ℘ | ℘ | script capital P, a.k.a. power set, a.k.a. Weierstrass p | u+2118 ISOamso | alert(“\u2118”); |
ℑ | ℑ | ℑ | blackletter capital I, a.k.a. imaginary part | u+2111 ISOamso | alert(“\u2111”); |
ℜ | ℜ | ℜ | blackletter capital R, a.k.a. real part symbol | u+211C ISOamso | alert(“\u211c”); |
™ | ™ | ™ | trade mark sign | u+2122 ISOnum | alert(“\u2122”); |
ℵ | ℵ | ℵ | alef symbol, a.k.a. first transfinite cardinal alef symbol is NOT the same as hebrew letter alef — u+05D0 although the same glyph could be used to depict both characters |
u+2135 NEW | alert(“\u”); |
Arrows
← | ← | ← | leftwards arrow | u+2190 ISOnum | alert(“\u2190”); |
↑ | ↑ | ↑ | upwards arrow | u+2191 ISOnum | alert(“\u2191”); |
→ | → | → | rightwards arrow | u+2192 ISOnum | alert(“\u2192”); |
↓ | ↓ | ↓ | downwards arrow | u+2193 ISOnum | alert(“\u2193”); |
↔ | ↔ | ↔ | left right arrow | u+2194 ISOamsa | alert(“\u2194”); |
↵ | ↵ | ↵ | downwards arrow with corner leftwards, a.k.a. carriage return | u+21B5 NEW | alert(“\u21b5”); |
⇐ | ⇐ | ⇐ | leftwards double arrow can be used for ‘is implied by’ |
u+21D0 ISOtech | alert(“\u21d0”); |
⇑ | ⇑ | ⇑ | upwards double arrow | u+21D1 ISOamsa | alert(“\u21d1”); |
⇒ | ⇒ | ⇒ | rightwards double arrow | u+21D2 ISOtech | alert(“\u21d2”); |
⇓ | ⇓ | ⇓ | downwards double arrow | u+21D3 ISOamsa | alert(“\ud1d3”); |
⇔ | ⇔ | ⇔ | left right double arrow | u+21D4 ISOamsa | alert(“\u21d4”); |
Mathematical Operators
∀ | ∀ | ∀ | for all | u+2200 ISOtech | alert(“\u2200”); |
∂ | ∂ | ∂ | partial differential | u+2202 ISOtech | alert(“\u2202”); |
∃ | ∃ | ∃ | there exists | u+2203 ISOtech | alert(“\u2203”); |
∅ | ∅ | ∅ | empty set, a.k.a. null set, a.k.a. diameter | u+2205 ISOamso | alert(“\u2205”); |
∇ | ∇ | ∇ | nabla, a.k.a. backward difference | u+2207 ISOtech | alert(“\u2207”); |
∈ | ∈ | ∈ | element of | u+2208 ISOtech | alert(“\u2208”); |
∉ | ∉ | ∉ | not an element of | u+2209 ISOtech | alert(“\u2209”); |
&ni ; | ∋ | ∋ | contains as member | u+220B ISOtech | alert(“\u220b”); |
∏ | ∏ | ∏ | n-ary product, a.k.a. product sign prod is NOT the same character as u+03A0 ‘greek capital letter pi’ though the same glyph might be used for both |
u+220F ISOamsb | alert(“\u03a0”); |
&sum ; | ∑ | ∑ | n-ary sumation sum is NOT the same character as u+03A3 ‘greek capital letter sigma’ though the same glyph might be used for both |
u+2211 ISOamsb | alert(“\u03a3”); |
− | − | − | minus sign | u+2212 ISOtech | alert(“\u2212”); |
∗ | ∗ | ∗ | asterisk operator | u+2217 ISOtech | alert(“\u2217”); |
√ | √ | √ | square root, a.k.a. radical sign | u+221A ISOtech | alert(“\u221a”); |
∝ | ∝ | ∝ | proportional to | u+221D ISOtech | alert(“\u221d”); |
∞ | ∞ | ∞ | infinity | u+221E ISOtech | alert(“\u221e”); |
&ang ; | ∠ | ∠ | angle | u+2220 ISOamso | alert(“\u2220”); |
&and ; | ⊥ | ⊥ | logical and, a.k.a. wedge | u+2227 ISOtech | alert(“\u2227”); |
&or ; | ⊦ | ⊦ | logical or, a.k.a. vee | u+2228 ISOtech | alert(“\u2228”); |
&cap ; | ∩ | ∩ | intersection, a.k.a. cap | u+2229 ISOtech | alert(“\u2229”); |
&cup ; | ∪ | ∪ | union, a.k.a. cup | u+222A ISOtech | alert(“\u222a”); |
&int ; | ∫ | ∫ | integral | u+222B ISOtech | alert(“\u222b”); |
∴ | ∴ | ∴ | therefore | u+2234 ISOtech | alert(“\u2234”); |
&sim ; | ∼ | ∼ | tilde operator, a.k.a. varies with, similar to tilde operator, but is NOT the same character as the tilde u+007E, although the same glyph might be used to represent both |
u+223C ISOtech | alert(“\u223c”); |
≅ | ≅ | ≅ | approximately equal to | u+2245 ISOtech | alert(“\u2245”); |
≈ | ≈ | ≈ | almost equal to, a.k.a. asymptotic to | u+2248 ISOamsr | alert(“\u2248”); |
&ne ; | ≠ | ≠ | not equal to | u+2260 ISOtech | alert(“\u2260”); |
≡ | ≡ | ≡ | identical to | u+2261 ISOtech | alert(“\u2261”); |
&le ; | ≤ | ≤ | less-than or equal to | u+2264 ISOtech | alert(“\u2264”); |
&ge ; | ≥ | ≥ | greater-than or equal to | u+2265 ISOtech | alert(“\u2265”); |
&sub ; | ⊂ | ⊂ | subset of | u+2282 ISOtech | alert(“\u2282”); |
&sup ; | ⊃ | ⊃ | superset of note that nsup, ‘not a superset of u+2283′ is not covered by the Symbol font encoding and is not included. |
u+2283 ISOtech | alert(“\u2283”); |
⊄ | ⊄ | ⊄ | not a subset of | u+2284 ISOamsn | alert(“\u2284”); |
⊆ | ⊆ | ⊆ | subset of or equal to | u+2286 ISOtech | alert(“\u2286”); |
⊇ | ⊇ | ⊇ | superset of or equal to | u+2287 ISOtech | alert(“\u2287”); |
⊕ | ⊕ | ⊕ | circled plus, a.k.a. direct sum | u+2295 ISOamsb | alert(“\u2295”); |
⊗ | ⊗ | ⊗ | circled times, a.k.a. vector product | u+2297 ISOamsb | alert(“\u2297”); |
⊥ | ⊥ | ⊥ | up tack, a.k.a. orthogonal to, a.k.a. perpendicular | u+22A5 ISOtech | alert(“\u22a5”); |
⋅ | ⋅ | ⋅ | dot operator dot operator is NOT the same character as u+00B7 middle dot |
u+22C5 ISOamsb | alert(“\u22c5”); |
Miscellaneous Technical
⌈ | ⌈ | ⌈ | left ceiling, a.k.a. apl upstile | u+2308, ISOamsc | alert(“\u2308”); |
⌉ | ⌉ | ⌉ | right ceiling | u+2309, ISOamsc | alert(“\u2309”); |
⌊ | ⌊ | ⌊ | left floor, a.k.a. apl downstile | u+230A, ISOamsc | alert(“\u230a”); |
⌋ | ⌋ | ⌋ | right floor | u+230B, ISOamsc | alert(“\u230b”); |
⟨ | 〈 | 〈 | left-pointing angle bracket, a.k.a. bra lang is NOT the same character as u+003C ‘less than’ or u+2039 ’single left-pointing angle quotation mark’ |
u+2329 ISOtech | alert(“\u2329”); |
⟩ | 〉 | 〉 | right-pointing angle bracket, a.k.a. ket rang is NOT the same character as u+003E ‘greater than’ or u+203A ’single right-pointing angle quotation mark’ |
u+232A ISOtech | alert(“\u232a”); |
Geometric Shapes
&loz ; | ◊ | ◊ | lozenge | u+25CA ISOpub | alert(“\u25ca”); |
Miscellaneous Symbols
♠ | ♠ | ♠ | black spade suit | u+2660 ISOpub | alert(“\u2660”); |
♣ | ♣ | ♣ | black club suit, a.k.a. shamrock | u+2663 ISOpub | alert(“\u2663”); |
♥ | ♥ | ♥ | black heart suit, a.k.a. valentine | u+2665 ISOpub | alert(“\u2665”); |
♦ | ♦ | ♦ | black diamond suit | u+2666 ISOpub | alert(“\u2666”); |
Newsletter con contenido personalizado
Siempre tenemos que personalizar contenido. En una newsletter, no hay execpción.
Promociones limitadas, las tenemos que actualizar. Si el cliente tarda en abrir su email, la promoción podria no ser actualizada. Actualizar el contenido en funcción del lugar donde se abre el email, en función del tiempo, del momento del día, incluso en función del climat a la hora de abrir el email y de su ubicación. Con una relación a un feed de noticias, podemos relacionar el contenido con la actualidad.
La empresa Kickdynamic trabaja en esta dirección. http://kickdynamic.com/platformservices/
Accelerated mobile pages AMP HTML
AMP HTML es un nuevo formato web para aumentar la velocidad de carga de las páginas webs.
Apunta especialmente a los móviles y tablets cuando estas fuera de casa o de la oficina y que la red está muy lenta.
El proyecto ha empezado con empresas como Twitter, Pinterest, WordPress, Linkedin, etc.
Se basa en una nueva formulación de algunos tags HTML, en JS y en un sistema de distribución del contenido por Google vía unos servidores de cache.
Para más información sobre el desarrollo y la validación: Google AMP Project
Gmail quick action – botones de acción rápida de GMail
Google permite crear botones de acción rápida de Gmail.
Estos “call-to-action” aparecerán y se podrá hacer un clic directamente desde el inbox de Gmail.
Así ahorramos a los usuarios de abrir el email para poder confirmar un acción por ejemplo.
Muy práctico para facilitar el double opt-in por ejemplo: los emails de confirmación para darse de alta a una newsletter por ejemplo.
Pero hay muchas más aplicaciones, siempre que el email enviado tiene un propósito único:
– confirmar una acción via un clic
– confirmar una información que saldrá destacada
Más info: https://developers.google.com/gmail/markup/overview#highlights_in_inbox
Buscar tu posicionamiento en google
Para buscar tu posicionamiento en Google, lo mejor es usar un buscador online.
Por ejemplo: https://serps.com/tools/rank_checker
Cómo comprobar si una web se ve bien en las versiones antiguas de ie
Cómo comprobar si una web se ve bien en las versiones antiguas de ie?
Se puede descargar maquinas virtuales desde http://dev.modern.ie/tools/vms/
Mobile friendly – Test de Google para comprobar que tu web es mobile
Ahora Google integra como criterio de clasificación en google mobile el nivel de accesibilidad mobile.
Puedes comprobarlo aqui: Comprueba si tu web es Mobile
Formulario de login “Good practice”
Las buenas practica para la creación de un login por Codinghorror
Puntos principales:
Implementación de login por tercero: Facebook, twitter ..etc
El ID del usuario debe ser su email.
Informa el usuario si su email esta registrado
Si olvida su login y contraseña, puede pedir que se reenvia la contraseña al email. A la hora de entrar su email, se debria informar al usuario si el email que ha ingresado esta o no en la base de datos. Esto permite salvar tiempo al usuario si tiene varias cuentas emails y no sabe con que cuenta email se habia registrado.
Los formularios para darse de alta o para logearse deben ser separados pero accessible de uno al otro. Una tabla con 2 pestañas por ejemplo. El la primera “Registrate” y en la segunda “Iniciar sesión”.
Comprueba que se puede rellenar los formularios con el teclado, saltando de un campo al otro con el tab.
Nueva herramienta de busqueda de palabras claves de google
Dirección de proyectos online
Podemos tener varios h1 en el html5
La respuesta es “si”.
En el cuerpo principal tendremos un unico h1.
Pero si tenemos otros bloques del tipo nav, aside, section entonces la numerotación empeza a h1.
Ejemplo de W3C:
Los 2 bloques de codigos son similares:
<body> <h1>Let's call it a draw(ing surface)</h1> <h2>Diving in</h2> <h2>Simple shapes</h2> <h2>Canvas coordinates</h2> <h3>Canvas coordinates diagram</h3> <h2>Paths</h2> </body>
<body><h1>Let's call it a draw(ing surface)</h1> <section> <h1>Diving in</h1> </section> <section> <h1>Simple shapes</h1> </section> <section> <h1>Canvas coordinates</h1> <section> <h1>Canvas coordinates diagram</h1> </section> </section> <section> <h1>Paths</h1> </section> </body>
El markup SEO, no te puedes olvidar de los microdatas
Hoy por hoy el SEO pasa sobretodo por el contenido. Y por eso nos tenemos que asegurar que Google entiende bien lo que publicamos. Para eso Google nos invita a usar los microdatas, su rich snippets preferido.
Si tu página ya esta desarrollada y en linea, puedes usar la página de markup helper de Google: https://www.google.com/webmasters/markup-helper/
Mejora el posicionamiento SEO de tu web con Rich Snippets
Rich Snippets
Ahora más que nunca la interpretación del contenido de una página web se ha convertido en el criterio principal de SEO.
Para ayudar a interpretar este contenido debes utilizar los Rich Snippets y así los buscadores como Google pueden identificar mejor cual es el contenido apropriado para una busqueda. Una mejora de la interpretación del contenido se traducira en un aumento de visitas calificadas a tu web.
Para implementar los Rich Snippets lo unico que tienes que hacer es añadir unos codigos sencillos en tu html. No afectara la presentación visual de tu pagína.
Para conocer estos codigos Rich Snippets, consulta la página https://schema.org/.
Los varios formatos de Rich Snippets son:
- Los microdata (recomandado por Google)
- Los microformats
- Los RDFa
Como navegar con IP de otro pais y mantener su anónima
TOR es un navegador que te permite navegar de forma anónima.
Lo puedes descargar desde la web oficial: https://www.torproject.org/
“Que los usuarios naveguen de forma anónima no es peligroso. Es más, debería ser un derecho. Pero si lo piensas, la mayoría de países que han puesto trabas a Tor no son precisamente los que más defienden los derechos humanos sino los que están interesados en que no se publique cierta información”, ha concluido el analista de Kaspersky.
Parece ser que Tor no es infaible pero sigue siendo una de las mejores opción para guardar el anonima en la red.
Gracias a Tor tambien puedes cambiar de IP.
Si necesitas una IP inglesa por ejemplo, para poder acceder a un contenido geo-protegido, TOR te lo permite.
Ejemplo.
Ahora estoy en España. Tor me pasa una IP aleatoria.
Si quieres una IP especifica, lo puedes hacer facilmente.
Abre el archivo: Tor Browser/Data/Tor/torrc-defaults con tu editor preferido (Notepad++ por ejemplo).
Justo abajo de AvoidDiskWrites 1, añades: ExitNodes {GB} si lo quieres que la IP sea de Gran Bretaña.
No te olvides de reiniciar Tor.
Ya esta!
Prueba:
Jenkins para Symfony2
Integración continua
La integración continua permite tareas como: automation, mantener una version estable de una applicación. Para los proyectos en Symfony2, Jenkins permite esta integración continua.
Más información aqui: http://blog.lazycloud.net/en/using-jenkins-for-a-symfony2-project/
Programa de seguimiento de ventas muy chulo
El sistema es de Elastic sales. El programa se llama close.io. Proponen un programa de seguimiento de ventas muy flexible, todo integrado, con emails, llamadas, buscador, historico de actividad automatico.
Mas info aqui: https://elasticsales.com/what-we-do/
Video:
Close.io Video Overview from Close.io on Vimeo.
Buscar emails en Gmail
Siempre esta bien accordarse todas las posibilidades de Gmail para buscar emails en concreto.
Operador | Definición | Ejemplos |
---|---|---|
from: | Especificar desde que email se envio. | Exemple : from:annie Signification : messages envoyés par Annie |
to: | Especificar el destinatorio | Exemple : to:david Signification : tous les messages envoyés à David (tous expéditeurs confondus) |
subject: | Exemple : subject:dîner Signification : messages comportant le mot “dîner” dans leur objet |
|
OR | Permet de rechercher des messages correspondant au terme A ou au terme B*. *OR doit être en majuscules. |
Exemple : from:annie OR from:david Signification : messages envoyés par Annie ou par David |
– (signe moins) |
Permet d’exclure des messages de la recherche. | Exemple : dîner -film Signification : messages contenant le mot “dîner”, mais pas le mot “film” |
label: | Permet de rechercher des messages par libellé. | Exemple : from:annie label:amis Signification : messages envoyés par Annie et associés au libellé “amis”Exemple : from:david label:ma-famille Signification : messages envoyés par David et associés au libellé “Ma famille” |
has:attachment | Permet de rechercher des messages dotés d’une pièce jointe. | Exemple : from:david has:attachment Signification : messages envoyés par David et comportant une pièce jointe |
list: | Permet de rechercher des messages dans des listes de diffusion. | Exemple : list:info@example.com Signification : messages comprenant les mots info@example.com dans leur en-tête, envoyés à cette liste ou reçus par celle-ci |
filename: | Permet de rechercher une pièce jointe par nom ou par type. | Exemple : filename:devoirsdephysique.txt Signification : messages comportant une pièce jointe intitulée “devoirsdephysique.txt”Exemple : label:travail filename:pdf Signification : messages portant le libellé “travail” et comportant un fichier PDF en pièce jointe |
” ” (guillemets) |
Permettent de rechercher une expression exacte*. *La casse n’est pas prise en compte. |
Exemple : “J’ai de la chance” Signification : messages contenant l’expression “j’ai de la chance” ou “J’ai de la chance” Exemple : subject:”dîner et film” |
( ) | Permet de regrouper des mots. Permet d’indiquer des termes qui ne doivent pas être séparés. |
Exemple : from:amy (dîner OR film) Signification : messages envoyés par Annie et contenant soit le mot “dîner”, soit le mot “film” Exemple : subject:(dîner film) |
in:anywhere | Permet de rechercher des messages dans l’ensemble du compte Gmail*. *Par défaut, les messages des dossiers Spam et Corbeille ne sont pas inclus dans les recherches. |
Exemple : in:anywhere movie Signification : messages des dossiers Tous les messages, Spam et Corbeille et contenant le mot “film” |
in:inbox in:trash in:spam |
Permet de rechercher des messages dans les dossiers Boîte de réception, Corbeille et Spam. | Exemple : in:trash from:amy Signification : messages envoyés par Annie et se trouvant dans le dossier Corbeille |
is:important label:important |
Permet de rechercher des messages considérés comme importants selon les critères de la fonctionnalité Boîte de réception Prioritaire. | Exemple : is:important from:jeanne Signification : messages envoyés par Jeanne et marqués comme importants dans la Boîte de réception Prioritaire |
is:starred is:unread is:read |
Permet de rechercher des messages suivis, non lus et lus. | Exemple : is:read is:starred from:David Signification : messages envoyés par David qui sont lus et marqués comme suivis |
has:yellow-star has:red-star has:orange-star has:green-star has:blue-star has:purple-star has:red-bang has:orange-guillemet has:yellow-bang has:green-check has:blue-info has:purple-question |
Permet de rechercher des messages associés à une étoile spécifique. | Exemple : has:purple-star from:David Signification : messages envoyés par David et marqués d’une étoile violette |
cc: bcc: |
Permet d’indiquer les destinataires des champs Cc ou Cci*. *La recherche portant sur le champ “Cci” ne permet pas d’extraire les messages pour lesquels vous êtes en copie cachée. |
Exemple : cc:david Signification : messages envoyés en copie à David |
after: before: older: newer: |
Permet de rechercher des messages envoyés ou reçus pendant une certaine période (ayant le format de date aaaa/mm/jj). |
Exemple : after:2004/04/16 before:2004/04/18 Signification : messages envoyés entre le 16 avril 2004 et le 18 avril 2004** *Plus précisément : messages envoyés après minuit (ou 00 h 00) le 16 avril 2004 et avant le 18 avril 2004. |
older_than newer_than |
Semblable à older et newer, mais permet d’utiliser des dates relatives à l’aide de j, m et a pour jour, mois et année | Exemple : newer_than:2j Signification : localise les messages envoyés au cours des deux derniers jours. |
is:chat | Permet de rechercher des messages de chat. | Exemple : is:chat singe Signification : tous les messages de chat comportant le mot “singe” |
deliveredto: | Permet de rechercher des messages associés à une adresse e-mail donnée figurant dans le champ “Delivered-To” de leur en-tête. | Exemple : deliveredto:nomutilisateur@gmail.com Signification : tous les messages dont le champ d’en-tête “Delivered-To” comporte l’adresse nomutilisateur@gmail.com (cet opérateur vous permet de trouver les messages qui ont été transférés depuis un autre compte ou envoyés à un alias). |
circle: | Permet de rechercher les messages envoyés par un contact que vous avez ajouté à un cercle Google+ donné. | Exemple : circle:amis Signification : tous les messages envoyés par un contact appartenant à votre cercle “Amis”. Exemples : circle:”copains de foot (bleus)” ou circle:”le \”club des cinq\”” |
has:circle | Permet de rechercher tous les messages envoyés par un contact que vous avez ajouté à vos cercles Google+. | Exemple : has:circle Signification : tous les messages envoyés par un contact appartenant à l’un de vos cercles. |
category: | Permet de rechercher les messages appartenant à une certaine catégorie. | Exemple : category:updates Signification : tous les messages appartenant à la catégorie “Mises à jour”. Exemple : category:social Mélanie |
size: | Permet de rechercher les messages dont la taille est supérieure (en octets) à celle qui est indiquée. | Exemple : size:1000000 Signification : tous les messages dont la taille est supérieure à 1 Mo (1 000 000 octets). |
larger: smaller: |
Semblable à size:, mais permet d’indiquer les nombres sous forme abrégée. | Exemple : larger:10 M Signification : tous les messages dont la taille est au moins égale à 10 Mo (10 000 000 octets). |
+ (signe plus) |
Correspondance exacte | Exemple : +licorne Signification : permet de trouver les messages contenant le mot “licorne”, mais pas “licornes” ou “licrone” |
rfc822msgid: | Permet de retrouver un message d’après le champ “Message-id” figurant dans son en-tête | Exemple : rfc822msgid:200503292@example.com Signification : permet de trouver le message associé à l’ID de message SMTP spécifié. En savoir plus sur les en-têtes |
has:userlabels has:nouserlabels |
Permet de rechercher les messages qui sont ou ne sont pas associés à des libellés personnalisés. REMARQUE : Gmail applique des libellés aux messages individuels, mais pas aux fils de conversations. |
Exemple : has:nouserlabels Signification : permet de retrouver tous les messages qui ne portent aucun de vos libellés personnalisés (les libellés automatiques tels que “Corbeille”, “Spam” et “Corbeille” sont exclus). Dans la mesure où Gmail applique des libellés aux messages individuels, vous pouvez voir des libellés dans les résultats. Si cela se produit, cela signifie qu’un libellé a été appliqué à un autre message du même fil de conversation. |
Diseño web Barcelona para iPad y iPhone
Diseño web para iPad
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.example {
height: 30px;
}
} /*iPad in portrait & landscape*/
Diseño web para iPhone
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : landscape) {
.example {
height: 20px;
}
}
Humor Facebook Actualisación en la vida real
Caso de marketing viral “exitoso” de Carambar
Carambar es una marca de caramelo muy famosa en francia, parecido al Palote español.
La marca anuncio iba a retirar las chistes escritas al interior de su envoltorio. El anuncio se difuso por internet a gran velocidad y escala, hasta llegar en los medios tradicional y a la televisión en las noticas.
Finalmente la marca anuncio que era una broma. Lo comunico junto con el hasttag: #cestuneblague (#esunabroma).
El montaje de la broma permitio a la marca un golpe de marketing nacional muy grande y a un coste muy inferior a una campaña de marketing clasica.
Ahora hay que medir el impacto de este buzz. A ver que gusto en la boca habra dejado a los periodistas engañados que han quedados como idiotas. Y de manera más subtil a todos los bloggeros, twiteros o personas que han participado en difundir el engaño.
10 milliones $ de inversion para el mercado online shopclues.com
Shopclues.com ha levantado 10 milliones de US$ de Helion Venture Partners, Nexus Partners, Teruhide Sato y del CEO de Netprice.com.
Shopclues.com es una plataforma de ecommerce con un motor de comparación de productos.
En su web tiene más de 2000 marcas nacionales y internacionales, con más de 250.000 productos repartidos en más de 550 categorias.
El año pasado shopclues ya levanto 5 milliones de dollares.
Twitter se transforma
La transformación de Twitter en una empresa que genera beneficios es el objetivo de Twitter.
De una herramienta de la información instantánea, Twitter se transforma en un media internacional.
Recientemente ha restringido sus API para controlar más el contenido que pasa por su red.
Twitter corto a Tumblr el acceso a su API de friend-finder.
Se junto con NBC para cubrir los olimpicos.
Corto a Instagram el acceso al API de usuario y de fotos.
Twitter se asocia con Nielsen para crear el Nielsen Twitter TV Rating. Nielsen usara Twitter para medir las audiencias.
Y tambien ahora Twitter se asocia con American Express para arancar el ecommerce en Twitter.
Se podra pagar en Twitter usando hashtags.
HoneyPot Anti-spam sin captcha
Un buen truco para eliminar la mayoria de los spams sin tener que poner un CAPTCHA que resulta poco user friendly.
Consiste en crear un campo más en el formulario y esconderlo por css para que no aparesca en pantalla, pero si en el código HTML. Si es un robot que rellena los campos, y rellena el campo escondido, entonces se detecta que es un spam y el mensaje estara bloqueado.
El proyecto se conoce como HoneyPot Project.
Para wordpress, utilizando el formulario Contact form 7, hay un modulo que funciona muy bien de Dao by Design
Editor PHP online
Google Penguin 4
La proxima gran actualisación de Google, Penguin 4, sera para este año dijo Matt Cutts en la ultima conferencia de SXSW.
El objetivo sera de favorecer las webs de ecommerce de buena calidad y rebajar las otras de baja calidad con poca usabilidad.
- Penguin 1 el 24/4/2012
- Penguin 2 el 24/5/2012
- Penguin 3 el 5/10/2012
Facebook, 8.48% de las busquedas
En el ultimo trimestre 2012, 8.48% de todas las busquedas en Estados Unidos ha sido para Facebook.
20% de todas las busquedas han sido para solo 5 webs:
Facebook: 8.48%
Youtube: 5.5%
Yahoo: 2.63%
Wikipedia: 2.01%
Amazon: 1.40%
Fuente: Experian Marketing Services
Google crea unos zapatos que hablan
Debug en Symfony2 con LadybugBundle
Charla y referencias sobre responsive design
CSS tamaño de texto con REM
CSS3 ha introducido una nueva medida de tamaño para los textos: REM.
Soluciona el problema que tiene usar las medidas em que son relativas al padre: cascading, y complica mantener un tamaño base en toda la web. En cambio REM (root em) se basa en el tamaño definido para el html.
Tiene suporte en todos los ultimos navegadores, menos Opera.
Marcador de datos de Google para eventos
Google ofrece la posibilidad de comunicarle más información sobre eventos a travers de su Marcador de datos en Webmaster tools.
Hay una aternativa al markup en HTML con esta herramienta intuitiva y facil de usar: subrayado directamente en la web la información relativa al evento.
La nueva moneda Bitcoin independiente
Bitcoin es la nueva moneda electrónica, independiente, descentralizada, P2P, que no depende de la confianza en ningún emisor central.
Es una solución contra la crisis financiera, ya que no depende de los bancos, ni de los goviernos.
Marketing viral Audi
Paintball con un coche. Ampliar un juego con el uso del producto.
Comunica el poder (militar) del coche, asociando los valeres del juego al coche.
Primer día, más de 67.000 vistas!
Mercado del Ecommerce 2012 y 2013
El Ecommerce por paises en 2012
USA: 200.000 milliones €
UK: 67.000 milliones €
Japon: 63.000 milliones €
Francia: 30.000 milliones €
Alemania: 29.000 milliones €
Australia: 21.000 milliones €
Italia: 14.000 milliones €
Brasil: 13.000 milliones €
China: 13.000 milliones €
Canada: 12.000 milliones €
España: 9.000 milliones €
Rusia: 5.000 milliones €
India: 2.500 milliones €
Gasto anual en Ecommerce por usuario de internet
Inglaterra: 1.316 €
Australia: 1.162 €
USA: 822 €
Francia: 673 €
Japon: 632 €
Italia: 472 €
Alemania: 453 €
Canada: 440 €
España: 344 €
Brazil: 182 €
Rusia: 72 €
India: 27 €
China: 25 €
Paises con el mejor potencial de crecimiento para 2013
india
Brazil
China
Rusia
Italia
Francia
Fuentes:
Searchlaboratory.com
stakeholders.afcom.org.uk
esa.un.org
insternetworldstats.com
google.co.uk/publicdata
Structured Markup para SEO
Google accepta rich snippets para personas, eventos, criticas, productos, recetas y navigación breakcrumb.
Para estos tipos se puede usar los markups de schema.org acceptados por los mayores buscadores como Google, Microsoft, Yandex and Yahoo!.
Los markups se pueden testear aquí: http://www.google.com/webmasters/tools/richsnippets
Plugin de Twitter para WordPress
Plugin de Twitter para wordpress
Olvidate de los plugins de Twitter para wordpress.
Twitter permite incrustar las entradas de Twitter en cualquiera web, con todas las opciones Reply, Retweet, Favorite, y más. Continuar leyendo “Plugin de Twitter para WordPress”
Aaron Swartz
The US government bullied #Aaron Swartz to death. He stopped SOPA! Remember him & retweet this speech. http://www.youtube.com/watch?v=Fgh2dFngFsg&sns=em …
Backbone javascript con underscore.js, json y jquery
En Be On Internet, Diseño Web Barcelona usamos backbonejs y os contamos porque.
Para las aplicaciones web con mucha programación en javascript es facil acabar con un caos of jQuery selectors y callbacks buscando una sincronisación entre el HTML UI, la programación javascript casera y la base de datos en el servidor.
En este caso, para estas aplicaciones con un desarrollo front muy potente, es necesario tener un estructura bien pensada.
Es exactamente el objetivo del backbonejs.
Con Backbone los datos son representados como Models, y puede ser creado, validado, destruido y guardado en el servidor.
Cada vez que una acción UI causa un cambio de un atributo de un model, el model crea un cambio en el evento y cambia todas las vistas del estado del model.
Con backbonejs no se necesita un codígo que busca en la DOM para encontrar un “id” en concreto y actualizar el HTML a mano. Cuando cambia el model, las vistas se actualizan por si.
Diseño Web Barcelona, BOI consulting: expertos en tecnología web la más avanzada y optimizada. Contactanos!
Diseño web Barcelona
Diseño web Barcelona
Creación, programación y diseño web Barcelona : somos programadores ubicados en Barcelona. Somos expertos en programación de WordPress, Joomla, Prestashop, Magento y en programación a medida con frameworks PHP.
Sublime Text shortcuts
Los shortcuts de Sublime Text 2, el mejor editor de código:
Sublime Text 2 – Shortcuts (PC)
Aqui tienes los shortcuts más usados para Sublime Text. Si quieres el listado completo: http://www.sublimetext.com/docs/2/.
Editing
| *Ctrl+C* | copy current line (if no selection) |
| *Ctrl+X* | cut current line (if no selection) |
| *Ctrl+⇧+K*| delete line |
| *Ctrl+↩* | insert line after |
| *Ctrl+⇧+↩* | insert line before |
| *Ctrl+⇧+↑* | move line (or selection) up |
| *Ctrl+L* | select line (repeat to select next lines) |
| *Ctrl+D* | select word (repeat select others occurrences in context for multiple editing) |
| *Ctrl+M* | jump to closing bracket for current code, repeat to jump to opening bracket |
| *Ctrl+⇧+M* | select all contents of the current brackets (curly brackets, square brackets, parentheses) |
| *Ctrl+KK* | delete from cursor to end of line |
| *Ctrl+K+⌫* | delete from cursor to start of line |
| *Ctrl+]* | indent current line(s) |
| *Ctrl+[* | un-indent current line(s) |
| *Ctrl+⇧+D* | duplicate line(s) |
| *Ctrl+J* | join line below to the end of the current line |
| *Ctrl+ /* | comment/un-comment current line |
| *Ctrl+⇧+/* | block comment current selection |
| *Ctrl+Y* | redo, or repeat last keyboard shortcut command |
| *Ctrl+⇧+V* | paste and indent correctly |
| *Ctrl+Space* | select next auto-complete suggestion |
| *Ctrl+U* | soft undo (somehow undoes your movements; it jumps to your last change before undoing it when you repeat this command) |
Navigation/Goto Anywhere
| *Ctrl+P* | quick-open files by name in your project (doesn’t seem to need an actual project set up, it just searches in the directories around the currently-opened file |
| *Ctrl+R* | goto symbol (functions and classes) in the file. Same as *Ctrl+P*, then type *@*|
| *Ctrl+;* | goto word in current file. Same as *Ctrl+P*, then type *#*|
| *Ctrl+G* | goto line in current file. Same as *Ctrl+P*, then type *:*|
General
| *Ctrl+⇧+P* | command prompt |
| *Ctrl+KB* | toggle side bar |
Find/Replace
| *Ctrl+F* | find |
| *Ctrl+H* | replace |
| *Ctrl+⇧+F* | find in files |
Tabs
| *Ctrl+⇧+t* | open last closed tab (just like in your browser) |
| *Ctrl+PgDn*| cycle down through open tabs, cycle up with Ctrl+PgUp |
| *Ctrl+⇆* | cycle through last tabs (repeat to go back further in history) |
Split window
| *Alt+⇧+2* | split into two columns |
| *Alt+⇧+1* | revert to single column |
| *Alt+⇧+5* | grid (4 groups) |
| *Ctrl+[1,2,3,4]* | jump to “group” (pane) |
| *Ctrl+⇧+[1,2,3,4]* | move file to specified group |
Bookmarks
| *Ctrl+F2* | toggle bookmark |
| *F2* | next bookmark |
| *⇧+F2* | previous bookmark |
| *Ctrl+⇧+F2* | clear bookmarks |
Text manipulation
| *Ctrl+KU* | upper case |
| *Ctrl+KL* | lower case |
Nuevo sitio de diseño web Barcelona
Diseño web con HTML5: time tag datetime
Diseño web con HTML5, el tag <time> esta de nuevo en las especificaciones despues de haber sido eliminado.
Ahora tiene especificaciones más abiertas: Continuar leyendo “Diseño web con HTML5: time tag datetime”
Página de producto: checklist
A la hora de montar su ecommerce, asegurarse pensar en los puntos claves para tener el cliente listo para comprar. Con todos elementos el cliente se sentira más en confianza para comprar:
- El precio del producto
- Imágenes del producto con zoom
- Los beneficios del producto para su consumidor
- Características del producto y detalles técnicos (ingredientes, tamaño, colores disponibles, materiales, etc)
- Detalle sobre le envío
- Política de devoluciones
- Política de privacidad y seguridad
- Productos similares, complementarios, relacionados
- Botones sociales: Por correo electrónico, en Twitter, Facebook, Pinterest, etc.
- Valoración
- Comentarios y críticas
- Llamada a la acción (Call To Action)
El potencial de crecimiento del ecommerce en España es enorme
Según Magma Growth el mercado actual en España esta cerca de 9.000 milliones de euros anuales, un promedio de 300 euros por usuario de internet. En Inglaterra el promedio es de 1000 euros!
Los productos destacados son:
Viajes
Material deportivo
Electrónica
Ropa
Diseño web: Usabilidad de la navegación en Tablet y Movil
La navegación en movil y tablet puede seguir los mismos patrones que las webs desktop?
Hasta que punto una web puede ser responsive y adaptarse a todos los dispositivos solo por CSS?
Cuando hablamos de pequeñas webs, no lo dudo. Ahora para un .com lo más probable es que habra que cargar una plantilla especifica para movil.
Usabilidad de la navegación en Tablet y Movil
Estudio de LukeW
Diseño Web: tipografía
Diseño web usando con estilo las tipografías.
Diseño web combinando 2 tipofrafías: Bebas Neue y Arial
Tutorial para GIT Control de versión en 15 minutos
Tutorial para Git, control de versión
Git permite a un grupo de personas de trabajar sobre los mismos documentos, en general códigos, sin pisarse los unos a los otros. Es un sistema de control de version.
Quieres aprender GIT en 15 minutos?
Blacklist : los emails no llegan a los usuarios
Blacklist
Los emails de registro no llegan a los usuarios?
Primero verifica que tu IP o nombre de dominio no sea marcado como spam, blacklisted
Generar imagenes automaticamente para desarrollo
Solo basta con escribir esta url, con el tamaño de la imagen destras del slash y se genera automaticamente http://placehold.it/350×150. Se puede descargar.
O directamente usarlo en el codigo:
<img src="http://placehold.it/350x150">
Se puede cambiar el color y el texto:
http://placehold.it/350x150/E8117F/000000/&text=BeOnInternet!++350x150
WordPress Como añadir un video en un excerpt de la home
Como añadir un video en un excerpt de la home en WordPress:
En la entrada selecciona el formato Minientrada
Tipografia web: @font-face o cufon?
Para usar en web una tipografia original, que no es de google font, usar @font-face o cufon?
Cufon
Cufon -> más crossbrowser pero tirando de javascript
@font-face
Font-face -> No tira de javascript pero no esta cubierto en todos los navegadores
Además no renderiza perfectamente y no de la misma manera en todos los navegadores.
@font-face {
font-family:"Caviar Dreams Bold";
src:url("CaviarDreams_Bold.eot?") format("eot"),
url("CaviarDreams_Bold.woff") format("woff"),
url("CaviarDreams_Bold.ttf") format("truetype"),
url("CaviarDreams_Bold.svg#CaviarDreams-Bold") format("svg");
font-weight:normal;
font-style:normal;}
h1 {
font-family: "Caviar Dreams Bold";
font-size: 3em;
font-style:normal;
font-weight:normal;
line-height:1.2em;
margin:0 0 1em;
}
Todos los caracteres Ascii extended especiales
Todos los caracteres Ascii extended especiales
Reduce las peticiones, usa Caracteres Ascii cuando puedas. Siempre pesa menos que una imagen.
-
☺ Smiley Blanco
-
☻ Black negro
-
♥ Corazón negro
-
♦ Diamante
-
♣ Clove (Clover/Puppyfeet)
-
♠ Spade
-
• Punto negro
-
◘ Cuadrado negro con punto blanco
-
○ Circulo negro
-
◙ Cuadrado negro con circulo blanco vacio
-
♂ simbolo macho
-
♀ simbolo hembra
-
♪ Nota de musica
-
♫ Nota de musica
-
☼ Sol
-
► Play (Adelante) o flecha derecha
-
◄ Rewind (Atras) o flecha izquierda
-
↕ Doble flecha arriba abajo
-
‼ Doble punto de exclamación
-
¶ Pilcrow (paragrafo)
-
§ Sección
-
▬ Menos
-
↨ Doble flecha arriba abajo
-
↑ Flecha arriba
-
↓ Flecha abajo
-
→ Flecha derecha
-
← Flecha izquierda
-
∟ 90º angulo
-
↔ Doble flecha derecha izquierda
-
▲ Flecha arriba
-
▼ Flecha abajo
-
espacio
-
! Exclamación
-
“
-
# hash
-
$ Dollar
-
% Percentaje
-
& ampersand
-
‘ Apostrofe
-
( Paréntesis
-
) Paréntesis
-
* Asterisk/estrella
-
+ Más
-
, Comma
-
– Menos
-
. Punto
-
/ slash
-
0 0
-
1 1
-
2 2
-
3 3
-
4 4
-
5 5
-
6 6
-
7 7
-
8 8
-
9 9
-
: Colon (colons)
-
; Semicolon
-
< Left arrow (Big fish) Less than
-
= Equals sign Equals sign
-
> Right arrows (Small fish) Greater than
-
? Question mark
-
@ At symbol
-
A
-
B
-
C
-
D
-
E
-
F
-
G
-
H
-
I
-
J
-
K
-
L
-
M
-
N
-
O
-
P
-
Q
-
R
-
S
-
T
-
U
-
V
-
W
-
X
-
Y
-
Z
-
[
-
\
-
]
-
^
-
_
-
` A grave accent
-
a
-
b
-
c
-
d
-
e
-
f
-
g
-
h
-
i
-
j
-
k
-
l
-
m
-
n
-
o
-
p
-
q
-
r
-
s
-
t
-
u
-
v
-
w
-
x
-
y
-
z
-
{
-
|
-
}
-
~
-
⌂ A house shaped pentagon
-
Ç A “C” with a cedilla
-
ü A u with a umlaut (or diaeresis) over it
-
é Acute accent over e
-
â “a” with a circumflex over it
-
ä An “a” with a umlaut (or diaeresis) over it
-
à An “a” with a grave accent over it
-
å An a with a circle or dot over it
-
ç A “c” with a circumflex
-
ê “e” with a circumflex on it
-
ë An “e” with a umlaut (or diaeresis) over it
-
è An “e” with a grave accent over it
-
ï An “i” with a umlaut (or diaeresis) over it
-
î An i with a circumflex over it
-
ì An “i” with a grave accent
-
Ä An “A” with a umlaut (or diaeresis) over it
-
Å A capitol “A” with a circle or dot over it
(Angstrom)
-
É A capitol “E” with an acute accent over it
-
æ The lower case vowel (grapheme) of the a and
e squished together
-
Æ Capitol AE combined into one letter
-
ô A “o” with a circumflex over it
-
ö An “o” with a umlaut (or diaeresis) over it
-
ò An “o” with a mark over it called a grave
mark
-
û A u with a circumflex over it
-
ù A u with a grave accent over it
-
ÿ A “y” with a umlaut (or diaeresis) over it
-
Ö A “O” with a umlaut (or diaeresis) over it
-
Ü A “U” with a umlaut (or diaeresis) over it
-
¢ The “cents” or “cent” sign for currency
-
£ The “pound sign” for currency
-
¥ The “Yen” sign for currency
(Japanese/Chinese) Written in Japanese as円
-
₧ Pts Points of Pints sign
-
ƒ Forte: A curvy or italic F (italicized)
-
á An a with a acute accent
-
í An i with a acute accent
-
ó An o with a acute accent
-
ú A u with an acute accent over it
-
ñ A n with a tilde ~ over it to make the
Spanish enye
-
Ñ A capital n with a tilde ~ over it to make
the Spanish enye
-
ª The feminine superscript A
-
º The degrees or degree symbol
-
¿ Upside down question mark used in Spanish
-
⌐ Negation / Logical Complement / Looks like start “quote” in Japanese / Chinese
-
¬ Negation / Logical Complement / Looks like end “quote” in Japanese / Chinese
-
½ One half symbol
-
¼ One quarter symbol O
-
¡ An upside down exclamation mark (looks like
an “i” that sits lower than usual)
-
« Double arrow pointing left
-
» Double arrow pointing right
-
░ Light shaded block
-
▒ Medium shaded block
-
▓ Dark shaded block
-
│ Line
-
┤Shape
-
╡Special Line
-
╢ You can make words with these
-
╖ Or shapes
-
╕ Or Mazes!
-
╣ANSI border characters
-
║
-
╗
-
╝
-
╜
-
╛
-
┐
-
└
-
┴
-
┬
-
├
-
─
-
┼
-
╞
-
╟
-
╚
-
╔
-
╩
-
╦
-
╠
-
═
-
╬
-
╧
-
╨
-
╤
-
╥ (Could also be Pi, see 227)
-
╙
-
╘
-
╒
-
╓
-
╫
-
╪
-
┘
-
┌
-
█ ANSI art pseudographics
-
▄ ANSI blocks / box drawing characters
-
▌
-
▐
-
▀
-
α The Greek letter “Alpha”
-
ß A German letter, Eszett, scharfes S, sharp S
-
Γ Greek uppercase “Gamma.” Also, Greek number 3.
-
π The symbol for the mathematical Pi in ascii
-
Σ Greek mathematical symbol for sum
-
σ Symbol for sum Symbol for sum
-
µ Mu
-
τ Tau
-
Φ Phi a variation of Phi
-
Θ Theta, the 8th letter of Greek alphabet
-
Ω Omega (24th letter of Greek alphabet)
-
δ The symbol for delta
-
∞ The symbol or character for infinity
(Infiniti)
-
φ Phi (21st letter of Greek alphabet)
-
ε Epsilon (5th letter of Greek Alphabet) / backwards 3 or curved E
-
∩ Intersection / Upside down U
-
≡ Equivalent symbol / Equal sign with 3 lines
-
± Plus and minus (Plus or minus) sign,
Plus-minus Symbol
-
≥ Greater than or equal to symbol
-
≤ Less than or equal to sign
-
⌠ Ceil (mathematical symbol)
-
⌡ Floor (mathematical symbol)
-
÷ Divide or Division Symbol
-
≈ Symbol for approximate / Curvy or wavy equal sign =
-
° Degree or degrees code
-
∙ Medium height period Medium height period
-
· Dot higher than usual
-
√ Square Root Symbol (A check mark)
-
ⁿ Superscript N
-
² Squared symbol, superscript 2 via ascii
-
■ Black box or square
-
(Yup, just a space via ascii)
Publicidades en web movil: las trampas
Un estudio de Trademob demonstra que hasta 40% de los Pay-per-clicks en movils se pierden entre fraude y clics erroneos.
- 8% de Fraude Simple, server-side
- 10% de Botnets y sofisticado server-side fraud
- 22% Clicks por error del uso del movil
Este estudio realizado por Trademob GmbH ha analizado 6 milliones de clics en publicidades por web movil, en 10 redes de publicidades en movil, en Junio 2012
La solución para no perder este 40% de inversión en publicidad es de tracear correctamente de donde vienen los clicks.
Targeta de prepago para el ecommerce : Money to Pay
La Caixa crea Money to Pay, una targeta de prepago Money to Pay que se podra utilizar para la compra online. No es necesario tener una cuenta con La Caixa para comprarla.
ecommerce entre particulares, estadísticas en Francia
Ecommerce Consumer to Consumer : 72% de los internautas se interesan al comercio entre particulares en Francia según el barometro del CtoC 2012.
En Francia 7 internautas sobre 10 son vendedores o compradores, con una proporción de 55% de compradores y 49% de vendedores.
Para 55% comprar entre particulares la motivación 1 es reclicar, 2 comprar barrato, 3 comprar desde casa.
Para elegir el sitio web de compra/venta para comprar los criterios prioritarios son:
1) los precios
2) la asistancia para gestionar los conflictos con un vendedor
3) precios de envios reducidos
Para elegir el sitio web de compra/venta para vender los criterios prioritarios son:
1) la gratuidad del servicio para poner a la venta
2) la garantia de pago por el vendedor
3) la asistancia para gestionar los conflictos con un vendedor
Los productos más comprados en 2012 C to C en Francia, sobre un periodo de 12 meses
- Libros (43%)
- Ropa (40%)
- Video juegos (26%)
- DVD (24%)
- Juegos y puericultura (21%)
Los freinos a la compra:
- Miedo a ser estafado (riesgo visto como menor para los jovenes de 15-24)
- Imposibilidad de ver el producto comprado
- la falsificación (más para los mayores que los jovenes)
- Precio de envio (sobretodo para los más jovenes)
El movíl arranca!
54% de los internautas tiene una coneción internet por movil.
1 de 5 de los “mobinautas” a comprado por el mobile. 46% por targeta de credito y 45% con Paypal, con una tasa de 95% de satisfación.
El internet movil permite aprovechar de los momentos vacios para navegar.
Fuente PDF descargar: la poste – CtoC Priceminister
El comercio electrónico en México supera ya los 46.7 mil millones de pesos
El comercio electrónico en México supera ya los 46.7 mil millones de pesos, del 2010 al 2011 el E COMMERCE creció 20%, lo que marca una clara tendencia a la alza en este sector. Información de la Asociación Mexicana de Internet (AMIPCI).
Prioridades de los directivos de los 100 primeros ecommerce del Reino Unido
eCommera pregunto a los directos de 100 ecommerce del Reino Unido con más de 3milliones de libras de ventas anual, sobre sus prioridades.
- Mantener sus clientes
- Mejorar la eficacidad del marketing online
- Captar nuevos clientes a sus webs
Pero entre las mejores empresas con más de 40% de cremiento anual, la primera preocupación es el SEO y analizar las estatisticas, seguido por captar nuevos clientes y tambien encontrar el personal adecuado.
Los usuarios de Pinterest son más activos para el socialcommerce
En un estudio de la agencia emarketer, Pinterest´s Social Commerce Potential: What Brands and Retailers Need to Know, explica como las redes sociales tienen cada vez más impacto en la captación de ventas en internet.
Pinterest en dos años a conquistado 10% de los internautas americanos, con 23,4 millones de usuarios a julio de 2012.
Los datos claves : 63% de los usuarios de Pinterest tienen entre 35 y más años con 79% de las visitas por mujeres.
Datos de crecimiento del ecommerce en China
Crecimiento del ecommerce en China de 45% en el segundo trimestre comparado al año pasado segun Reuters, con un cifra de 278.84 miles de milliones de Yuan.
Lo más interesante es que 76% de esta cifra lo captura la web de TaoBao del grupo ALIBABA. Esto supera desde lejos a sus competidores Tencent Holding con solo 4.5% del mercado y 360buy con 5.5%. El ecommerce chino ha entrado en una competición de precio sin precedente.
El gigante americano Amazon solo tiene 0.8% de este mercado chino, y Dangdang con 0.7% y Suning 1.7%. Yihaodian la cadena de supermercado más grande de China, que apartenece a Wal-Mart Stores Inc con más de 50% solo realiza un 0.3% del volumen de transación.
El ecommerce solo representaba solo 4% de la venta al menor en China en 2011 para subir de 30% a 5.8 milliones de Yuan, un 12.5% del PIB chino, dijo minister of commerce, Jiang Yaoping el ministro del commercio, en Mayo.
El ecommerce sigue subiendo en España en 2012
Estudio: el último informe sobre Comercio Electrónico a través de las entidades de medios de pago realizado por la Comisión del Mercado de las Telecomunicaciones.
Nuevo record de ventas online en España en el primer trimestre 2012 con 2.452,6 millones de euros, un 19,3% más que en el mismo periodo del año pasado.
Sectores por volumen de negocios:
- las agencias de viaje 12,7%
- los operadores turísticos 12%
- marketing directo 7.2%
- transporte de viajeros 5.4%
- juegos de azar y apuestas 4.5%
- espectáculos artísticos, deportivos y recreativos 4.1%
- prenda de vestir 3.1%
Pero todavia la balanza comercial es negativa: por internet los españoles importan más que lo que exportan.
PDF del último informe sobre Comercio Electrónico a través de las entidades de medios de pago realizado por la Comisión del Mercado de las Telecomunicaciones
Fondo transparente por CSS con RGBa
Fondo transparente sin PNG, por CSS con RGBa
Como poner por CSS un fondo con transparencia sin afectar su contenido: sin que los hijos heredan de la transparencia?
Se usa RGBa:
/* Para los navegadores que no suportan RGBa */
background: rgb(250, 250, 250);
/* RGBa con 0.6 opacity */
background: rgba(250, 250, 250, 0.6);
Crear entrada dinamicamente en wordpress
Como crear una entrada dinamicamente en wordpress
// Create post object
$my_post = array(
'post_title' => 'Titulo de mi post',
'post_content' => 'blablabla.',
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array(2,12)
);
// Insert the post into the database
wp_insert_post( $my_post );
XML a PHP
Pasar XML a PHP
$xml = simplexml_load_string($data);
foreach ($xml->mensaje as $mensaje)
echo $mensaje->texto.' ';
function loadXML($data) {
$xml = @simplexml_load_string($data);
if (!is_object($xml))
throw new Exception('Error en la lectura del XML',1001);
return $xml;
}
Para ir directamente a un sub elemento:
foreach ($xml->xpath('//asunto') as $asunto)
echo $asunto."\n";
Para pasar de simleXML a XML :
echo $xml->asXML();
Con SimpleXML tener en cuenta:
Si hay un guion:
foreach ($xml->{'mensaje-personal'} as $mensaje)
echo $mensaje->texto.' ';
Hacer cast a string siempre que obtenemos datos de los objetos SimpleXML. Si en vez de devolver directamente el valor de un elemento devuelve otro objeto SimpleXML, se soluciona con:
$texto = (string) $data_o->mensaje[0]->texto;
Plugin wordpress para version mobile
Listado de plugins wordpress para crear un version mobile.
flujo web
Flujo Web
Programa para dibujar un diagrama de flujo de proceso, gratuito.
http://www.yworks.com
Conocer la IP del remitente de un email en WordPress
Conocer la IP del remitente de un email en WordPress
Para conocer la IP del remitente de un email en wordpress, si usas el plugin contact form 7 de wordpress, ahora puedes usar el tag [wpcf7.remote_ip]
Solo se falta copiar este tag en el cuerpo del email. Ojo no se pone en el formulario! Solo se pone en el cuerpo del email. Y hasta!
Veras que abajo del email que recibes cuando algien envia un message se encuentra su IP.
Para saber de donde es solo tienes que usar un buscador del tipo: http://www.ip-adress.com/ip_tracer/
Sistema de grid para responsive web design
http://goldengridsystem.com/ es otro sistema de grid para maquetación, pensado para responsive design.
Tamaño de texto y tipografia gigante
Tamaño de texto y tipografia gigante para títulos grandes y adaptables, para responsive web design.
Usar fittextjs.com, un plugin de jquery
Boilerplate HTML5 : listo para comer
Crear toda la plantilla web en HTML5 en 3 segundos.
Más rapido que una pizza, listo para comer.
Con opción Mobile First o Bootstrap! Para proyectos expressos!
Directorios web para añadir url
Portal SEO | Directorio Portal SEO | 3 | SI | 14-05-2009 |
Posiciona tu web | Directorio web | 3 | NO | 14-05-2009 |
dmoz – open directory project | dmoz | 7 | SI | 14-05-2009 |
Yahoo! España | Yahoo! España | 5 | SI | 14-05-2009 |
COMpartimos.NET | COMpartimos.NET | 5 | SI | 14-05-2009 |
Directorio todo.letras | Directorio todo.letras | 1 | SI | 14-05-2009 |
Donde buscar | Donde buscar | 4 | SI | 14-05-2009 |
DirectorioBus | DirectorioBus | 4 | SI | 14-05-2009 |
Equipo SEO | Directorio Equiposeo | 0 | SI | 14-05-2009 |
Flesko | http://es.flesko.com/ | 5 | SI | 14-05-2009 |
alnavirtual | alnavirtual | 4 | SI | 14-05-2009 |
Portal-Web | Portal-Web | 2 | SI | 14-05-2009 |
Tagoror | Tagoror | NP | SI | 14-05-2009 |
Pergamino virtual | Pergamino virtual | 4 | SI | 14-05-2009 |
Artelinks | Artelinks | 3 | SI | 14-05-2009 |
Directorio de enlaces FreeHostia | FreeHostia | 2 | SI | 14-05-2009 |
Directorio Web Español | Directorio Web Español | 3 | SI | 14-05-2009 |
anadir-sitio.com | anadir-sitio.com | 3 | SI | 14-05-2009 |
Yugler | yugler.com | 0 | SI | 14-05-2009 |
Tragamoneda | tragamoneda.info/ | 2 | SI | 14-05-2009 |
Directorio de Directorios | solodirectorios.com | 3 | SI | 14-05-2009 |
Directorio de enlaces multi-temático | 2k2.es | 1 | SI | 14-05-2009 |
Directorio Redribera | Directorio redribera | 0 | SI | 14-05-2009 |
WeDeen Directorio | WeDeen Directorio | 0 | SI – R | 14-05-2009 |
Web Enlace | Web Enlace | 4 | SI – R | 14-05-2009 |
BlogDirectorio | BlogDirectorio | 3 | SI – R | 14-05-2009 |
link-links | link-links | 2 | NO | 14-05-2009 |
Directorio el reventon | Directorio el reventon | 0 | SI | 14-05-2009 |
BlogDirectorioWeb.com | BlogDirectorioWeb.com | 0 | SI – R | 14-05-2009 |
SeoDirectorio.net | SeoDirectorio.net | 2 | SI | 25-05-2009 |
Aquituweb.net | Aquituweb.net | 3 | SI – R | 25-05-2009 |
Directorio Web | http://directorio-web-gratis.blogspot.com/ | NP | SI | 02-02-2010 |
Galeria CSS
Domain | PR | Alexa Rank | Total BL | Google BL | Age(years) | IP Address |
10pages.org | 3 | 91,876 | 1,114 | 6 | 3 | 93.186.169.23 |
dmoz.org | 7 | 818 | 81,843,961 | 3,550 | 14 | 205.188.101.58 |
1000s.org | 1 | 89,001 | 802 | 2 | 1 | 103.8.25.26 |
10directory.com | 3 | 43,098 | 34,116 | 4 | 6 | 85.17.87.187 |
10directory.info | 2 | 54,636 | 5,565 | 5 | 4 | 97.74.215.42 |
10fourlistings.com | 3 | 38,429 | 4,073 | 0 | 1 | 72.29.74.111 |
1abc.org | 4 | 39,308 | 38,959 | 56 | 6 | 108.167.155.84 |
1adir.com | 3 | 43,546 | 1,955 | 6 | 5 | 198.12.67.55 |
1dir.biz | 1 | 34,610 | 1,657 | 0 | 6 | 216.172.182.2 |
1websdirectory.com | 4 | 25,439 | 25,677 | 33 | 3 | 72.18.135.92 |
247webdirectory.com | 4 | 9,999,999 | 25,824 | 33 | 4 | 173.248.142.19 |
2addlink.info | 3 | 26,832 | 152,422 | 30 | 6 | 173.236.200.5 |
2flowcity.net | 3 | 93,167 | 9,195 | 0 | 3 | 96.125.161.248 |
2space.net | 3 | 9,999,999 | 20,892 | 9 | 8 | 109.70.6.178 |
2wdirectory.com | 3 | 9,999,999 | 740 | 4 | 2 | 174.121.37.67 |
411freedirectory.com | 2 | 48,988 | 199 | 0 | 0 | 108.160.144.28 |
4zf.net | 2 | 37,128 | 1,666 | 2 | 3 | 95.211.37.115 |
52mil.com | 1 | 106,710 | 271 | 0 | 1 | 67.228.247.187 |
5starsdirectory.com | 2 | 39,314 | 2,145 | 2 | 2 | 93.104.214.109 |
777media.com | 4 | 30,386 | 62,717 | 48 | 8 | 69.162.69.231 |
7bic.org | 2 | 201,595 | 16,144 | 3 | 0 | 67.159.44.4 |
7cd.us | 3 | 9,999,999 | 3,969 | 16 | 6 | 66.28.139.176 |
7si.org | 3 | 9,999,999 | 2,824 | 6 | 5 | 184.154.151.66 |
888ball.net | 1 | 9,999,999 | 126 | 0 | 0 | 50.63.70.1 |
90degrees.org | 2 | 9,999,999 | 1,700 | 0 | 13 | 209.144.31.30 |
99kat.com | 3 | 9,999,999 | 11,074 | 5 | 6 | 213.83.63.53 |
9dir.com | 4 | 47,632 | 7,609 | 14 | 6 | 50.22.133.228 |
9sites.net | 4 | 9,999,999 | 7,480 | 36 | 6 | 69.61.32.64 |
a1computer.org | 1 | 230,546 | 51 | 0 | 0 | 50.63.70.1 |
a1starwebdirectory.com | 1 | 68,433 | 224 | 0 | 1 | 184.107.216.178 |
a1webdirectory.com | 1 | 48,397 | 6,455 | 0 | 7 | 70.85.145.17 |
a1webdirectory.org | 4 | 18,038 | 29,111 | 37 | 5 | 64.27.55.163 |
a1weblink.com | 1 | 49,413 | 2,103 | 0 | 5 | 50.116.122.118 |
a3place.com | 2 | 46,880 | 186,448 | 3 | 1 | 100.42.59.15 |
aaaagencysearch.com | 5 | 33,587 | 323 | 26 | 12 | 204.197.252.109 |
aaaarch.org | 4 | 87,386 | 88 | 8 | 0 | 67.231.244.181 |
aaawebdirectory.com | 3 | 26,691 | 48,026 | 13 | 6 | 216.172.184.103 |
aaf14.org | 3 | 33,426 | 1,079 | 8 | 9 | 64.91.228.101 |
abacusdirectory.info | 1 | 350,136 | 136 | 0 | 2 | 74.53.9.210 |
abacusseo.com | 2 | 40,310 | 2,925 | 4 | 3 | 108.175.156.85 |
abelandcain.org | 1 | 82,714 | 99 | 0 | 0 | 50.116.122.99 |
abigdir.com | 5 | 22,791 | 60,372 | 92 | 6 | 68.178.211.40 |
ablecode.com | 3 | 173,854 | 12,904 | 0 | 11 | 67.159.44.4 |
abstractdirectory.com | 2 | 52,509 | 358 | 0 | 5 | 209.217.228.21 |
abstractdirectory.net | 1 | 31,211 | 186,384 | 0 | 1 | 100.42.49.64 |
abstractdirectory.org | 3 | 35,692 | 3,172 | 6 | 6 | 108.167.155.80 |
abydosgate.com | 3 | 43,642 | 180 | 5 | 1 | 109.123.65.110 |
academiamexicanadecine.org | 4 | 43,395 | 116 | 0 | 5 | 173.254.5.245 |
acelink.info | 1 | 204,710 | 430 | 0 | 2 | 216.66.81.17 |
acewebdirectory.com | 4 | 44,927 | 359 | 22 | 1 | 72.18.135.116 |
acornonlineguide.com | 2 | 73,555 | 221 | 0 | 1 | 108.175.159.83 |
actualdirectory.info | 1 | 85,976 | 1,294 | 2 | 4 | 184.168.172.1 |
add-my-sites.com | 2 | 34,425 | 3,724 | 0 | 4 | 174.132.79.194 |
add-page.com | 3 | 27,771 | 48,499 | 6 | 7 | 79.96.77.131 |
adda4u.com | 3 | 32,175 | 5,322 | 2 | 5 | 74.54.99.227 |
adddir.info | 3 | 38,322 | 105,370 | 37 | 6 | 173.236.200.5 |
addfreeurldirectory.com | 1 | 249,440 | 262 | 0 | 1 | 184.107.216.178 |
addgoodsites.com | 2 | 32,536 | 137,418 | 3 | 5 | 100.42.49.64 |
addgoogle.com | 1 | 33,327 | 335 | 0 | 2 | 184.168.78.82 |
addgoogleurl.com | 1 | 33,344 | 237 | 0 | 2 | 67.213.72.174 |
addlinkzfree.com | 2 | 41,286 | 3,499 | 0 | 3 | 108.167.155.80 |
addmyurlto.com | 1 | 35,936 | 288 | 0 | 2 | 50.63.138.221 |
addnsearch.com | 1 | 79,360 | 1,314 | 0 | 4 | 74.206.165.171 |
addsite-submitfree.com | 4 | 20,192 | 219,293 | 69 | 7 | 173.236.200.5 |
addsitefree.com | 3 | 32,314 | 24,094 | 9 | 6 | 216.172.182.2 |
addsitelink.com | 4 | 29,642 | 119,379 | 92 | 5 | 184.172.184.128 |
addsiteurlfreewebdirectory.com | 1 | 63,564 | 304 | 0 | 0 | 85.25.100.116 |
addurl8.com | 1 | 36,513 | 296 | 0 | 2 | 67.213.72.173 |
addurldmoz.com | 1 | 30,260 | 358 | 0 | 2 | 67.213.72.170 |
addurlguide.com | 4 | 46,173 | 8,810 | 21 | 4 | 72.55.178.196 |
addurlrecreation.com | 1 | 30,994 | 208 | 0 | 2 | 67.213.72.173 |
addurlto.com | 1 | 28,446 | 577 | 2 | 2 | 50.63.139.248 |
addyourlinkfree.net | 1 | 224,898 | 122 | 0 | 1 | 174.132.159.158 |
addyourlnksnow.com | 3 | 31,777 | 4,109 | 10 | 5 | 74.53.9.210 |
adirectory.info | 3 | 163,570 | 1,404 | 0 | 7 | 209.217.228.21 |
adlerspace.com | 2 | 42,699 | 796 | 2 | 2 | 173.193.106.148 |
adroisys.com | 1 | 127,963 | 106 | 0 | 2 | 74.54.136.90 |
ads-on.biz | 3 | 145,353 | 61 | 0 | 0 | 118.139.174.1 |
adsklix.com | 2 | 250,267 | 964 | 0 | 3 | 67.159.44.4 |
advanceddirectory.org | 3 | 68,061 | 200 | 2 | 1 | 108.162.194.185 |
advertismeonweb.com | 1 | 867,010 | 62 | 0 | 2 | 188.241.5.109 |
advertiz.in | 1 | 65,639 | 211 | 0 | 0 | 50.28.10.63 |
advertmycar.com | 1 | 66,551 | 2,758 | 0 | 5 | 67.210.117.83 |
afreegallery.com | 2 | 80,846 | 58 | 0 | 0 | 50.63.70.1 |
agrieducation.org | 3 | 36,429 | 17,530 | 17 | 4 | 97.74.182.1 |
aimsoftinc.com | 1 | 152,309 | 105 | 0 | 0 | 118.139.174.1 |
aimweblink.com | 2 | 49,422 | 228 | 0 | 0 | 208.117.46.250 |
alistdirectory.com | 4 | 32,155 | 27,504 | 42 | 6 | 108.160.147.228 |
alistsites.com | 4 | 29,554 | 84,211 | 53 | 6 | 108.160.146.227 |
alive-directory.com | 3 | 37,165 | 179,476 | 27 | 3 | 108.160.144.28 |
all-products-services.com | 2 | 28,879 | 10,173 | 3 | 2 | 65.98.23.171 |
alligatordirectory.com | 1 | 41,295 | 306 | 0 | 2 | 174.132.79.189 |
allnicesites.com | 3 | 36,650 | 4,266 | 6 | 6 | 74.53.9.210 |
allstatesusadirectory.com | 3 | 35,181 | 3,044 | 9 | 3 | 69.73.147.119 |
allthewebdirectory.com | 1 | 80,546 | 2,481 | 0 | 1 | 184.107.216.178 |
allworldindex.com | 1 | 72,455 | 242 | 0 | 5 | 173.254.28.19 |
allyawant.com | 2 | 247,909 | 412 | 0 | 5 | 50.116.64.176 |
amazingweblinks.net | 1 | 120,748 | 1,049 | 0 | 5 | 108.167.155.39 |
americantreat.com | 2 | 40,418 | 24,813 | 2 | 5 | 72.167.148.181 |
amidalla.com | 4 | 6,738,718 | 2,140 | 61 | 9 | 213.239.223.4 |
amphotech.com | 5 | 25,790 | 465 | 11 | 14 | 50.22.18.146 |
ampledirectory.com | 1 | 40,475 | 1,389 | 0 | 5 | 209.217.228.21 |
amray.com | 4 | 32,227 | 65,326 | 64 | 12 | 74.126.5.252 |
ananar.com | 4 | 39,955 | 1,247 | 23 | 3 | 74.200.91.90 |
ananor.com | 1 | 262,158 | 366 | 13 | 1 | 74.204.168.163 |
angelicdir.com | 1 | 74,739 | 5,375 | 0 | 2 | 91.205.75.103 |
annadir.com | 1 | 100,212 | 535 | 0 | 3 | 74.52.72.189 |
annewebdirectory.com | 2 | 207,800 | 21,275 | 5 | 5 | 174.121.182.159 |
announcedirectory.com | 1 | 259,326 | 335 | 0 | 4 | 199.167.203.221 |
anyweblist.com | 2 | 168,922 | 3,123 | 0 | 6 | 204.50.14.10 |
aokdirectory.com | 2 | 90,617 | 2,342 | 2 | 5 | 66.40.52.177 |
aoldir.com | 4 | 25,688 | 84,525 | 37 | 2 | 174.37.169.16 |
apexoo.com | 4 | 79,158 | 20,292 | 2 | 7 | 208.78.102.219 |
aproxymously.com | 2 | 56,657 | 275,971 | 0 | 4 | 174.122.177.34 |
aquarius-dir.com | 1 | 31,818 | 186,380 | 23 | 1 | 173.192.229.146 |
arakne-links.com | 5 | 30,226 | 22,053 | 69 | 7 | 96.125.161.174 |
arbecey.com | 3 | 30,545 | 2,110 | 11 | 10 | 216.172.184.43 |
archivd.com | 6 | 25,460 | 832 | 28 | 4 | 69.93.90.88 |
arcm.info | 3 | 277,538 | 265 | 0 | 4 | 111.223.235.172 |
aresdirectoryresource.com | 2 | 30,366 | 818 | 2 | 2 | 109.123.103.129 |
arlinkdirectory.com | 1 | 237,404 | 626 | 0 | 4 | 69.73.140.130 |
armantinigroup.com | 1 | 78,594 | 95 | 0 | 0 | 50.63.70.1 |
artchange.info | 2 | 84,500 | 26 | 0 | 0 | 118.139.174.1 |
asdicguate.com | 2 | 89,201 | 4,215 | 0 | 4 | 108.167.179.148 |
ashriser.com | 1 | 156,337 | 414 | 0 | 3 | 62.27.5.109 |
askdirectory.com | 3 | 38,888 | 4,273 | 21 | 8 | 174.120.19.153 |
askmatrix.com | 4 | 25,646 | 15,740 | 50 | 2 | 96.9.134.11 |
atfani.com | 1 | 37,917 | 199 | 0 | 1 | 72.3.142.166 |
auhana.com | 3 | 44,888 | 31,640 | 0 | 2 | 50.22.194.127 |
ausdirectory.org | 4 | 248,124 | 2,642 | 27 | 0 | 216.97.229.135 |
autopilotdirectory.com | 1 | 32,149 | 300 | 0 | 2 | 89.252.247.59 |
avisual.net | 1 | 53,221 | 571 | 2 | 4 | 174.123.190.242 |
ayroo.com | 2 | 208,029 | 4,171 | 0 | 2 | 199.101.99.250 |
az-links.info | 3 | 38,424 | 5,892 | 5 | 6 | 207.7.89.167 |
azkulseo.com | 2 | 39,797 | 1,250 | 0 | 2 | 108.175.156.85 |
b21.eu | 1 | 273,777 | 1,702 | 0 | 0 | 204.152.255.12 |
babelea.org | 4 | 77,184 | 44,916 | 18 | 5 | 69.56.171.19 |
backlink101.com | 2 | 26,723 | 37,238 | 4 | 1 | 216.66.81.17 |
backlinkhub.com | 2 | 35,706 | 76,253 | 18 | 4 | 173.254.28.22 |
backpagedir.com | 1 | 33,076 | 186,325 | 0 | 1 | 46.252.197.1 |
bahiacar.com | 4 | 38,386 | 4,413 | 32 | 11 | 91.142.211.247 |
bc3.net | 1 | 76,359 | 481 | 0 | 7 | 78.46.196.166 |
bcf-web-directory.com | 1 | 110,465 | 146 | 0 | 3 | 72.167.183.26 |
bdirectory.info | 1 | 420,332 | 5,086 | 11 | 1 | 184.168.204.23 |
beegdirectory.com | 1 | 30,025 | 186,332 | 22 | 1 | 173.192.229.146 |
beira-cfp.org | 2 | 87,815 | 165 | 0 | 0 | 184.172.175.127 |
bestbizbooster.com | 2 | 57,784 | 54 | 0 | 0 | 174.132.192.190 |
bestbuydir.com | 1 | 29,498 | 186,364 | 23 | 1 | 46.252.197.1 |
bestdamndirectory.com | 3 | 170,906 | 21,033 | 26 | 5 | 193.180.120.5 |
bestfreewebsites.net | 4 | 32,211 | 22,665 | 13 | 3 | 83.125.21.108 |
bestlinkz.net | 3 | 28,982 | 34,192 | 8 | 5 | 174.132.76.162 |
bestmasterdirectory.com | 2 | 29,438 | 1,246 | 0 | 2 | 173.192.189.240 |
bestseowebdirectory.com | 2 | 26,498 | 5,439 | 10 | 0 | 174.132.89.233 |
betterseodirectory.com | 2 | 29,114 | 12,041 | 27 | 1 | 66.147.240.185 |
bgexpert.org | 1 | 139,409 | 78 | 0 | 0 | 50.63.70.1 |
bigdirectoryonline.com | 1 | 83,581 | 578 | 2 | 1 | 184.107.216.178 |
bing-directory.com | 1 | 27,937 | 186,366 | 20 | 1 | 108.160.144.28 |
bitmakergroup.biz | 2 | 78,726 | 49 | 0 | 0 | 118.139.174.1 |
bitterskank.com | 2 | 45,550 | 2,030 | 4 | 7 | 174.120.6.226 |
bizgarden.com | 1 | 216,853 | 704 | 0 | 7 | 174.120.236.16 |
biznopedia.com | 3 | 78,484 | 15,008 | 2 | 4 | 174.121.2.130 |
bj-seo.net | 1 | 718,217 | 25,267 | 0 | 0 | 173.254.30.41 |
blahoo.net | 3 | 28,953 | 37,183 | 8 | 4 | 209.212.153.244 |
blais-family.com | 2 | 150,873 | 149 | 0 | 4 | 184.172.176.131 |
blizzjd.com | 3 | 66,556 | 3,291 | 3 | 2 | 69.162.104.153 |
blog-catalog.info | 1 | 142,023 | 518 | 0 | 2 | 174.137.142.124 |
bloggingdirectory.org | 3 | 122,218 | 3,867 | 14 | 1 | 50.22.104.124 |
bloomsden.com | 1 | 71,755 | 161 | 0 | 1 | 174.36.189.20 |
blossomlinks.com | 2 | 52,766 | 3,273 | 2 | 5 | 205.196.214.91 |
blue-vertigo.net | 1 | 240,580 | 2,751 | 0 | 4 | 208.109.181.201 |
blueweburl.com | 1 | 180,042 | 922 | 2 | 4 | 173.245.61.120 |
boardse.com | 4 | 30,413 | 24,536 | 19 | 3 | 67.222.22.64 |
booksinprogress.com | 3 | 141,414 | 1,073 | 2 | 10 | 173.201.0.166 |
botmee.com | 3 | 164,139 | 4,355 | 13 | 2 | 173.192.220.101 |
bpdir.com | 3 | 33,550 | 3,647 | 6 | 5 | 199.96.156.120 |
britainbusinessdirectory.com | 5 | 36,355 | 34,308 | 20 | 3 | 69.73.166.118 |
brownlinker.com | 2 | 78,174 | 802 | 0 | 3 | 173.208.199.114 |
browsethehighstreet.com | 1 | 68,776 | 601 | 0 | 2 | 72.41.151.143 |
bubu.us | 2 | 73,482 | 765 | 2 | 6 | 96.125.172.73 |
burkeworks.com | 2 | 224,099 | 1,846 | 0 | 5 | 174.123.247.127 |
businessespana.com | 1 | 191,261 | 7,928 | 14 | 5 | 209.200.250.85 |
businessfreedirectory.com | 1 | 31,823 | 173 | 2 | 0 | 173.248.187.18 |
businesslinkdirectory.info | 1 | 391,522 | 521 | 0 | 4 | 174.36.22.84 |
businesslistingfree.com | 1 | 227,883 | 91 | 0 | 1 | 184.107.216.182 |
businessobjectsutilities.com | 1 | 103,619 | 35 | 0 | 0 | 50.63.70.1 |
businessseek.biz | 4 | 22,179 | 22,439 | 53 | 9 | 69.36.165.155 |
businez24by7.com | 2 | 30,290 | 934 | 5 | 2 | 65.98.23.170 |
busybits.com | 5 | 22,522 | 64,688 | 87 | 9 | 64.191.11.84 |
buyfacebookstock.com | 2 | 290,117 | 459 | 0 | 1 | 50.63.37.1 |
buysellinnz.com | 2 | 50,155 | 9,219 | 19 | 2 | 184.172.176.54 |
buysellpal.com | 2 | 623,429 | 61 | 0 | 2 | 50.63.37.1 |
buysll.com | 4 | 50,984 | 517 | 0 | 1 | 208.101.62.195 |
buytwitterstock.com | 1 | 485,257 | 210 | 0 | 1 | 50.63.37.1 |
cabdir.com | 1 | 164,738 | 108 | 0 | 2 | 199.48.255.89 |
cafelaunch.com | 2 | 46,356 | 1,124 | 2 | 5 | 72.167.232.144 |
calfd.org | 1 | 111,151 | 110 | 0 | 0 | 108.167.164.26 |
callyourcountry.com | 2 | 27,759 | 6,616 | 5 | 4 | 209.212.153.245 |
casaxou.com | 4 | 113,642 | 2,184 | 4 | 0 | 184.172.175.127 |
catalogwebdirectory.com | 1 | 30,713 | 452 | 0 | 2 | 50.63.64.236 |
cdsofi.org | 2 | 57,192 | 205 | 2 | 0 | 50.22.113.92 |
cesdirectory.com | 3 | 38,897 | 1,840 | 4 | 2 | 85.92.87.203 |
cfkap.com | 2 | 249,840 | 1,341 | 0 | 5 | 74.53.70.2 |
cheapbacklink.info | 1 | 109,937 | 17,848 | 0 | 4 | 74.53.124.183 |
cheapdirectory.net | 3 | 105,821 | 10,918 | 17 | 6 | 208.101.62.207 |
cheapwebdir.com | 2 | 114,207 | 2,207 | 0 | 6 | 204.50.14.10 |
chicagoix.com | 4 | 23,761 | 14,502 | 16 | 5 | 216.172.172.94 |
chinafixer.net | 1 | 113,959 | 685 | 0 | 5 | 174.132.190.218 |
church-it.org | 2 | 88,427 | 47 | 0 | 0 | 50.116.122.175 |
cipinet.com | 4 | 28,349 | 15,948 | 47 | 10 | 174.121.17.123 |
clasesdeteatro.info | 2 | 119,124 | 44 | 0 | 0 | 50.116.122.168 |
claudia-invites.com | 1 | 165,022 | 284 | 0 | 2 | 62.212.85.11 |
collend.pl | 2 | 1,433,256 | 2 | 0 | 0 | 188.165.195.50 |
combatability.info | 2 | 133,372 | 41 | 0 | 0 | 74.54.88.166 |
computernetworkhostingdomains.com | 3 | 66,191 | 9,024 | 4 | 1 | 173.201.246.128 |
concasida2010.org | 4 | 69,446 | 4,941 | 19 | 0 | 67.231.249.229 |
conexio-web.com | 1 | 199,313 | 211 | 0 | 2 | 93.114.46.43 |
contentrich.info | 2 | 153,053 | 1,213 | 0 | 3 | 208.43.2.244 |
coolinkdirectory.info | 1 | 29,802 | 5,423 | 0 | 2 | 208.109.46.110 |
corelinksdirectory.com | 1 | 843,089 | 1,962 | 0 | 4 | 174.37.200.3 |
corporategoof.com | 2 | 55,590 | 1,611 | 0 | 6 | 108.162.196.176 |
counterdeal.com | 4 | 40,948 | 11,213 | 0 | 7 | 208.83.209.18 |
craigslistdirectory.net | 1 | 28,002 | 186,312 | 21 | 1 | 50.23.218.100 |
credfollow.org | 2 | 156,960 | 887 | 0 | 0 | 50.63.37.1 |
criticsites.com | 2 | 53,380 | 2,174 | 5 | 4 | 74.53.9.210 |
crocodiledirectory.com | 1 | 46,809 | 278 | 0 | 2 | 174.132.79.189 |
crunchenstein.net | 4 | 205,869 | 1,801 | 8 | 2 | 46.252.206.1 |
cruxdirectory.com | 2 | 59,959 | 17,437 | 31 | 5 | 67.18.40.2 |
crystallinks.info | 2 | 30,164 | 44,747 | 9 | 2 | 173.254.28.42 |
ctapda.com | 3 | 30,162 | 4,520 | 24 | 12 | 69.73.181.9 |
culturebin.com | 2 | 50,951 | 467 | 2 | 3 | 216.172.164.87 |
cutmax.net | 1 | 195,971 | 143 | 0 | 7 | 67.222.26.142 |
cwrp.net | 3 | 62,300 | 6,174 | 4 | 4 | 207.111.247.15 |
cyandir.com | 2 | 42,534 | 358 | 0 | 3 | 66.147.244.183 |
cybercity.cc | 3 | 361,353 | 69 | 0 | 0 | 5.9.76.253 |
cyberwebsearch.com | 4 | 68,600 | 2,727 | 26 | 10 | 209.240.146.82 |
d-i-r.com | 1 | 121,409 | 3,445 | 0 | 9 | 72.44.88.147 |
d-igg.com | 2 | 240,297 | 360 | 0 | 1 | 182.18.169.99 |
daduru.com | 1 | 44,595 | 3,485 | 0 | 5 | 209.85.101.24 |
dawsoneng.com | 2 | 55,015 | 1,919 | 0 | 4 | 67.18.16.114 |
dealdirectory.com | 2 | 84,132 | 772 | 2 | 10 | 174.36.44.154 |
dearbetty.com | 3 | 43,408 | 1,963 | 9 | 3 | 69.93.0.153 |
deeplinks.biz | 1 | 256,791 | 414 | 0 | 4 | 199.167.202.121 |
defstu.com | 2 | 148,061 | 151,781 | 5 | 4 | 67.159.44.4 |
delphidirectory.com | 1 | 86,402 | 406 | 0 | 10 | 67.23.248.28 |
demowebs.info | 1 | 40,038 | 16,710 | 0 | 2 | 173.254.30.235 |
digabusiness.com | 4 | 29,572 | 90,743 | 40 | 5 | 208.100.59.7 |
dir-listing.com | 3 | 181,511 | 1,708 | 13 | 4 | 208.115.231.170 |
dir-submitter.info | 1 | 28,170 | 958 | 2 | 3 | 108.175.156.85 |
directa.biz | 2 | 106,173 | 421 | 0 | 1 | 50.28.10.63 |
directmylink.com | 3 | 39,230 | 7,800 | 15 | 6 | 67.18.184.147 |
directorage.com | 1 | 106,103 | 8,010 | 0 | 6 | 173.248.188.178 |
directoriestosubmitto.com | 1 | 34,338 | 344 | 0 | 2 | 67.213.72.172 |
directorise.com | 2 | 44,899 | 307,601 | 6 | 1 | 173.236.175.34 |
directory-free.com | 2 | 25,974 | 66,514 | 58 | 7 | 212.146.84.43 |
directory-global.com | 2 | 126,035 | 3,238 | 4 | 8 | 174.120.236.10 |
directory-link.info | 1 | 25,885 | 39,180 | 21 | 7 | 69.162.69.231 |
directory-link.net | 3 | 94,635 | 26,198 | 6 | 5 | 46.105.244.252 |
directory.LazyLucky.com | 2 | 169,763 | 750 | 0 | 0 | 97.74.79.252 |
directory.am | 4 | 38,254 | 3,208 | 19 | 0 | 74.54.77.245 |
directory2010.info | 1 | 125,344 | 981 | 0 | 5 | 206.108.54.211 |
directory24x7store.com | 1 | 79,372 | 86 | 0 | 2 | 50.63.70.1 |
directory4sites.com | 1 | 58,212 | 413 | 0 | 6 | 67.225.130.11 |
directory4u.org | 4 | 30,485 | 32,524 | 19 | 5 | 199.96.156.208 |
directory4web.net | 1 | 140,278 | 64,055 | 0 | 1 | 87.98.255.2 |
directory99.com | 1 | 146,457 | 4,699 | 0 | 4 | 208.53.158.84 |
directory999.com | 2 | 103,259 | 638 | 0 | 5 | 85.128.191.237 |
directorybin.com | 4 | 29,651 | 18,363 | 37 | 6 | 108.160.146.229 |
directorybling.com | 1 | 40,929 | 66 | 0 | 0 | 66.90.104.67 |
directorybusiness.org | 1 | 36,454 | 365 | 0 | 3 | 173.236.31.114 |
directorycomet.com | 2 | 76,839 | 1,658 | 0 | 4 | 206.212.243.114 |
directorydab.com | 1 | 160,759 | 24,133 | 6 | 1 | 66.90.104.67 |
directorydudes.com | 1 | 65,803 | 1,187 | 0 | 2 | 67.228.51.122 |
directoryexplorer.com | 1 | 110,877 | 532 | 0 | 3 | 69.89.31.104 |
directoryfire.com | 3 | 30,906 | 4,842 | 5 | 6 | 208.131.153.187 |
directoryfreelink.com | 2 | 223,219 | 8,711 | 5 | 5 | 204.50.14.10 |
directorygist.com | 2 | 49,716 | 5,809 | 0 | 1 | 174.122.44.73 |
directoryhost.org | 1 | 124,342 | 333 | 0 | 2 | 50.87.100.31 |
directoryimpulse.com | 2 | 275,382 | 1,053 | 0 | 4 | 174.132.167.126 |
directorylinkpage.com | 1 | 70,663 | 318 | 0 | 2 | 65.254.43.178 |
directorymark.com | 2 | 57,936 | 832 | 2 | 4 | 50.23.169.118 |
directorymule.com | 1 | 52,271 | 1,041 | 0 | 5 | 184.172.178.52 |
directorynow.info | 5 | 1,209,173 | 1,248 | 33 | 4 | 184.168.174.1 |
directoryoftheweb.com | 3 | 184,358 | 11,114 | 5 | 8 | 178.33.227.10 |
directorypage.net | 2 | 69,822 | 121,202 | 2 | 5 | 209.62.89.212 |
directoryquiz.com | 3 | 39,213 | 130 | 0 | 1 | 67.231.240.157 |
directoryseofriendly.com | 1 | 290,772 | 1,616 | 0 | 5 | 174.120.137.252 |
directoryshock.com | 2 | 70,756 | 13,599 | 3 | 4 | 209.59.194.20 |
directorysphere.com | 3 | 34,620 | 783 | 19 | 5 | 209.236.117.145 |
directorystaff.com | 3 | 30,651 | 5,106 | 15 | 3 | 209.212.153.240 |
directorysyndicate.info | 2 | 61,274 | 1,133 | 2 | 4 | 184.168.172.1 |
directorytag.com | 1 | 82,493 | 2,003 | 3 | 2 | 67.228.51.122 |
directoryvault.com | 4 | 19,135 | 79,398 | 103 | 6 | 108.160.146.226 |
directorywebbsites.com | 2 | 69,686 | 382 | 0 | 2 | 100.42.63.123 |
directoryweblist.com | 1 | 250,655 | 12,094 | 3 | 0 | 100.42.63.123 |
directoryws.com | 3 | 30,796 | 54,169 | 10 | 6 | 108.167.155.86 |
directseek.info | 1 | 236,020 | 909 | 0 | 2 | 216.172.184.105 |
dirhello.com | 2 | 28,201 | 11,554 | 9 | 3 | 209.212.153.240 |
dirlinked.info | 1 | 74,912 | 1,862 | 0 | 3 | 100.42.49.116 |
dirnets.com | 2 | 223,513 | 807 | 0 | 1 | 76.162.156.184 |
diroo.org | 4 | 24,580 | 18,721 | 29 | 2 | 50.61.228.152 |
dirozo.com | 2 | 109,780 | 972 | 2 | 5 | 216.227.216.220 |
dirplanet.in | 5 | 56,403 | 3,051 | 20 | 0 | 31.3.152.165 |
dirsharp.com | 6 | 87,807 | 1,309 | 19 | 1 | 70.85.36.19 |
dmozgoogle.com | 1 | 72,639 | 261 | 0 | 2 | 50.22.90.59 |
dmozonline.com | 3 | 40,658 | 4,454 | 3 | 5 | 96.30.37.212 |
dn2i.com | 2 | 65,204 | 869 | 2 | 5 | 68.169.54.40 |
dndirectory.net | 1 | 51,224 | 602 | 0 | 7 | 208.43.104.92 |
dofollowwebdirectory.com | 1 | 124,700 | 588 | 3 | 1 | 184.107.216.178 |
doharugbyfc.com | 3 | 243,372 | 3,028 | 3 | 11 | 72.55.190.169 |
dollarlinksdirectory.com | 2 | 115,958 | 2,769 | 0 | 2 | 209.190.61.36 |
domaining.in | 5 | 27,311 | 522,967 | 157 | 0 | 68.233.244.176 |
domico.info | 1 | 54,523 | 17,922 | 0 | 3 | 173.192.182.197 |
dotbig.com | 2 | 50,947 | 2,225 | 0 | 9 | 209.144.31.26 |
dothefeedback.com | 1 | 35,218 | 221 | 0 | 3 | 74.53.104.183 |
douz.org | 2 | 41,687 | 13,178 | 0 | 1 | 173.236.31.114 |
dynamicwebdir.com | 3 | 32,582 | 12,184 | 13 | 1 | 69.56.128.176 |
e-migra.org | 4 | 105,549 | 151 | 13 | 0 | 67.231.254.177 |
e-prasa.info | 3 | 74,302 | 56 | 2 | 0 | 50.63.70.1 |
earnunitedflash.com | 2 | 162,066 | 1,971 | 15 | 5 | 188.40.102.244 |
earthloader.com | 2 | 380,853 | 413 | 2 | 4 | 66.7.221.7 |
ecochicrunway.com | 2 | 151,478 | 84 | 0 | 1 | 50.63.124.1 |
ecommercegeneva.com | 2 | 69,493 | 111 | 0 | 4 | 184.173.205.66 |
ecteach.com | 1 | 99,869 | 2,064 | 0 | 3 | 50.63.101.1 |
educationaddurl.com | 1 | 34,857 | 983 | 0 | 2 | 50.63.190.13 |
eezeedata.info | 1 | 137,116 | 15,026 | 0 | 6 | 82.165.138.253 |
efficientdirectory.com | 1 | 66,342 | 1,393 | 0 | 4 | 209.217.228.21 |
eicq.org | 3 | 29,961 | 302 | 9 | 0 | 203.144.4.68 |
elephantdirectory.com | 1 | 46,095 | 263 | 0 | 2 | 174.132.79.190 |
elinksdir.com | 2 | 112,802 | 4,155 | 2 | 5 | 209.217.234.232 |
elitesitesdirectory.com | 3 | 25,505 | 3,632 | 20 | 6 | 206.130.102.115 |
eliteweb.cc | 4 | 205,168 | 14,443 | 11 | 0 | 174.137.48.130 |
ellysdirectory.com | 3 | 37,427 | 26,444 | 21 | 0 | 174.136.57.140 |
emogilev.com | 3 | 267,387 | 1,145 | 0 | 4 | 67.231.254.184 |
en-web-directory.com | 1 | 105,814 | 234 | 0 | 3 | 72.167.183.26 |
enforum.net | 3 | 27,233 | 7,681 | 32 | 5 | 108.162.194.64 |
enginedirectory.info | 2 | 326,965 | 894 | 2 | 4 | 64.202.189.170 |
ereferences.org | 1 | 45,953 | 335 | 0 | 3 | 66.7.205.59 |
esignpoint.com | 1 | 120,219 | 6,467 | 0 | 3 | 64.38.10.114 |
estateaddurl.com | 1 | 40,571 | 408 | 0 | 2 | 50.63.139.248 |
estimamo.com | 3 | 354,384 | 367 | 2 | 7 | 108.162.198.70 |
etup.org | 3 | 45,531 | 2,081 | 10 | 6 | 174.120.171.253 |
eumw2005.com | 4 | 122,826 | 339 | 19 | 10 | 69.41.241.61 |
event-cam.eu | 3 | 65,523 | 1,086 | 2 | 0 | 188.165.195.50 |
evermorearticles.com | 1 | 55,993 | 129 | 0 | 1 | 200.58.119.92 |
evilgeniusmusic.com | 2 | 51,620 | 10,883 | 3 | 7 | 216.172.177.96 |
ewebdir.com | 2 | 149,004 | 4,378 | 0 | 6 | 208.101.62.207 |
exactdir.com | 2 | 473,206 | 24,553 | 2 | 4 | 188.240.2.133 |
expofreightuae.com | 4 | 71,798 | 50 | 0 | 0 | 174.120.202.58 |
extreme-directory.net | 2 | 59,242 | 1,401 | 2 | 4 | 79.170.40.35 |
ezistreet.com | 4 | 240,243 | 1,271 | 4 | 0 | 58.108.220.236 |
ezwebdir.com | 2 | 104,263 | 1,322 | 0 | 1 | 111.118.213.216 |
faba.us | 3 | 76,019 | 12,251 | 4 | 6 | 108.175.156.203 |
fairelection.us | 3 | 28,961 | 1,453 | 12 | 3 | 69.56.247.115 |
familydir.com | 1 | 34,399 | 186,263 | 0 | 1 | 46.252.197.1 |
fast-directory.com | 2 | 38,939 | 852 | 0 | 1 | 216.12.199.148 |
fastdirectorylist.com | 3 | 31,420 | 108,146 | 41 | 1 | 184.172.186.32 |
fastseodirectory.com | 1 | 42,022 | 33,486 | 0 | 1 | 173.254.28.42 |
fat64.net | 4 | 31,227 | 10,892 | 18 | 6 | 66.147.244.173 |
feedsgo.com | 3 | 35,292 | 537 | 0 | 5 | 69.72.207.254 |
femeba.net | 4 | 33,317 | 22,334 | 30 | 6 | 72.55.178.196 |
fenixdirectory.info | 1 | 129,649 | 15,104 | 2 | 1 | 184.168.172.1 |
fgcyj.com | 2 | 34,987 | 5,624 | 4 | 2 | 173.201.246.11 |
fiftyhitch.com | 1 | 1,325,398 | 1,665 | 0 | 5 | fiftyhitch.com |
fileindex.net | 2 | 44,006 | 750 | 4 | 8 | 78.46.196.166 |
findinfo.ws | 2 | 44,695 | 574 | 0 | 0 | 208.109.123.156 |
findsites.net | 2 | 33,558 | 1,491 | 0 | 7 | 70.85.145.16 |
finest4.com | 3 | 24,761 | 88,894 | 12 | 7 | 23.23.230.19 |
firectory.com | 2 | 117,865 | 1,160 | 5 | 2 | 85.17.136.100 |
firmpay.com | 2 | 60,635 | 717 | 3 | 9 | 74.220.207.92 |
firstfindengine.com | 1 | 285,160 | 2,007 | 0 | 5 | 70.85.220.8 |
flaveslinkdirectory.com | 1 | 199,389 | 153 | 0 | 3 | 216.172.184.114 |
flightsearech.com | 2 | 111,425 | 4,809 | 3 | 4 | 50.63.37.1 |
fodss.com | 2 | 66,554 | 455 | 0 | 2 | 184.173.237.194 |
forage.in | 3 | 54,956 | 6,654 | 16 | 0 | 202.71.129.99 |
formsubmiturl.com | 1 | 34,809 | 327 | 0 | 2 | 67.213.72.174 |
foxdirectory.tk | 3 | 47,715 | 24,568 | 6 | 0 | 31.22.4.35 |
free-business-directory-listing.com | 1 | 184,894 | 131 | 0 | 1 | 184.107.216.178 |
free-directory-list.in | 2 | 181,977 | 40 | 0 | 0 | 111.118.178.177 |
free-directory-online.com | 1 | 195,231 | 91 | 0 | 1 | 184.107.216.178 |
free-directory.ws | 1 | 101,418 | 174 | 0 | 0 | 173.193.106.148 |
free-link-submission.com | 1 | 142,753 | 56 | 0 | 1 | 50.116.98.108 |
free-links-articles-directory.com | 3 | 31,104 | 18,566 | 23 | 1 | 50.22.149.115 |
free-submission.net | 3 | 27,296 | 24,065 | 0 | 0 | 212.97.132.145 |
free-web-directory-link.com | 3 | 91,717 | 41 | 0 | 0 | 50.63.70.1 |
free-webdirectory.net | 3 | 47,746 | 1,709 | 6 | 1 | 66.96.147.118 |
freebestdirectory.com | 1 | 80,028 | 375 | 0 | 1 | 69.89.31.227 |
freedir.co | 1 | 86,168 | 8,506 | 5 | 0 | 208.109.46.110 |
freedirectory4u.org | 1 | 60,997 | 1,587 | 0 | 1 | 118.139.170.1 |
freedirectoryrecord.com | 2 | 45,809 | 13,730 | 3 | 1 | 184.172.186.60 |
freelinkings.com | 1 | 29,492 | 4,497 | 0 | 1 | 208.91.198.220 |
freelinksubmit123.com | 2 | 28,836 | 30,769 | 3 | 1 | 173.254.30.41 |
freelistingdirectory.info | 2 | 222,976 | 10,384 | 8 | 6 | 204.50.14.10 |
freemyspacecodes.info | 3 | 159,623 | 15,726 | 0 | 0 | 50.63.70.1 |
freeonlinedirectoryexpress.com | 1 | 40,196 | 387 | 2 | 3 | 174.120.188.55 |
freeonlineregister.com | 1 | 341,748 | 1,657 | 0 | 6 | 173.192.152.175 |
freeonlinesubmitdirectory.com | 1 | 131,234 | 869 | 0 | 4 | 72.9.254.154 |
freepixelpromotion.com | 1 | 86,069 | 46 | 0 | 6 | 174.132.79.163 |
freeprwebdirectory.com | 7 | 19,541 | 97,148 | 42 | 4 | 98.131.165.30 |
freesubmitdirectory.info | 3 | 198,204 | 8,775 | 8 | 6 | 50.116.98.178 |
freetoprankdirectory.com | 4 | 76,689 | 14,408 | 24 | 3 | 69.73.148.23 |
freeurllink.com | 2 | 67,232 | 21,732 | 0 | 6 | 72.167.141.27 |
freewebdirectory101.com | 1 | 38,107 | 582 | 0 | 2 | 173.201.34.14 |
freewebdirectorytweets.com | 1 | 70,788 | 681 | 0 | 1 | 50.63.70.1 |
freeweblinksdir.com | 1 | 58,546 | 229 | 0 | 2 | 74.220.207.96 |
freeweblist.info | 1 | 93,809 | 1,661 | 0 | 6 | 204.50.14.10 |
freewebsitedirectories.com | 3 | 54,438 | 46,782 | 41 | 5 | 76.162.203.31 |
freewebsitedirectory.com | 2 | 25,231 | 180,636 | 148 | 7 | 64.131.70.195 |
freeweburlsubmit.com | 2 | 62,741 | 248 | 0 | 0 | 96.31.35.72 |
freeworldpost.com | 1 | 892,704 | 42 | 0 | 1 | 67.210.126.145 |
freshtv.com | 4 | 81,486 | 21,257 | 26 | 12 | 116.0.23.174 |
freshwebzdirectory.com | 1 | 81,411 | 421 | 0 | 2 | 79.170.44.116 |
fudir.com | 1 | 81,745 | 1,305 | 7 | 3 | 207.210.66.194 |
fulllogo.com | 3 | 81,559 | 2,153 | 36 | 8 | 67.20.110.226 |
fundvis.org | 3 | 173,657 | 79 | 0 | 12 | 69.56.191.39 |
fwebdirectory.com | 2 | 42,573 | 6,556 | 2 | 2 | 67.222.129.194 |
gainweb.org | 4 | 39,481 | 28,592 | 42 | 15 | 72.44.89.83 |
gazingus.org | 4 | 33,914 | 44,862 | 25 | 0 | 50.63.80.1 |
generaldirectory.biz | 2 | 83,088 | 1,697 | 2 | 6 | 193.239.44.98 |
generalnetdirectory.com | 1 | 188,079 | 2,479 | 3 | 5 | 74.53.227.37 |
generalwebdirectory.info | 2 | 175,565 | 3,698 | 4 | 6 | 204.50.14.10 |
generalwebdirectory.org | 2 | 31,814 | 612 | 0 | 3 | 204.197.253.202 |
geronimodirectory.com | 1 | 34,278 | 2,575 | 2 | 1 | 37.59.179.193 |
gesidre.org | 2 | 87,484 | 48 | 0 | 0 | 74.54.136.115 |
getlinkdirectory.com | 2 | 32,038 | 35,018 | 6 | 1 | 216.66.81.17 |
getweblist.com | 3 | 42,043 | 740 | 2 | 6 | 173.192.170.105 |
gizmopromo.net | 3 | 30,621 | 946 | 0 | 13 | 85.25.120.13 |
global-markings.com | 3 | 152,071 | 12,800 | 13 | 7 | 96.0.206.177 |
globalbusinesslist.com | 2 | 123,540 | 2,212 | 0 | 7 | 174.120.236.8 |
globewebdirectory.com | 3 | 220,827 | 5,198 | 0 | 3 | 67.222.6.108 |
glweb.org | 2 | 214,483 | 516 | 0 | 0 | 50.63.70.1 |
godirectory.org | 2 | 54,037 | 4,770 | 3 | 0 | 184.173.246.22 |
goexporters.com | 3 | 52,940 | 299 | 0 | 0 | 118.139.174.1 |
googlepagerankexperts.com | 2 | 40,179 | 1,885 | 0 | 2 | 174.132.79.190 |
googleseoblog.com | 1 | 59,528 | 401 | 0 | 2 | 184.168.31.196 |
grafixdirectory.com | 2 | 29,598 | 1,004 | 4 | 3 | 70.40.193.183 |
graydir.com | 1 | 78,260 | 7,227 | 0 | 3 | 66.147.244.183 |
greylinker.com | 1 | 57,206 | 1,057 | 0 | 3 | 173.208.199.114 |
growingdirectory.com | 1 | 108,393 | 303 | 0 | 1 | 65.75.166.203 |
gtglax.net | 2 | 43,738 | 2,752 | 0 | 12 | 88.214.200.5 |
guestroomrecs.com | 2 | 287,359 | 4,411 | 2 | 6 | 62.121.88.244 |
guidancecentergala.org | 1 | 107,448 | 46 | 0 | 0 | 74.53.110.233 |
gulca.com | 2 | 70,129 | 174 | 0 | 6 | 68.178.254.199 |
gx-seo.net | 1 | 39,179 | 32,852 | 3 | 1 | 69.195.123.180 |
h-dm.com | 5 | 100,649 | 100 | 22 | 13 | 70.85.23.154 |
h-log.com | 4 | 49,440 | 8,570 | 27 | 7 | 96.30.33.172 |
hahwebdirectory.com | 2 | 40,330 | 584 | 0 | 2 | 118.139.185.1 |
halfwaymag.com | 3 | 88,039 | 140 | 0 | 0 | 50.63.70.1 |
haplo.org | 3 | 261,592 | 83 | 3 | 1 | 174.132.192.92 |
hawkdirectory.com | 2 | 37,291 | 396 | 2 | 1 | 174.132.79.188 |
heatdirectory.com | 1 | 115,663 | 81 | 0 | 2 | 69.56.253.62 |
hemisfera.eu | 2 | 69,968 | 9,854 | 10 | 0 | 87.98.231.3 |
hemisfera.org | 2 | 312,047 | 146 | 3 | 2 | 200.58.111.104 |
hewdirectory.com | 1 | 51,204 | 380 | 0 | 5 | 66.28.139.176 |
heydirectory.com | 2 | 57,323 | 7,820 | 0 | 5 | 184.173.206.34 |
hitalyzer.com | 4 | 28,878 | 26,133 | 28 | 7 | 208.43.1.19 |
hitchfifty.com | 2 | 284,575 | 3,473 | 0 | 5 | 72.52.162.173 |
homessearchengine.com | 1 | 127,970 | 1,664 | 0 | 5 | 74.53.227.114 |
hotlinkdirectory.com | 1 | 43,466 | 36,035 | 0 | 1 | 173.254.5.222 |
hotnews.org | 2 | 46,896 | 1,989 | 0 | 0 | 184.170.142.66 |
hounslowdirectory.org | 2 | 71,077 | 54 | 0 | 0 | 174.132.149.131 |
howtosubmiturl.com | 1 | 32,368 | 172 | 0 | 2 | 50.63.191.217 |
hrce.com | 1 | 226,446 | 4,367 | 0 | 6 | 72.44.89.152 |
hsdirectory.com | 2 | 50,882 | 20,008 | 9 | 8 | 50.23.3.24 |
huahua.info | 3 | 253,451 | 9,093 | 10 | 5 | 74.53.96.18 |
huludirectory.com | 1 | 28,954 | 186,328 | 0 | 1 | 96.127.171.234 |
humanedited.org | 3 | 315,075 | 569 | 4 | 2 | 198.31.50.144 |
hvwebdirectory.com | 2 | 38,701 | 1,124 | 0 | 5 | 64.15.155.101 |
hydeparkbooks.com | 3 | 40,822 | 17,364 | 8 | 12 | 69.93.119.126 |
hyperlinklist.net | 2 | 112,020 | 654 | 0 | 1 | 50.63.102.1 |
ikoou.com | 1 | 191,056 | 64 | 0 | 2 | 83.222.246.134 |
ilinkr.com | 1 | 106,793 | 1,581 | 2 | 6 | 64.131.79.158 |
imperialwebdirectory.com | 1 | 30,096 | 175 | 0 | 2 | 50.63.54.164 |
importanceofseo.com | 1 | 39,901 | 451 | 0 | 2 | 184.168.96.21 |
importantinfo.com | 2 | 196,130 | 72 | 0 | 15 | 72.44.88.147 |
in-sla.org | 4 | 68,677 | 306 | 19 | 9 | 174.121.139.170 |
increasedirectory.com | 3 | 106,460 | 4,006 | 8 | 5 | 68.178.254.16 |
indexwebdirectory.com | 3 | 212,416 | 5,879 | 0 | 7 | 72.52.154.100 |
indiaslinkdirectory.com | 1 | 136,621 | 170 | 0 | 1 | 64.34.161.61 |
indiawebdirectory.net | 2 | 90,978 | 240 | 0 | 3 | 108.162.194.200 |
indigodir.com | 2 | 78,863 | 996 | 0 | 3 | 66.147.244.183 |
info-listings.com | 4 | 32,836 | 85,285 | 122 | 8 | 174.132.78.158 |
info-web-directory.com | 1 | 148,508 | 192 | 0 | 3 | 72.167.183.26 |
informationcrawler.com | 3 | 51,594 | 2,400 | 2 | 8 | 184.170.142.66 |
infotechwv.com | 1 | 350,954 | 1,044 | 0 | 4 | 174.120.96.98 |
insectuniverse.com | 3 | 229,136 | 2,084 | 3 | 11 | 204.50.14.10 |
insidedirectory.info | 2 | 216,224 | 869 | 0 | 4 | 67.214.188.165 |
inspirage.info | 4 | 100,794 | 33 | 0 | 1 | 74.52.120.222 |
internetmarketingandservices.com | 2 | 55,575 | 1,776 | 0 | 4 | 216.22.60.154 |
interwebindex.com | 2 | 163,551 | 2,275 | 0 | 5 | 74.208.81.103 |
invdir.com | 1 | 259,227 | 628 | 0 | 4 | 74.81.85.18 |
iphonewikiserver.com | 1 | 104,160 | 41 | 0 | 0 | 50.63.70.1 |
iresmarche.net | 1 | 128,373 | 87 | 0 | 0 | 50.63.70.1 |
is43.com | 2 | 33,185 | 56,519 | 16 | 6 | 79.170.44.100 |
island-ciovo.com | 2 | 276,421 | 2,547 | 0 | 5 | 174.36.139.50 |
istriebro.com | 2 | 100,050 | 891 | 6 | 3 | 184.172.145.195 |
iwdb.org | 1 | 152,908 | 98 | 0 | 1 | 173.254.28.39 |
iwebseotool.com | 1 | 31,284 | 407 | 0 | 2 | 67.213.72.170 |
iwote.net | 1 | 136,731 | 91,675 | 0 | 2 | 213.186.33.2 |
jaborwhalky.com | 3 | 54,124 | 2,458 | 4 | 7 | 184.173.210.128 |
jambezi.com | 1 | 497,054 | 2,156 | 0 | 5 | 50.116.98.175 |
jambomart.com | 2 | 35,135 | 8,383 | 17 | 2 | 184.172.186.63 |
jayde.com | 6 | 6,648 | 174,077 | 344 | 16 | 66.28.139.176 |
jhucr.org | 4 | 30,346 | 3,757 | 32 | 11 | 96.125.166.32 |
jjhou.com | 4 | 195,688 | 2,884 | 19 | 13 | 96.125.163.237 |
joinsociety.com | 3 | 82,064 | 3,198 | 3 | 9 | 96.125.166.223 |
jsjacobs.com | 1 | 133,735 | 61 | 0 | 0 | 50.63.70.1 |
justbrowse.org | 1 | 117,968 | 381 | 0 | 2 | 72.167.232.200 |
justfreedir.com | 1 | 238,787 | 8,054 | 5 | 1 | 129.121.238.109 |
justsayknow.info | 3 | 250,935 | 32 | 0 | 0 | 50.63.70.1 |
karatenomichi.org | 3 | 87,950 | 53 | 0 | 0 | 174.120.202.58 |
kbitsoftware.com | 2 | 57,997 | 8,792 | 5 | 4 | 184.172.186.63 |
kiadirectory.com | 1 | 152,018 | 141 | 0 | 0 | 173.254.28.18 |
kinds.biz | 2 | 102,702 | 3,998 | 0 | 6 | 84.32.116.152 |
klackdirectory.com | 1 | 100,253 | 164 | 0 | 2 | 69.56.253.62 |
koaladir.com | 3 | 96,727 | 1,593 | 3 | 5 | 168.143.123.21 |
lancoba.com | 2 | 199,759 | 3,657 | 0 | 5 | 74.53.227.37 |
landlost.com | 1 | 195,888 | 2,510 | 0 | 7 | 50.116.6.81 |
landoflinks.com | 4 | 31,364 | 2,940 | 24 | 12 | 64.71.34.14 |
larkdirectory.com | 1 | 60,182 | 117 | 0 | 1 | 174.132.79.186 |
lemon-directory.com | 1 | 32,157 | 55,720 | 2 | 0 | 96.127.171.234 |
lightdir.com | 1 | 433,114 | 251 | 0 | 1 | 67.228.105.72 |
limboportal.com | 6 | 93,499 | 50,752 | 70 | 8 | 70.85.20.36 |
link-place.com | 1 | 299,044 | 334 | 0 | 1 | 74.52.105.211 |
link-your-site.com | 3 | 67,121 | 6,032 | 19 | 1 | 80.90.198.172 |
link1directory.com | 3 | 27,344 | 10,176 | 7 | 5 | 174.132.168.186 |
linkadded.com | 3 | 179,715 | 8,814 | 0 | 5 | 174.122.177.34 |
linkaddurl.com | 4 | 29,032 | 38,914 | 61 | 6 | 108.175.156.85 |
linkandthink.org | 5 | 37,163 | 4,066 | 31 | 0 | 69.56.134.203 |
linkanimal.info | 2 | 97,194 | 37,514 | 0 | 4 | 100.42.59.26 |
linkaroo.net | 1 | 163,241 | 584 | 0 | 1 | 50.22.194.59 |
linkaudit.info | 1 | 405,137 | 646 | 0 | 2 | 216.119.138.154 |
linkauthor.info | 1 | 133,701 | 11,405 | 0 | 4 | 216.66.81.17 |
linkcafe.info | 1 | 379,508 | 139 | 0 | 2 | 216.119.138.154 |
linkcapture.info | 1 | 131,873 | 13,232 | 2 | 4 | 216.24.200.157 |
linkcatalog.org | 1 | 175,388 | 153 | 0 | 1 | 174.137.142.124 |
linkcentre.com | 4 | 17,456 | 69,412 | 63 | 16 | 78.129.192.80 |
linkconnection.info | 1 | 127,032 | 5,950 | 0 | 5 | 208.109.181.72 |
linkdir.info | 3 | 64,060 | 2,122 | 4 | 6 | 108.167.155.84 |
linkedin-directory.com | 1 | 63,242 | 128 | 2 | 0 | 173.248.187.18 |
linkfortoday.com | 1 | 348,686 | 97 | 0 | 0 | 91.196.124.63 |
linkhike.com | 1 | 149,950 | 112 | 0 | 2 | 74.53.199.219 |
linkhub.info | 2 | 163,733 | 1,990 | 3 | 6 | 199.46.127.178 |
linkhype.com | 2 | 63,272 | 494 | 2 | 4 | 50.63.33.1 |
linkindex.biz | 1 | 161,600 | 593 | 3 | 2 | 184.170.142.66 |
linkinmate.com | 2 | 198,210 | 70 | 0 | 1 | 174.120.168.60 |
linklair.com | 2 | 83,994 | 3,410 | 0 | 6 | 67.205.46.157 |
linkland.org | 1 | 36,473 | 840 | 0 | 5 | 173.236.31.114 |
linkmela.com | 2 | 45,444 | 702 | 4 | 2 | 69.65.3.197 |
linknthink.com | 2 | 33,466 | 2,430 | 0 | 2 | 67.228.51.122 |
linkpedia.net | 3 | 33,633 | 2,972 | 5 | 6 | 209.217.228.21 |
linkrabbit.info | 1 | 94,296 | 1,960 | 0 | 4 | 216.66.81.17 |
linkroo.com | 3 | 37,328 | 30,166 | 7 | 5 | 72.9.239.114 |
linksamurai.info | 2 | 58,927 | 10,451 | 6 | 2 | 74.54.49.74 |
linksguru.net | 4 | 35,264 | 2,127 | 8 | 5 | 199.27.134.45 |
linkshark.info | 1 | 113,285 | 2,365 | 0 | 4 | 216.66.81.17 |
linkskhoj.com | 1 | 656,960 | 641 | 0 | 6 | 74.52.77.242 |
linksmonster.net | 1 | 211,714 | 2,674 | 0 | 4 | 50.116.67.202 |
linkspot.info | 1 | 181,170 | 146 | 0 | 2 | 216.119.138.154 |
linkspurt.com | 4 | 30,725 | 1,883 | 21 | 4 | 174.121.1.58 |
linkstoo.com | 1 | 430,867 | 441 | 0 | 7 | 173.248.187.233 |
linkstreasurydirectory.org | 1 | 34,709 | 94 | 0 | 0 | 173.254.28.35 |
linksubmission.info | 2 | 66,854 | 348 | 0 | 2 | 74.54.49.75 |
linkswebdirectory.com | 1 | 314,272 | 14,306 | 0 | 4 | 213.175.192.37 |
linkteve.com | 4 | 56,164 | 545 | 7 | 6 | 173.199.150.161 |
linkviper.info | 1 | 111,454 | 1,127 | 0 | 4 | 216.66.81.17 |
linkwheeltool.com | 1 | 43,170 | 33,032 | 0 | 1 | 173.254.28.42 |
liondirectory.com | 1 | 62,014 | 132 | 0 | 1 | 174.132.79.187 |
list-your-website.com | 3 | 32,256 | 49,804 | 4 | 5 | 208.113.226.191 |
listasweb.info | 1 | 172,790 | 1,110 | 0 | 6 | 70.86.78.183 |
listingreference.com | 1 | 142,187 | 103 | 0 | 0 | 70.86.182.131 |
listsite.org | 1 | 76,362 | 13,828 | 0 | 1 | 184.173.202.98 |
littlewebdirectory.com | 5 | 23,106 | 125,837 | 203 | 7 | 208.109.138.201 |
liveurls.net | 2 | 125,590 | 5,539 | 0 | 4 | 173.245.60.52 |
loopdir.com | 1 | 30,445 | 246 | 0 | 2 | 69.56.245.88 |
lotusdir.com | 1 | 75,638 | 176 | 0 | 2 | 69.56.245.88 |
lpdl.org | 2 | 134,552 | 4,220 | 11 | 3 | 67.20.79.90 |
lutonengineering.com | 3 | 31,047 | 13,651 | 18 | 5 | 50.23.4.224 |
luvtogether.com | 2 | 220,271 | 204 | 16 | 5 | 76.162.202.2 |
m-s-n.org | 1 | 223,525 | 1,162 | 0 | 6 | 78.40.229.158 |
magdalyns.com | 4 | 34,316 | 6,154 | 19 | 5 | 184.172.173.168 |
magpiedirectory.com | 1 | 46,746 | 265 | 0 | 2 | 174.132.79.189 |
mainostoimistot.info | 3 | 38,231 | 7,729 | 0 | 5 | 212.97.132.103 |
makeabusehistory.org | 2 | 89,929 | 42 | 0 | 0 | 184.173.198.19 |
malaysiafinder.com | 2 | 305,233 | 4,732 | 2 | 5 | 184.173.203.194 |
mapamondsites.com | 2 | 66,777 | 2,513 | 8 | 5 | 199.188.201.150 |
mastermoz.com | 4 | 20,164 | 27,058 | 14 | 8 | 72.52.146.229 |
masterprdirectory.com | 1 | 70,914 | 155 | 0 | 2 | 69.93.224.110 |
maxidirectory.com | 3 | 325,190 | 19,295 | 0 | 7 | 79.170.40.46 |
mediadesk.org | 1 | 356,154 | 4,580 | 10 | 4 | 174.132.89.171 |
mediafiredirectlink.com | 1 | 38,238 | 156 | 0 | 0 | 184.171.252.200 |
meerkatdirectory.com | 2 | 83,611 | 490 | 0 | 2 | 66.96.147.101 |
megalinks.us | 1 | 98,644 | 125 | 0 | 2 | 69.56.245.88 |
menoj.com | 1 | 324,742 | 1,061 | 6 | 1 | 204.197.254.113 |
metextile.com | 2 | 54,803 | 2,381 | 2 | 7 | 174.120.7.58 |
mfgdir.com | 2 | 124,722 | 3,878 | 0 | 1 | 74.81.85.18 |
mfrancisco.com | 5 | 79,813 | 1,606 | 16 | 5 | 72.55.190.165 |
microdirectory.info | 1 | 122,661 | 1,232 | 3 | 4 | 74.52.114.250 |
migliana.com | 2 | 312,545 | 3,187 | 0 | 5 | 91.186.0.8 |
mintdir.com | 1 | 105,355 | 272 | 0 | 3 | 66.147.244.183 |
mmli.org | 4 | 104,675 | 72,533 | 35 | 5 | 66.7.212.189 |
mobilen-bg.com | 1 | 159,288 | 63 | 0 | 4 | 88.198.57.135 |
moderndir.net | 1 | 229,083 | 38,458 | 0 | 4 | 108.174.52.230 |
monsterdirectory.info | 2 | 905,259 | 658 | 35 | 4 | 184.168.174.1 |
mrfind.com | 2 | 597,040 | 3,413 | 0 | 9 | 74.208.65.47 |
murjah.com | 2 | 43,751 | 1,662 | 0 | 3 | 173.201.166.154 |
my-company-profile.com | 1 | 98,366 | 1,712 | 0 | 2 | 65.98.23.173 |
mydirectorylink.com | 2 | 520,136 | 517 | 2 | 5 | 173.254.28.130 |
mymaxlinks.info | 2 | 55,392 | 14,270 | 4 | 6 | 93.189.111.34 |
myonlinewebdirectory.org | 1 | 147,724 | 475 | 4 | 1 | 184.107.216.178 |
mysiteseeker.com | 2 | 54,643 | 7,724 | 0 | 3 | 72.167.232.29 |
mysubmitdirectorys.com | 1 | 49,338 | 48,920 | 0 | 1 | 216.66.81.17 |
mytpn.com | 4 | 341,329 | 556 | 4 | 1 | 74.81.85.18 |
nadrealizem.com | 3 | 39,393 | 3,805 | 2 | 4 | 173.193.106.148 |
nationalbusinessbuilders.com | 2 | 243,662 | 1,507 | 0 | 5 | 97.74.144.107 |
nbha.net | 2 | 32,366 | 4,250 | 2 | 9 | 66.147.240.155 |
ncb.biz | 1 | 83,048 | 298 | 0 | 8 | 78.46.196.166 |
neatdir.com | 1 | 140,886 | 116 | 0 | 2 | 69.56.245.88 |
netwerker.com | 3 | 117,101 | 60,662 | 53 | 14 | 69.56.143.239 |
newtalks.org | 2 | 72,367 | 74 | 0 | 0 | 118.139.174.1 |
nfcusa.org | 1 | 103,276 | 72 | 0 | 0 | 50.63.70.1 |
niidi.com | 1 | 347,383 | 618 | 0 | 6 | 209.217.226.181 |
njdcisr.com | 1 | 470,159 | 1,728 | 0 | 5 | 174.121.218.38 |
nkssnet.net | 3 | 55,448 | 14,337 | 16 | 5 | 174.132.168.130 |
noble-services.com | 1 | 212,949 | 45 | 0 | 0 | 50.63.70.1 |
noblejas.info | 1 | 96,838 | 68,417 | 16 | 4 | 174.136.18.131 |
nosdir.com | 1 | 398,070 | 145 | 0 | 2 | 67.159.44.4 |
nuclearland.com | 3 | 30,847 | 3,342 | 5 | 6 | 69.89.31.150 |
occupycoloradosprings.org | 1 | 154,452 | 151 | 2 | 0 | 184.168.172.1 |
ofcpage.info | 1 | 89,634 | 10,364 | 0 | 1 | 173.254.5.245 |
oips.eu | 1 | 121,437 | 1,277 | 0 | 0 | 37.128.119.4 |
okaysites.com | 3 | 104,086 | 15,819 | 4 | 7 | 72.11.146.2 |
omleo.com | 1 | 273,622 | 24,688 | 0 | 1 | 87.98.255.4 |
one-sublime-directory.com | 2 | 36,171 | 119,997 | 2 | 5 | 100.42.59.15 |
onelinkseo.com | 2 | 30,401 | 1,564 | 0 | 1 | 66.147.244.182 |
onemission.com | 5 | 19,462 | 15,176 | 23 | 15 | 88.198.21.19 |
online-web-directory.com | 1 | 116,752 | 446 | 4 | 1 | 184.107.216.178 |
onlinesociety.org | 4 | 25,682 | 204 | 14 | 1 | 64.27.55.162 |
onpaco.com | 2 | 56,125 | 18,445 | 12 | 5 | 66.147.244.173 |
onyoville.com | 2 | 28,302 | 45,355 | 2 | 4 | 216.66.81.17 |
oodir.com | 3 | 42,774 | 4,941 | 12 | 6 | 173.201.62.1 |
oozex.com | 1 | 233,002 | 390 | 0 | 7 | 184.168.166.1 |
openseodirectory.com | 1 | 320,243 | 146 | 0 | 1 | 184.107.216.178 |
opensitedirectory.com | 2 | 45,995 | 2,110 | 0 | 5 | 74.220.207.141 |
openwebdirectories.com | 1 | 37,221 | 444 | 0 | 2 | 50.63.139.248 |
operationuplink.org | 5 | 24,840 | 14,466 | 96 | 10 | 67.222.7.23 |
optimisationdirectory.info | 2 | 82,618 | 807 | 3 | 4 | 184.168.172.1 |
orglearningblog.com | 2 | 92,859 | 291 | 0 | 6 | 174.121.139.150 |
orientdirectory.com | 1 | 164,086 | 675 | 0 | 4 | 74.204.174.33 |
outstandingentries.com | 1 | 346,419 | 119 | 0 | 1 | 67.18.101.153 |
pantherdirectory.com | 1 | 61,872 | 144 | 0 | 1 | 174.132.79.186 |
pblake.com | 4 | 99,349 | 11,315 | 13 | 12 | 72.29.90.39 |
pcacb.org | 3 | 39,874 | 5,418 | 0 | 1 | 173.201.247.98 |
peakeys.com | 2 | 30,559 | 48,310 | 0 | 2 | 216.66.81.17 |
pegasusdirectory.com | 2 | 26,593 | 289,852 | 271 | 7 | 208.100.7.226 |
pelicandirectory.com | 1 | 46,958 | 530 | 0 | 2 | 174.132.79.189 |
petrweb.info | 1 | 92,606 | 272 | 0 | 2 | 85.17.87.187 |
phantatomix.com | 3 | 184,589 | 2,211 | 0 | 2 | 69.162.104.153 |
phantis.com | 6 | 180,755 | 354,793 | 67 | 15 | 108.16.123.59 |
phase2directory.com | 1 | 211,759 | 76 | 0 | 1 | 184.173.233.157 |
phillyfirstonthefourth.com | 4 | 29,851 | 8,143 | 19 | 7 | 67.19.231.209 |
photoox.com | 3 | 197,327 | 311,709 | 52 | 3 | 67.159.44.4 |
phpldtemplateguide.com | 3 | 161,345 | 66,553 | 13 | 1 | 184.172.186.63 |
picna.com | 1 | 307,036 | 1,651 | 0 | 6 | 174.121.34.220 |
pinkdir.com | 1 | 107,629 | 284 | 0 | 3 | 66.147.244.183 |
pinklinker.com | 2 | 55,000 | 4,238 | 0 | 3 | 173.208.199.114 |
piseries.com | 3 | 31,576 | 6,108 | 14 | 7 | 213.175.219.140 |
plentylinks.com | 3 | 155,889 | 2,235 | 7 | 6 | 67.227.161.254 |
podun.com | 2 | 122,360 | 1,999 | 0 | 5 | 174.132.192.126 |
pokya.com | 1 | 33,774 | 219 | 0 | 3 | 108.167.152.219 |
poozl.com | 3 | 143,823 | 4,727 | 10 | 7 | 174.121.225.35 |
pop-net.org | 3 | 75,156 | 14,401 | 18 | 0 | 67.222.107.162 |
poweredbyesyndicat.com | 1 | 326,918 | 260 | 0 | 2 | 66.147.244.221 |
pr-club.net | 3 | 37,956 | 2,387 | 8 | 5 | 66.28.139.176 |
pr3plus.com | 3 | 29,366 | 8,448 | 12 | 6 | 108.160.147.229 |
pragerpedia.org | 1 | 119,209 | 1,076 | 0 | 3 | 174.120.201.109 |
primebacklinks.com | 2 | 33,481 | 10,634 | 0 | 2 | 74.54.49.71 |
primelinksdirectory.com | 2 | 33,584 | 10,979 | 0 | 2 | 74.54.49.66 |
prodirectory.in | 2 | 212,301 | 535 | 0 | 0 | 67.231.249.228 |
prolificpi.com | 1 | 318,148 | 1,823 | 0 | 5 | 74.52.31.121 |
prolinkdirectory.com | 4 | 23,622 | 78,145 | 95 | 7 | 208.100.59.115 |
prometheus-agenda.com | 2 | 228,772 | 2,065 | 0 | 5 | 204.50.20.140 |
promowebdirectory.com | 1 | 30,681 | 366 | 0 | 2 | 50.63.64.97 |
prvoices.com | 2 | 255,903 | 1,655 | 2 | 5 | 74.54.218.210 |
pudosplanet.com | 2 | 111,727 | 1,210 | 0 | 1 | 199.115.228.14 |
purpledir.com | 2 | 54,579 | 346 | 0 | 3 | 66.147.244.183 |
pxdaj.com | 2 | 36,177 | 12,440 | 3 | 2 | 184.172.180.65 |
qindex.org | 1 | 37,334 | 762 | 0 | 2 | 174.122.127.218 |
rajaf.com | 3 | 58,052 | 529 | 9 | 1 | 204.197.254.114 |
ranksurf.com | 1 | 493,147 | 72 | 0 | 6 | 108.167.174.98 |
rapidenetwork.eu | 5 | 117,228 | 155 | 53 | 0 | 195.162.24.206 |
readytofind.com | 2 | 90,189 | 799 | 0 | 0 | 174.132.188.99 |
red-links.com | 3 | 94,508 | 86,193 | 8 | 7 | 83.169.45.71 |
rediscoverlinks.com | 2 | 79,678 | 220 | 0 | 2 | 85.17.87.187 |
reliancedir.com | 3 | 34,628 | 8,002 | 15 | 5 | 74.53.9.210 |
reviewedweb.com | 3 | 92,887 | 1,874 | 5 | 7 | 208.109.138.206 |
ribcast.com | 4 | 49,429 | 5,221 | 9 | 5 | 67.227.180.57 |
rightwingeye.com | 4 | 34,509 | 5,444 | 19 | 8 | 188.121.54.206 |
ro-web-directory.com | 1 | 74,636 | 495 | 0 | 3 | 72.167.183.26 |
roadwebdirectory.info | 2 | 401,865 | 101,940 | 4 | 4 | 173.193.2.116 |
roask.com | 4 | 82,277 | 34,384 | 39 | 6 | 69.10.52.178 |
romaniaindex.com | 2 | 114,561 | 1,684 | 0 | 5 | 37.26.106.130 |
rubydir.com | 1 | 87,586 | 445 | 0 | 3 | 66.147.244.183 |
runfatcat.com | 3 | 42,369 | 11,090 | 4 | 4 | 108.175.152.87 |
sajtkik.com | 3 | 154,629 | 294 | 0 | 4 | 50.116.122.98 |
sales-india.com | 2 | 40,680 | 15,091 | 7 | 2 | 184.172.186.63 |
samaprzyjemnosc.pl | 3 | 33,604 | 28,504 | 6 | 0 | 86.111.243.5 |
samiwebdirectory.com | 2 | 82,676 | 270 | 2 | 4 | 173.193.191.3 |
sanory.com | 3 | 53,300 | 4,312 | 6 | 8 | 174.120.97.58 |
sapiensweb.info | 2 | 81,127 | 197 | 2 | 4 | 173.193.106.148 |
sawz.com | 3 | 381,313 | 5,080 | 15 | 13 | 173.236.52.181 |
sbclansite.com | 2 | 93,041 | 35,478 | 20 | 7 | 96.30.33.172 |
scirebuilders.org | 3 | 88,698 | 226 | 4 | 6 | 108.162.198.183 |
sd-zhaoli.com | 1 | 29,739 | 194 | 0 | 1 | 216.172.164.87 |
seanwise.com | 5 | 7,013,202 | 4,423 | 0 | 0 | 74.200.72.178 |
searchblitz.net | 1 | 119,106 | 24,821 | 9 | 7 | 70.85.145.2 |
searchinfo.in | 1 | 135,086 | 535 | 0 | 0 | 69.89.31.250 |
searchnsearch.com | 2 | 76,500 | 6,827 | 0 | 10 | 67.227.183.7 |
searchpowertour.com | 1 | 356,574 | 2,013 | 0 | 5 | 74.53.227.114 |
searchsight.com | 4 | 12,530 | 118,521 | 63 | 9 | 66.49.16.17 |
searchwebdirectory1.org | 1 | 38,949 | 103 | 0 | 0 | 108.167.174.84 |
searchwebworld.com | 3 | 184,509 | 4,596 | 30 | 7 | 72.52.154.100 |
searchwiz.org | 4 | 256,130 | 14,481 | 17 | 8 | 69.194.230.35 |
secondwavesystems.com | 3 | 39,902 | 6,750 | 5 | 4 | 174.120.151.123 |
secwh.com | 2 | 65,194 | 8,249 | 2 | 1 | 184.168.190.1 |
seeapi.org | 2 | 61,342 | 2,218 | 0 | 3 | 173.193.136.40 |
seekandsubmit.com | 1 | 411,319 | 1,052 | 2 | 6 | 174.132.115.60 |
sefurls.com | 1 | 415,593 | 7,649 | 0 | 4 | 204.197.254.207 |
seo-friend.com | 3 | 37,063 | 5,330 | 9 | 6 | 70.86.56.171 |
seo5t.net | 1 | 174,832 | 10,345 | 0 | 0 | 173.254.5.222 |
seobookkeyword.com | 1 | 34,841 | 769 | 0 | 2 | 50.63.184.112 |
seobookkeywordtool.com | 1 | 33,669 | 162 | 0 | 2 | 67.213.72.173 |
seochains.com | 1 | 62,963 | 455 | 0 | 1 | 184.154.133.162 |
seodeeplinks.net | 3 | 28,152 | 9,895 | 28 | 5 | 209.212.153.240 |
seodir.eu | 3 | 129,808 | 1,415 | 3 | 0 | 207.7.93.225 |
seodirectorylinks.com | 2 | 38,363 | 15,036 | 2 | 5 | 206.217.137.41 |
seodirectoryonline.org | 3 | 46,851 | 1,247 | 13 | 0 | 216.12.199.148 |
seofriendlydirectory4u.com | 1 | 93,430 | 14,757 | 0 | 5 | 176.9.113.15 |
seogatordirectory.com | 1 | 284,742 | 62 | 0 | 1 | 77.79.245.90 |
seogenielinks.com | 2 | 29,490 | 35,533 | 0 | 1 | 216.66.81.17 |
seokeeper.com | 2 | 30,715 | 774 | 2 | 3 | 209.212.153.242 |
seolistdirectory.com | 1 | 175,830 | 472 | 0 | 1 | 184.107.216.178 |
seolistsite.com | 2 | 388,375 | 2,137 | 0 | 5 | 74.53.227.114 |
seoname.com | 1 | 317,992 | 12,409 | 0 | 5 | 108.59.5.212 |
seorange.com | 2 | 30,019 | 7,844 | 31 | 5 | 209.212.153.240 |
seorapidshare.com | 1 | 31,356 | 194 | 0 | 2 | 50.63.64.97 |
seoseek.net | 4 | 37,692 | 9,235 | 10 | 4 | 209.212.153.243 |
seospace.info | 2 | 163,609 | 1,201 | 3 | 5 | 209.217.226.93 |
seostardirectory.com | 1 | 246,016 | 224 | 0 | 1 | 184.107.216.178 |
seotarget.net | 3 | 27,946 | 7,070 | 35 | 5 | 209.212.153.240 |
seotoolslist.com | 1 | 747,579 | 4,678 | 11 | 6 | 174.36.139.50 |
seowebdir.net | 2 | 25,735 | 9,024 | 34 | 5 | 209.212.153.240 |
shadowshow.net | 2 | 94,420 | 723 | 0 | 12 | 173.193.106.148 |
shopmacys4free.com | 2 | 218,690 | 126,230 | 0 | 4 | 67.159.44.4 |
sighbercafe.com | 2 | 33,967 | 16,903 | 2 | 9 | 70.40.216.90 |
sirpac.org | 4 | 194,617 | 14,077 | 16 | 5 | 184.172.189.64 |
sitealmanac.com | 1 | 57,215 | 354 | 0 | 1 | 174.132.79.186 |
sitechakra.com | 2 | 111,828 | 1,103 | 0 | 5 | 118.139.185.1 |
sitelistings.net | 3 | 30,721 | 6,640 | 8 | 4 | 74.52.155.82 |
sitepromotiondirectory.com | 6 | 40,194 | 10,962 | 18 | 3 | 69.73.157.136 |
sitepros.org | 1 | 88,036 | 253 | 0 | 6 | 216.172.184.100 |
sites-plus.com | 4 | 36,630 | 5,951 | 13 | 9 | 78.46.196.166 |
sitewebdirectory.com | 2 | 234,823 | 1,853 | 0 | 4 | 174.37.183.98 |
siwn.org | 3 | 61,906 | 374 | 2 | 1 | 66.225.231.2 |
skoobe.biz | 5 | 34,091 | 68,230 | 98 | 7 | 213.175.219.141 |
skypemedia.com | 3 | 32,895 | 10,941 | 27 | 7 | 69.162.69.231 |
slccable.com | 2 | 34,042 | 210 | 3 | 1 | 184.154.109.250 |
smallvillenet.org | 1 | 148,631 | 167 | 0 | 0 | 50.63.70.1 |
smartlinks.us | 4 | 27,754 | 16,051 | 23 | 6 | 64.38.10.114 |
smsweb.org | 6 | 20,211 | 5,677 | 111 | 15 | 67.222.5.173 |
sobdir.com | 2 | 114,703 | 4,775 | 13 | 4 | 50.28.90.105 |
sourcedirectory.info | 2 | 46,609 | 1,404 | 2 | 3 | 69.41.236.34 |
sourceok.com | 1 | 194,374 | 92 | 0 | 1 | 76.164.230.237 |
sparckernel.org | 1 | 1,960,063 | 194 | 0 | 9 | 66.96.147.115 |
speedydirectory.info | 1 | 81,147 | 1,403 | 2 | 4 | 74.52.28.121 |
squirreldirectory.com | 1 | 82,593 | 141 | 2 | 1 | 174.132.79.187 |
ss6.net | 1 | 69,081 | 449 | 0 | 10 | 72.44.88.147 |
ssrda.com | 1 | 304,188 | 2,576 | 0 | 12 | 119.148.65.141 |
stronglinks.net | 2 | 273,600 | 102 | 0 | 2 | 108.162.195.162 |
stumbledirectory.com | 1 | 65,144 | 129 | 0 | 2 | 69.93.1.175 |
submit-links-directory.com | 1 | 279,439 | 497 | 0 | 5 | 91.201.60.23 |
submit-urls.net | 1 | 235,788 | 35,814 | 0 | 1 | 67.20.83.144 |
submit-web-directory.com | 1 | 194,364 | 117 | 0 | 1 | 184.107.216.178 |
submit.biz | 4 | 21,272 | 80,489 | 118 | 8 | 91.186.1.142 |
submit2dir.info | 3 | 30,747 | 118,676 | 32 | 6 | 173.236.200.5 |
submit2us.com | 1 | 275,171 | 333 | 0 | 5 | 209.217.236.52 |
submitfreeurl.net | 1 | 119,781 | 188 | 0 | 0 | 96.125.173.235 |
submitlink.info | 3 | 28,322 | 130,753 | 40 | 6 | 173.236.200.5 |
submitlinkdirectory.org | 3 | 36,520 | 39,730 | 5 | 1 | 216.66.81.17 |
submitlinkhere.net | 1 | 34,217 | 35,381 | 3 | 1 | 173.254.29.47 |
submitmylinks.com | 1 | 284,799 | 295 | 0 | 1 | 184.107.216.178 |
submitocean.com | 3 | 60,980 | 431 | 0 | 3 | 174.120.233.34 |
submittolinkdirectory.com | 3 | 262,486 | 6,678 | 0 | 4 | 72.167.232.149 |
submittourl.com | 1 | 28,720 | 348 | 0 | 2 | 67.213.72.174 |
submiturldirectory.com | 1 | 113,315 | 5,217 | 0 | 3 | 69.89.31.192 |
submiturls.biz | 2 | 65,574 | 3,672 | 3 | 3 | 72.167.232.152 |
submiturlwebsitestore.com | 1 | 40,126 | 36,668 | 5 | 1 | 216.66.81.17 |
submitwebdirectories.com | 1 | 36,615 | 700 | 0 | 2 | 50.63.184.112 |
submityoursite.com | 4 | 54,298 | 1,334 | 2 | 15 | 207.150.195.49 |
suggest-link.net | 4 | 42,593 | 39,605 | 49 | 6 | 184.172.184.128 |
suggest-url.net | 3 | 32,076 | 20,120 | 9 | 5 | 74.53.110.130 |
suggest-urls.com | 2 | 140,507 | 26,072 | 22 | 2 | 74.220.215.72 |
sumodirectory.com | 6 | 65,493 | 7,610 | 38 | 4 | 31.22.4.10 |
sunnykfir.com | 1 | 29,253 | 47,339 | 2 | 2 | 173.254.28.42 |
superdirectory.us | 1 | 99,260 | 126 | 0 | 2 | 69.93.1.175 |
supermoz.com | 1 | 120,385 | 70 | 0 | 2 | 69.93.1.175 |
surfsafely.com | 4 | 24,252 | 8,838 | 56 | 13 | 66.221.229.62 |
svguia.com | 1 | 32,196 | 2,350 | 10 | 9 | 184.173.231.187 |
swapklix.com | 1 | 724,119 | 268,711 | 34 | 3 | 67.159.44.4 |
sweetdir.com | 1 | 107,570 | 123 | 0 | 2 | 69.93.1.175 |
sysel.org | 1 | 236,231 | 14,452 | 0 | 3 | 46.28.105.62 |
tagshub.com | 3 | 38,348 | 6,513 | 0 | 6 | 184.170.142.66 |
tajboy.com | 4 | 115,574 | 2,728 | 26 | 1 | 198.58.83.239 |
target-directory.com | 1 | 31,105 | 186,296 | 0 | 1 | 46.252.197.1 |
tav-web.org | 4 | 121,844 | 81 | 12 | 2 | 70.85.39.123 |
tctco.com | 2 | 51,013 | 588 | 2 | 14 | 184.170.142.66 |
tech4on.com | 3 | 30,692 | 6,690 | 17 | 4 | 81.169.145.156 |
technoworld.org | 2 | 850,549 | 404 | 0 | 0 | 67.18.21.8 |
tekmarkusa.com | 3 | 292,833 | 1,840 | 0 | 5 | 174.121.34.220 |
tfwd.org | 2 | 33,918 | 2,291 | 0 | 6 | 108.167.155.80 |
tgp-internet.com | 2 | 43,045 | 14,522 | 13 | 3 | 173.193.115.169 |
thatsdirectory.com | 1 | 102,150 | 4,348 | 0 | 3 | 108.163.231.43 |
theacdreunion.org | 1 | 111,025 | 53 | 0 | 1 | 69.93.71.151 |
theblogsite.info | 1 | 300,531 | 60 | 0 | 0 | 118.139.174.1 |
thecommercialdirectory.com | 1 | 148,914 | 6,463 | 0 | 6 | 184.172.173.13 |
thedailysubmit.com | 3 | 1,124,939 | 13,984 | 0 | 2 | 173.201.246.128 |
thedirectory1.com | 1 | 44,722 | 112 | 3 | 0 | 72.167.48.204 |
thefreewebdirectory.com | 2 | 138,614 | 438 | 31 | 4 | 76.162.203.25 |
thegreatdirectory.org | 3 | 28,590 | 3,686 | 7 | 4 | 110.232.140.20 |
thegreenislandproject.org | 3 | 97,331 | 317 | 8 | 0 | 67.231.247.76 |
thelinkssys.com | 2 | 40,479 | 3,865 | 0 | 0 | 69.56.255.2 |
theneedinfo.com | 3 | 104,971 | 1,167 | 0 | 2 | 66.7.193.50 |
therobot.info | 2 | 238,183 | 5,160 | 5 | 6 | 50.22.107.99 |
theseedsofinnovation.com | 2 | 326,869 | 1,551 | 0 | 5 | 72.52.154.100 |
thetopsites.net | 4 | 3,696,784 | 151,093 | 68 | 8 | 188.40.62.76 |
thetortellini.com | 5 | 32,914 | 6,405 | 98 | 6 | 50.63.208.1 |
threelinkdirectory.com | 3 | 29,396 | 26,775 | 8 | 1 | 46.4.63.146 |
thsbl.com | 2 | 32,269 | 553 | 0 | 5 | 174.132.165.155 |
timbenderhats.com | 1 | 143,567 | 436 | 2 | 6 | 173.193.106.148 |
tipsclear.com | 3 | 1,317,178 | 7,418 | 0 | 0 | 174.132.115.203 |
titos.pl | 3 | 311,670 | 24 | 0 | 0 | 176.31.249.180 |
tkdirectory.com | 2 | 279,366 | 7,347 | 3 | 5 | 67.20.115.154 |
top-best.ro | 2 | 235,828 | 15,257 | 0 | 0 | 89.33.197.74 |
top-sites.org | 4 | 193,061 | 18,007 | 41 | 7 | 188.121.58.1 |
topdironline.com | 4 | 138,538 | 1,925 | 70 | 5 | 108.160.152.114 |
toplinkage.net | 1 | 41,364 | 38,239 | 2 | 1 | 216.66.81.17 |
toprankdirectory.org | 3 | 223,502 | 64 | 11 | 0 | 108.179.210.178 |
tosurf.org | 3 | 29,531 | 24,648 | 0 | 5 | 184.107.182.130 |
towerpromote.com | 2 | 48,200 | 5,008 | 14 | 11 | 129.121.186.185 |
toyparade-mag.com | 1 | 1,605,362 | 1,376 | 0 | 5 | 72.52.145.97 |
trikser.com | 2 | 30,313 | 48,696 | 7 | 2 | 173.254.28.22 |
trinadvertising.com | 3 | 29,224 | 27,403 | 0 | 2 | 74.54.49.66 |
triodirectory.com | 1 | 80,366 | 223 | 2 | 0 | 209.140.18.25 |
triplewdirectory.com | 4 | 33,962 | 7,553 | 19 | 6 | 74.208.57.48 |
triumphdir.com | 1 | 95,238 | 116 | 0 | 2 | 69.93.1.175 |
tsection.com | 5 | 21,540 | 64,926 | 104 | 7 | 119.148.77.10 |
tslindia.org | 4 | 58,609 | 65 | 2 | 0 | 50.22.113.92 |
tuenschel.com | 2 | 393,902 | 1,928 | 0 | 5 | 204.50.20.140 |
twitdirectory.net | 3 | 102,869 | 92 | 15 | 0 | 69.56.194.99 |
twitteraddurl.com | 1 | 32,626 | 301 | 0 | 2 | 50.63.58.17 |
uaahomecoming.com | 1 | 374,745 | 2,257 | 0 | 5 | 174.120.137.226 |
uaan.org | 1 | 1,918,625 | 425 | 0 | 0 | 65.75.183.86 |
udump.net | 3 | 220,883 | 1,917 | 13 | 5 | 216.172.173.70 |
ufana.org | 2 | 130,277 | 166 | 2 | 0 | 184.173.213.160 |
uhfpres.org | 3 | 65,059 | 188 | 2 | 0 | 64.37.52.22 |
ukinternetdirectory.net | 6 | 36,750 | 6,201 | 19 | 3 | 69.73.149.37 |
ultimatefreedir.com | 1 | 223,822 | 6,942 | 7 | 1 | 129.121.134.109 |
umoz.org | 4 | 38,518 | 3,838 | 11 | 2 | 174.36.139.54 |
unionofdirectories.com | 2 | 43,250 | 140,144 | 2 | 1 | 184.168.172.1 |
uniquetitles.com | 1 | 35,655 | 16,586 | 0 | 2 | 65.98.23.170 |
uppercut.us | 1 | 164,463 | 18,098 | 0 | 1 | 64.22.89.70 |
upsdirectory.com | 1 | 30,159 | 186,280 | 0 | 1 | 108.160.144.28 |
uradio.pl | 2 | 113,483 | 3,088 | 0 | 0 | 188.165.195.50 |
urlchief.com | 4 | 102,481 | 3,550 | 20 | 6 | 67.222.14.207 |
urltrawler.com | 1 | 37,384 | 347 | 0 | 3 | 174.132.79.187 |
urlvault.info | 2 | 336,004 | 3,214 | 0 | 5 | 173.193.201.135 |
urlwebdirectories.com | 1 | 31,282 | 282 | 0 | 2 | 97.74.207.16 |
urlz.net | 1 | 110,755 | 115,243 | 56 | 7 | 173.245.60.150 |
us-web-directory.com | 2 | 86,321 | 782 | 4 | 3 | 72.167.183.26 |
usalistingdirectory.com | 5 | 36,200 | 4,947 | 27 | 3 | 69.73.153.180 |
ustrustcanada.info | 2 | 78,660 | 2,079 | 0 | 5 | 216.66.81.17 |
uwrite.info | 3 | 227,248 | 4,357 | 6 | 5 | 50.63.51.1 |
valudirectory.com | 3 | 110,485 | 3,377 | 11 | 10 | 129.121.212.232 |
variogate.com | 1 | 236,250 | 2,531 | 0 | 5 | 208.101.62.207 |
vblinkdir.com | 2 | 368,922 | 272 | 0 | 5 | 204.197.254.196 |
vbo.me | 3 | 191,463 | 1,063 | 0 | 0 | 70.85.25.190 |
vde-americas.com | 3 | 88,228 | 55 | 0 | 0 | 118.139.174.1 |
vibethat.org | 3 | 97,094 | 45 | 0 | 0 | 50.116.98.188 |
victechsupport.com | 2 | 53,138 | 507 | 0 | 2 | 173.254.56.22 |
vietnam-hub.com | 1 | 156,659 | 913 | 0 | 6 | 69.73.139.162 |
vinabet.net | 1 | 284,764 | 2,753 | 2 | 6 | 174.120.18.61 |
vipdig.com | 3 | 31,583 | 5,850 | 2 | 5 | 173.245.61.148 |
virtualwebdirectories.com | 1 | 36,094 | 582 | 0 | 2 | 50.63.184.112 |
voltapublishing.com | 3 | 97,283 | 866 | 5 | 9 | 208.43.212.208 |
voxcap.com | 4 | 53,871 | 787 | 16 | 3 | 173.199.150.160 |
w3catalog.com | 4 | 43,070 | 23,453 | 23 | 2 | 64.27.51.194 |
w4directory.com | 3 | 197,183 | 7,176 | 17 | 5 | 66.96.145.106 |
wafuonline.com | 2 | 125,741 | 87 | 0 | 5 | 70.85.106.207 |
walledirectory.info | 2 | 396,931 | 59,996 | 0 | 4 | 204.93.167.27 |
wayenough.com | 3 | 27,702 | 573 | 0 | 3 | 69.93.1.175 |
wayry.com | 2 | 356,972 | 228 | 0 | 1 | 216.27.10.227 |
web-directory-online.org | 1 | 140,411 | 2,315 | 4 | 1 | 184.107.216.178 |
web-directory-site.com | 1 | 40,969 | 1,095 | 4 | 0 | 184.168.190.1 |
web-search-directory.com | 1 | 44,659 | 997 | 4 | 0 | 184.168.190.1 |
web4link.com | 2 | 929,053 | 825 | 0 | 5 | 174.121.51.64 |
web4url.com | 4 | 39,060 | 2,205 | 26 | 5 | 173.193.113.16 |
webbozz.com | 4 | 28,945 | 3,786 | 28 | 6 | 108.167.164.41 |
webbylist.com | 2 | 174,926 | 12,404 | 0 | 4 | 184.154.26.218 |
webdirectory.co | 4 | 101,890 | 10,032 | 37 | 0 | 97.74.55.128 |
webdirectory1.info | 1 | 240,293 | 6,258 | 0 | 6 | 50.116.98.177 |
webdirectorybook.com | 2 | 163,629 | 6,141 | 4 | 5 | 173.193.201.135 |
webdirectorypage.info | 3 | 151,878 | 427 | 0 | 3 | 174.132.105.137 |
webdiro.com | 3 | 114,918 | 10,735 | 12 | 5 | 67.20.53.84 |
webedirectory.info | 2 | 141,817 | 108 | 2 | 2 | 67.23.230.35 |
webhotlink.com | 3 | 116,544 | 4,999 | 6 | 7 | 173.193.201.135 |
weblink-directory.com | 1 | 170,605 | 758 | 0 | 5 | 96.0.22.84 |
weblinked.info | 1 | 162,505 | 2,875 | 0 | 2 | 174.120.201.109 |
weblistingonline.com | 1 | 102,322 | 539 | 5 | 1 | 184.107.216.178 |
webmxp.com | 2 | 140,838 | 3,830 | 3 | 3 | 173.214.171.243 |
webnetdirectory.com | 2 | 52,437 | 596 | 0 | 2 | 111.118.213.216 |
webrankdirectory.org | 3 | 186,845 | 84 | 11 | 0 | 67.231.247.79 |
webrickco.com | 1 | 35,466 | 801 | 0 | 5 | 64.202.163.157 |
website-services.biz | 4 | 40,085 | 1,358 | 15 | 9 | 184.168.59.1 |
websitejoint.com | 2 | 216,052 | 2,475 | 3 | 6 | 96.125.163.77 |
websitelists.info | 2 | 316,361 | 3,041 | 0 | 5 | 173.193.201.135 |
webslisting.com | 1 | 224,593 | 97 | 0 | 2 | 173.199.143.15 |
websubmit.in | 3 | 84,061 | 91 | 0 | 0 | 67.222.5.173 |
webworldindex.com | 5 | 13,676 | 28,266 | 77 | 11 | 50.56.29.137 |
webxtend.com | 5 | 50,092 | 765 | 6 | 0 | 74.52.28.121 |
webzdirectory.com | 2 | 30,772 | 33,693 | 0 | 6 | 88.208.252.9 |
welcomelinks.info | 2 | 65,429 | 1,116 | 0 | 4 | 50.63.101.1 |
wikiklix.com | 1 | 1,099,820 | 195,785 | 0 | 3 | 66.90.104.68 |
wincyspider.com | 1 | 37,755 | 334 | 0 | 2 | 184.82.38.80 |
wldirectory.com | 3 | 29,614 | 9,590 | 17 | 4 | 81.31.45.227 |
worldinside.org | 2 | 48,036 | 19,881 | 2 | 2 | 87.98.255.4 |
worldurllink.com | 2 | 191,242 | 10,335 | 6 | 5 | 204.50.14.10 |
worldweb-directory.com | 3 | 131,673 | 139 | 7 | 1 | 50.28.1.114 |
worldwebdirectoryindex.com | 2 | 99,096 | 64 | 0 | 1 | 174.121.17.118 |
worldwidedirectory.org | 3 | 140,840 | 2,185 | 2 | 7 | 174.132.240.102 |
worldwidelist.net | 3 | 27,720 | 4,266 | 16 | 2 | 69.195.119.90 |
wsportal.net | 2 | 149,436 | 36,667 | 0 | 5 | 50.63.124.1 |
x-tract.net | 1 | 227,655 | 587 | 0 | 3 | 76.164.196.202 |
xbritain.com | 3 | 241,840 | 5,024 | 23 | 5 | 173.201.128.37 |
xeenit.com | 3 | 160,203 | 6,064 | 4 | 4 | 208.85.0.215 |
xhii.com | 3 | 35,814 | 149,882 | 29 | 6 | 64.131.70.94 |
xsfzit.com | 3 | 31,277 | 3,253 | 26 | 0 | 87.98.180.85 |
yassef.com | 1 | 58,480 | 1,104 | 0 | 7 | 97.74.215.236 |
yelk.net | 3 | 93,567 | 2,559 | 25 | 6 | 91.207.44.32 |
yellowlinker.com | 2 | 63,146 | 1,359 | 0 | 3 | 173.208.199.114 |
yeties.com | 2 | 30,381 | 156 | 5 | 3 | 46.252.201.1 |
youdirectory.net | 3 | 150,929 | 54,826 | 5 | 2 | 213.133.104.34 |
yourjoker.com | 3 | 48,748 | 8,494 | 4 | 5 | 77.232.72.88 |
yvir.com | 1 | 60,707 | 4,145 | 0 | 6 | 184.173.205.164 |
zdirectory.net | 4 | 43,779 | 541 | 10 | 10 | 50.63.80.1 |
zendiva.com | 1 | 153,033 | 1,605 | 0 | 3 | 184.172.145.195 |
zensearch.com | 5 | 73,330 | 4,300 | 40 | 14 | 184.107.206.108 |
zimengine.com | 3 | 39,798 | 968 | 2 | 13 | 50.116.84.200 |
zindexica.com | 1 | 94,065 | 470 | 2 | 6 | 50.28.34.216 |
zinglisting.com | 2 | 172,514 | 241 | 0 | 1 | 50.116.73.21 |
zoock.net | 3 | 32,173 | 10,429 | 22 | 5 | 72.55.178.202 |
zoomaddurl.com | 1 | 86,576 | 604 | 0 | 1 | 199.79.62.128 |
zopso.com | 3 | 34,099 | 28,026 | 5 | 6 | 67.227.183.7 |
zssfw.com | 2 | 29,781 | 14,340 | 7 | 4 | 174.121.122.210 |
zunchdirectory.com | 3 | 107,130 | 3,108 | 10 | 7 | 66.228.129.178 |
zurp.net | 1 | 36,709 | 49,263 | 6 | 2 | 108.179.221.84 |
zzdirectory.com | 2 | 77,740 | 12,438 | 0 | 5 | 198.12.67.54 |
zergdir.com | 3 | 134,669 | 7,816 | 3 | 6 | 93.186.169.17 |
Crear una web para movil
Crear una web para movíl
Discriminación CSS
@media screen and (max-width:320px) {
.sidebar { display: none }
}
@media screen and (min-width:1920px) {
body { font-size: 15px }
}
Evitar imagenes para reducir peticiones.
Ejemplo, usar codigo ASCII :
★ Para un estrella llena de rating (★) and ☆ para una estrella vacia (☆)
Crear un enlace hacia un numero de telefono
<a href=”tel:+18005550199″>1-800-555-0199</a>
Viewport Meta Tag
viewport meta tag para que el tamaño de la web se adapte al tamaño del dispositivo:
<meta name=”viewport” content=”width=device-width, initial-scale=1″ />
CSS especial para pantallazas grandes
<link rel=”stylesheet” type=”text/css” href=”style.css” media=”screen, handheld” />
<link rel=”stylesheet” type=”text/css” href=”enhanced.css” media=”screen and (min-width: 40.5em)” />
<!–[if (lt IE 9)&(!IEMobile)]>
<link rel=”stylesheet” type=”text/css” href=”enhanced.css” />
<![endif]–>
Algunos navigadores de moviles no suportan las media queries : Symbian browsers, Blackberry <OS 6.0, Netfront, WP7 pre-Mango, etc
La ausencia de suporte para @media query es una primera media query 🙂
Detectar y redirigir hacia usuario de mobiles
Con javascript
<script type="text/javascript">
<!--
if (screen.width <= 699) {
document.location = "YOUR-MOBILE-SITE.com";
}
//-->
</script>
Con user agent:
<script type="text/javascript">
<!--
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
location.replace("http://YOUR-MOBILE-SITE.com");
}
-->
</script>
El nuevo metodo CSS @media
<link rel="stylesheet" href="screen.css" media="screen"/>
<link rel=”stylesheet” href=”handheld.css” media=”handheld”/>
Utilizando PHP
Pero aqui hay que actualizar una lista largissima de user-agents
<? if (
stristr($ua, "Windows CE") or
stristr($ua, "Mobile") ) {
$DEVICE_TYPE="MOBILE";
}
if (isset($DEVICE_TYPE) and $DEVICE_TYPE=="MOBILE") {
$location='YOUR-MOBILE-SITE.com/index.php';
header ('Location: '.$location);
exit;
}
?>
Si utilizas WordPress, y no quieres crear un theme en Responsible Design, puedes usar un plugin.
Le más comun es: http://wordpress.org/extend/plugins/wordpress-mobile-pack/
Pero igualmente tienes que adpatar tu wordpress al plugin!
WURFL = Wireless Universal Resource FiLe
WURFL es una base de datos universal de la lista completa y actualizada de todos los dispositivos.
Es un formto XML.
Simulación de vista de web desde varios tamaños y dispositivos
Nivo Slider : la lista de los efectos de transición (transition effect)
Lista de los efectos de transición del Slider ‘Nivo Slider’
- sliceDown
- sliceDownLeft
- sliceUp
- sliceUpLeft
- sliceUpDown
- sliceUpDownLeft
- fold
- fade
- random
- slideInRight
- slideInLeft
- boxRandom
- boxRain
- boxRainReverse
- boxRainGrow
- boxRainGrowReverse
El secreto de la harmonia de la maquetación
El canon de harmonia de pagina explicado por J. A. Van de Graaf Canon.
Según J. A. Van de Graaf Canon desde los primeros tiempos de la edición de libros, los libros sigen unos canones. Sin escales ni numeros, presenta un metodo utilizado, para encontrar la elegancia y la harmonia en una página.
El canon de Villard de Honnecourt
Es un canon desarrollado por el architecto frances del siglo 13 Villard de Honnecourt. Es magnifico
El Canon de Gutenberg de Raúl Rosarivo
Al igual que Van de Graaf, Raúl Rosario estudio los libros de Gutenberg para encontrar cual era el secreto de sus páginas.
El canon secreto de Tschichold
Tschichold, un diseñador grafico de talento del siglo 20, estudio la construcción de página de la epoca gothica. Se di cuenta que varios metodos llevaban al mismo resultado.
Los 4 canones son uno
Más explicaciones en la página de Retinart
Fuente: http://retinart.net/graphic-design/secret-law-of-page-harmony/
Como acceder a google.com internacional
Los resultados de busquedas de Google cambian segun desde que país estas escribiendo.
Desde hace poco google no deja facilmente acceder a sus páginas internacionales desde Epaña, par dar un ejemplo.
Como acceder entonces a las busquedas de Google America, si el google.com nos redirige a google.es?
Prueba : http://www.google.com/ncr
ncr = “No Country Redirection” ?
Crear un theme wordpress para movil
Como crear un theme wordpress para movíl : Responsive Web Design
La gran parte del trabajo consiste en definir el concepto del diseño en detalle.
Se hace un borrador con los varios tamaños de pantallazas que queremos preparar.
Se suele hacer 2 o 3 : Movil, tablet, Desktop
Consejos para crear el borrador de template de movíl para wordpress
1 ) El menu
- No pondremos un drop down menu, porque no es de facil uso con una pantalla tactíl.
- Prioridad al contenido sobre navegación. Por el tamaño del diseño de la navigación, mejor no poner el menu primero.
… Mañana sigo
Responsive Web Design Barcelona
Cada vez más webs necesitan ser visibles en todos los dispositivos, en todos los tamaños.
El Responsive Web Design consiste en crear una web con diseño adaptable a los varios tamaños de pantallas:
– Pantalla movil, Iphone, Smartphone
– Pantalla de Tablets, IPad
– Pantalla de ordenador de mesa, portatil
Si necesiteis Responsive Web Design, no dudais en pedirnos información.
Posicionamiento en google por palabras claves
Posicionamiento en google por palabras claves
Herramientas para conocer el posicionamiento de una página en un buscador, sin tener que ir mirando página por página. Para conocer su posicionamiento en google en concreto, para una palabra clave, se puede usar varias herramientas. Más facil, sobretodo si la página no esta posicionada en las primeras páginas!
Los 50 mejores CMS Content Management System
CMS de elearning, CMS de fotos, CMS de blog, CMS de red social, CMS de E-commerce, CMS de wiki
Ahora podemos contar con muchos CMS para desarrollar webs. Aqui estan listados unos 50 Content Management System CMS.
CMS de Elearning
Sistema de gestión de aprendizaje:
Los CMS generales
- Drupal
- Xoops
- Typo3
- Zikula
- Joomla
- Siteframe
- PHP Nuke
- Geeklog
- E107
- Plone
- Alfresco
- Concrete5
- NukeViet
- Mambo
CMS de eCommerce
CMS de forum
CMS de blog y CMS de página web
CMS de wiki
CMS de fotos, Galeria de fotos
CMS de red social
Posicionamiento en buscadores
Posicionamiento en buscadores
Herramienta para encontrar tu posicionamiento en google para una palabra clave en concreto, sin tener que navegar todas las páginas de respuestas de google:
http://www.tools4google.com/search-google-position/keyword_tracking.php
Convertir Flash a HTML5
Convertir Flash a HTML5
Swiffy permite convertir fichero FLASH swf a HTML5. De esta forma el documento Flash pasado a HTML5 se podra ver en iPads e iPhone.
https://www.google.com/doubleclick/studio/swiffy/
Internet Explorer versus Chrome y Firefox
Consulting Internet
BOI Consulting Internet ofrece servicios de programación web, creacíon de página web, consulting internet, e-marketing y positionamiento. Estamos en Barcelona. Somos profesionales seniores con mucha experiencia en el sector web.