Skip to content

Instantly share code, notes, and snippets.

View FraGoTe's full-sized avatar
🏠
Working from home

Francis Gonzales FraGoTe

🏠
Working from home
  • Lima, Perú
  • 02:06 (UTC -05:00)
View GitHub Profile
var connect = require('connect');
var serveStatic = require('serve-static');
connect().use(serveStatic(__dirname)).listen(3030);
var knex = require('./lib/index')({
dialect: 'firebird',
connection: {
host : '127.0.0.1',
user : 'SYSDBA',
password : 'masterkey',
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
srand(time(0));
cout << "Description: This program plays the card game war between a computer and human player." << endl;
<?php
try {
$lisppg = new Stdclass();
$lisppg->cCodCta = '010210000070';
$client = new SoapClient('http://200.60.60.115:8080/wTest/wTest?WSDL', array('trace' => 1));
$liRp = $client->lisppg($lisppg);
// $functions = $client->__getFunctions();
// $types = $client->__getTypes();
function secondHighest($numbers)
{
$higest = -1;
$secondHighest = -1;
foreach ($numbers as $number) {
if ($higest < $number) {
$higest = $number;
}
}
class MiClase
{
public:
int miDato;
void hazAlgo(void)
{
miDato = 5;
}
};
class Building
{
public:
String address;
int floors;
int currentFloor;
void goUpStairs(void)
{
currentFloor += 1;
}
struct Building
{
String address;
int floors;
int currentFloor;
}
void goUpStairs(Building *const MyInstance)
{
MyInstance->currentFloor += 1;
Building CentroCivico;
CentroCivico->goUpStairs();
Building CentroCivico;
goUpStairs(&CentroCivico);
Building.floors = 5;
Building.currentFloor = 3;
// Declaración de la clase Tiempo.
// Las funciones miembro se definen en tiempo2.cpp
// previene la inclusión múltiple del archivo de encabezado
#ifndef TIEMPO2_H
#define TIEMPO2_H
// Definición del tipo de dato abstracto Tiempo
class Tiempo {