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ú
  • 01:50 (UTC -05:00)
View GitHub Profile
struct Building
{
String address;
int floors;
int currentFloor;
}
void goUpStairs(Building *const MyInstance)
{
MyInstance->currentFloor += 1;
class Building
{
public:
String address;
int floors;
int currentFloor;
void goUpStairs(void)
{
currentFloor += 1;
}
class MiClase
{
public:
int miDato;
void hazAlgo(void)
{
miDato = 5;
}
};
function secondHighest($numbers)
{
$higest = -1;
$secondHighest = -1;
foreach ($numbers as $number) {
if ($higest < $number) {
$higest = $number;
}
}
<?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();
#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;
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',
module.exports = function(DocumentoElectronico) {
var _archivos = require('../../classes/Archivos')
DocumentoElectronico._obtenerRucColegio = function (cb)
{
var knex = DocumentoElectronico.app.getKnex();
return knex.schema.then(function(){
return knex('colegio')
.select('RUC');
version: '2'
services:
web:
image: 'redmine:passenger'
container_name: 'redmine_web'
restart: always
ports:
- '3000:3000'
@FraGoTe
FraGoTe / 0_reuse_code.js
Created January 3, 2016 22:13
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console