This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ping fosscasts.com | |
PING fosscasts.com (72.11.139.3) 56(84) bytes of data. | |
64 bytes from 72.11.139.3: icmp_seq=1 ttl=48 time=575 ms | |
64 bytes from 72.11.139.3: icmp_seq=2 ttl=48 time=502 ms | |
64 bytes from 72.11.139.3: icmp_seq=3 ttl=48 time=470 ms | |
64 bytes from 72.11.139.3: icmp_seq=4 ttl=48 time=456 ms | |
64 bytes from 72.11.139.3: icmp_seq=5 ttl=48 time=390 ms | |
64 bytes from 72.11.139.3: icmp_seq=6 ttl=48 time=176 ms | |
64 bytes from 72.11.139.3: icmp_seq=7 ttl=48 time=356 ms | |
64 bytes from 72.11.139.3: icmp_seq=8 ttl=48 time=448 ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Admin#index</h1> | |
<h2>Hola <%= @facebook_session.user.first_name %> </h2> | |
<table width="700" cellspacing="" cellpadding="" border=""> | |
<% @facebook_session.user.friends.each_slice(3) do |friends| %> | |
<tr> | |
<% for friend in friends %> | |
<th> | |
<%= fb_profile_pic(friend,:size => :small)%> <br /> | |
<p>Fun | Dating </p> | |
</th> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NIVERSIDAD EAFIT | |
DIRECCIÓN DE DESARROLLO HUMANO | |
DEPARTAMENTO DE DEPORTES | |
CLUB DE CAMINANTES 2010 | |
Objetivo: | |
Promover en la comunidad universitaria actividades lúdico formativas, recreativas y de proyección social para el uso y aprovechamiento del tiempo libre, recorriendo caminos de herradura como complemento a su formación integral. | |
CAMINADA: CARA DE LA DIOSA (Venecia) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
〖A396〗_16-〖B401〗_16 (Tenga en cuenta en hacerlo como lo hace el computador y variables de 16 bits) | |
Respuesta = EF95 | |
〖A396〗_16 = 1010001110010110 = -23658 | |
〖B401〗_16 = 1011010000000001 = -19455 | |
Como 〖B401〗_16 es un numero negativo, y (-*- = + ) , entonces lo cambiamos por su representación positiva. | |
19455 = 0100101111111111 = 4BFF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Text.Regex.Posix | |
matcher :: String -> [[String]] | |
matcher s = s =~ "([A-Za-záéíóúÑñ]+ ?[A-Za-záéíóúÑñ]+? ?[A-Za-záéíóúÑñ]+? ?[A-Za-záéíóúÑñ]+?)\t[0-9]+\t(.*)" | |
loop :: [String] -> [String] | |
loop [] = [] | |
loop (x:xs) = let result = matcher x | |
in case result of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Antioquia 05001 Medellín | |
Antioquia 05002 Abejorral | |
Antioquia 05004 Abriaquí | |
Antioquia 05021 Alejandría | |
Antioquia 05030 Amagá | |
Antioquia 05031 Amalfi | |
Antioquia 05034 Andes | |
Antioquia 05036 Angelópolis | |
Antioquia 05038 Angostura | |
Antioquia 05040 Anorí |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ciudad: Inírida Departamento: a | |
Ciudad: Barranco Minas Departamento: a | |
Ciudad: Mapiripana Departamento: a | |
Ciudad: San Felipe Departamento: a | |
Ciudad: Puerto Colombia Departamento: a | |
Ciudad: La Guadalupe Departamento: a | |
Ciudad: Cacahual Departamento: a | |
Ciudad: Pana Pana Departamento: a | |
Ciudad: Morichal Departamento: a | |
Ciudad: San José del Guaviare Departamento: Guaviare |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName ce.local | |
DocumentRoot "/home/abuiles/linkProg/lineaI+D/testCE/public" | |
RailsEnv development | |
RailsAllowModRewrite off | |
<directory "/home/abuiles/linkProg/lineaI+D/testCE"> | |
Order allow,deny | |
Allow from all | |
</directory> | |
</VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
segment .data | |
Numero3: .long 0x64 | |
Numero4: .long 0b1100100 | |
Numero5: .long -100 | |
segment .text | |
global start | |
start: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
community_name: "CE Sample App" | |
community_tagline: "A Sample Community using CommunityEngine" | |
community_description: "Tutorials are hard work!" | |
support_email: "[email protected]" | |
meta_description: 'A description of your community for use in META tags.' | |
meta_keywords: 'keywords for use in META tags' |