Skip to content

Instantly share code, notes, and snippets.

View fernandozamoraj's full-sized avatar

Fernando Zamora fernandozamoraj

View GitHub Profile
var _q = 'fz.default.q';
let _conn = false
let _sendChannel = false
let _server = "amqp://localhost"
let _userName = ""
let _password = ""
let _onConsume = setMessage
let _connectionIsEstablished = false
@fernandozamoraj
fernandozamoraj / PriorityQueue.cpp
Created March 31, 2019 00:58
Priority queue using heao
#include<iostream>
#include<string>
using namespace std;
template <class T>
class PriorityQueue{
private:
T *_array;
g++ -g -std=c++11 mymain.cpp ./subfolder/myutil.cpp ./subfolder/myutil2.cpp -o myprogram.exe
./myprogram.exe
valgrind ./myprogram.exe
import java.awt.*;
class Window extends Frame{
Window(){
setSize(800,900);//frame size 300 width and 300 height
setLayout(null);//no layout manager
setVisible(true);//now frame will be visible, by default not visible
@fernandozamoraj
fernandozamoraj / findfz.py
Created December 10, 2018 18:52
This gist is a python script to find text in files in a given directory... useful for searching log files. Grep works better but sometimes not a windows as well
#usage
# ./findfz directory filefilter searchWord [searchWord2] [searchWord3] [searchWord4]
import glob
import sys
directory = "."
fileFilter = "*.*"
if len(sys.argv) > 3:
@fernandozamoraj
fernandozamoraj / BinaryTree.js
Created November 22, 2018 00:23 — forked from benlesh/BinaryTree.js
A simple Binary Tree implementation in JavaScript
/**
* Binary Tree
* (c) 2014 Ben Lesh <ben@benlesh.com>
* MIT license
*/
/*
* A simple Binary Tree implementation in JavaScript
*/
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <conio.h>
#include <string.h>
void print_at_xy(int x, int y, char *val);
void display_score();
void init();
int zero_lives();
<!DOCTYPE html>
<html>
<head>
<title>Books</title>
</head>
<body>
<?php
$servername = "localhost";
$username = "bpdemo";
$password = "bpdemo";
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <conio.h>
#include <string.h>
void print_at_xy(int x, int y, char *val);
void display_score();
void init();
int zero_lives();
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <conio.h>
#include <string.h>
void print_at_xy(int x, int y, char *val);
void display_score();
void init();
int zero_lives();