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
<?xml version="1.0" encoding="UTF-8" ?> | |
<Data> | |
<Series> | |
<id>83462</id> | |
<Actors>|Nathan Fillion|Stana Katic|Molly C. Quinn|Jon Huertas|Seamus Dever|Tamala Jones|Susan Sullivan|Ruben Santiago-Hudson|Monet Mazur|</Actors> | |
<Airs_DayOfWeek>Monday</Airs_DayOfWeek> | |
<Airs_Time>10:00 PM</Airs_Time> | |
<ContentRating>TV-PG</ContentRating> | |
<FirstAired>2009-03-09</FirstAired> | |
<Genre>|Drama|</Genre> |
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
#include <stdlib.h> | |
#include <stdio.h> | |
typedef struct temp { | |
int a; | |
int (*b)(struct temp*, int); // queremos quitar el struct temp* de aquí. | |
} temp_t; | |
// ...Y envolver B. | |
int B(temp_t *self, int x) { |
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
/* | |
* Éste experimento partió de una discusión iniciada por @toorandom y | |
* continuada por @nitr0usmx y @dexosexo: | |
* | |
* https://twitter.com/toorandom/status/377256908538671104 | |
* | |
* El problema es obtener la dirección de una estructura a partir de uno de | |
* los apuntadores a funciones dentro de la misma. Como hacer un "this" o | |
* "self" dentro de un método en lenguajes oriendados a objetos. | |
* |
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
package main | |
import ( | |
"fmt" | |
"menteslibres.net/gosexy/rest" | |
"menteslibres.net/gosexy/to" | |
"net/url" | |
"time" | |
) |
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
package main | |
import ( | |
"log" | |
"menteslibres.net/gosexy/resource" | |
"menteslibres.net/gosexy/rest" | |
"menteslibres.net/gosexy/to" | |
"net/url" | |
"sync" | |
"time" |
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
--- /go/src/net/file_test.go 2015-05-26 17:20:34.000000000 -0400 | |
+++ /go/src/net/file_test.go.fixed 2015-05-27 16:03:17.486632591 -0400 | |
@@ -189,7 +189,10 @@ | |
if skipServerTest(tt.net, "unixgram", tt.addr, tt.ipv6, false, tt.linux) { | |
continue | |
} | |
- if os.Getuid() != 0 && tt.net == "ip4:icmp" { | |
+ // It seems like creating ICMP packets is not supported in the | |
+ // newest docker, let's just skip it so we can continue | |
+ // working. |
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
From 23d337d1921f5d7cadea6763a657f830b2453068 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <[email protected]> | |
Date: Wed, 27 May 2015 17:49:14 -0500 | |
Subject: [PATCH] Patch for the gomobile Dockerfile that applies a patch to | |
Go... | |
--- | |
Dockerfile | 1 + | |
1 file changed, 1 insertion(+) |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"math/rand" | |
"time" | |
"github.com/influxdata/influxdb/client/v2" | |
) |
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
<?PHP | |
/**** | |
* MiTagPHP v 1.0 | |
* Copyright (C) 2003 Cid ([email protected]) | |
* Sitio oficial: http://www.atomika.tk | |
****/ | |
include("vars.php"); | |
$auth = MD5("$con$usu"); | |
if ($auth == MD5("$passw$admin")) { | |
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.1 Transitional//EN\">\n<HTML>\n<HEAD>\n<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; CHARSET=iso-8859-1\">\n<META NAME=\"Description\" CONTENT=\"MiTagPHP - TagBoard gratuito, consigue el tuyo en http://www.atomika.tk\">\n<META NAME=\"Author\" CONTENT=\"Cid ([email protected])\">\n<META NAME=\"Generator\" CONTENT=\"MyTagPHP v$msg[1]\">\n"; |