View beego_monitor_filter.go
This file contains 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 filters | |
import ( | |
"time" | |
"github.com/Sirupsen/logrus" | |
"github.com/astaxie/beego" | |
"github.com/astaxie/beego/context" | |
uuid "github.com/hashicorp/go-uuid" | |
) |
View 19-06.pas
This file contains 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
program Parcial; | |
uses sysutils; | |
const | |
valoralto = 9999; | |
type | |
producto = record | |
codigo : integer; | |
nombre : string[20]; | |
descripcion : string[40]; | |
precio : real; |
View ej2.pas
This file contains 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
Program ej2; | |
const | |
valoralto = 999999; | |
type | |
vivienda = record | |
codigo : integer; | |
precio : real; | |
habitaciones : integer; | |
descripcion : string[20]; | |
end; |
View ej8.pas
This file contains 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
Program ej8; | |
const | |
valoralto = 9999; | |
type | |
producto = record | |
codigo : integer; | |
nombre : string[20]; | |
precio : real; | |
stock : integer; | |
stockMinimo : integer; |
View ej2.pas
This file contains 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
Program ej2; | |
uses sysutils; | |
const | |
valoralto = 99999; | |
type | |
producto = record | |
codigo : integer; | |
nombre : string[20]; | |
descripcion : string[30]; | |
stock : integer; |
View ej1.pas
This file contains 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
Program ej1; | |
const | |
valoralto = 99999; | |
type | |
votos = array [0..4] of integer; | |
partido = record | |
codigo : integer; | |
nombre : string[20]; | |
codLocal : integer; | |
nombreLocal : string[20]; |
View qsyterminal.go
This file contains 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 ( | |
"context" | |
"fmt" | |
"net" | |
"os" | |
"github.com/matipan/qsy" | |
) |
View ejer2-2.pas
This file contains 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
program ejercicio2; | |
const | |
valoralto = 9999; | |
type | |
viajeTipo = record | |
codViaje: integer; | |
nombre: string[20]; | |
desc: string[100]; | |
precio: real; | |
cantPasajes: integer; |
View postapeh.go
This file contains 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 ( | |
"bufio" | |
"fmt" | |
"log" | |
"net/http" | |
"net/url" | |
"os" | |
"strings" |
View some.go
This file contains 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" | |
"time" | |
"gobot.io/x/gobot" | |
"gobot.io/x/gobot/drivers/gpio" | |
"gobot.io/x/gobot/platforms/firmata" |
NewerOlder