Skip to content

Instantly share code, notes, and snippets.

View dennermiranda's full-sized avatar

Dener Miranda dennermiranda

View GitHub Profile
@dennermiranda
dennermiranda / function.c
Created September 7, 2011 20:12
Trabalho prog
#include <stdio.h>
#include <stdlib.h>
struct item_agenda
{
char *nome;
int idade;
char sexo;
float ira;
char fone[10];
dener@dener-VGN-NW210AE:~/rails$ rails new teste
create
create README.rdoc
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/assets/images/rails.png
create app/assets/javascripts/application.js
dener@dener-VGN-NW210AE:~/rails$ rvm requirements
Requirements for Linux ( DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS" )
NOTE: 'ruby' represents Matz's Ruby Interpreter (MRI) (1.8.X, 1.9.X)
This is the *original* / standard Ruby Language Interpreter
'ree' represents Ruby Enterprise Edition
Making check in src
make[1]: Entering directory `/home/dener/Downloads/NuSMV-2.5.4/nusmv/src'
Making check in parser
make[2]: Entering directory `/home/dener/Downloads/NuSMV-2.5.4/nusmv/src/parser'
\
/bin/bash ../../helpers/ylwrap `test -f 'input.l' || echo './'`input.l lex.yy.c input.c -- /bin/bash /missing flex -l
/bin/bash: /missing: No such file or directory
make[2]: *** [input.c] Error 1
make[2]: Leaving directory `/home/dener/Downloads/NuSMV-2.5.4/nusmv/src/parser'
make[1]: *** [check-recursive] Error 1
@dennermiranda
dennermiranda / gist:3800091
Created September 28, 2012 14:08
Edmonds Karp
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<queue>
using namespace std;
#define min(a, b) (a<b?a:b)
/* (())
# O primeiro vetor guarda os indices dos pais da BFS
# O segundo guarda se o vertice foi visitado ou nao na busca em largura
# Todas as variaveis com '@' sao globais
def bfs(s, t, n)
@pais = Array.new(20, 0)
@status = Array.new(20, false)
@status[s] = true
queue = []
queue.push(s)
@dennermiranda
dennermiranda / programa1.c
Created October 20, 2012 01:13 — forked from anonymous/programa1.c
Codigo Miguel 1.c
#include <stdio.h>
#include<stdlib.h>
//ano 1800 dia 1 de janeiro era quarta feira
int main ()
{
int dia1,mes1,ano1,dia2,mes2,ano2,cont_dias,idade;
//Estabelecendo no vetor2 o ano sendo bissexto e no vetor1 o ano não sendo bissexto
int vetor1[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
import java.util.HashMap;
public class Interview {
public static boolean sum(int[] A, int b){
HashMap<Integer, Integer> hash = new HashMap<Integer, Integer>();
for (int i = 0; i<A.length; i++){
hash.put(A[i], i);
}
/**
* This file contains pieces of code related to our media REST routes.
* Requesting GET media/:id returns information about a media (photo or video) with that specific identifier.
* The JSON response also includes a self signed temporal URL to acess the image or video from AWS S3,
* also another URL for the thumbnail.
*
* This endpoint is used by the app to display thumbnails or the media content that the user is currently
* browsing in the app. However, for very large albums/folders that requires the app doing a lot of requests
* while the user is browsing.
*
private def getBalanceAmountR(valAmount: Double, operations: List[Operation]): Double = operations match{
case Nil => valAmount
case Purchase(_, value, _, _):: tail => valAmount - getBalanceAmountR(valAmount, tail)
case Deposit(_, value, _, _):: tail => valAmount + getBalanceAmountR(valAmount, tail)
case Withdrawal(_, value, _, _)::tail => valAmount - getBalanceAmountR(valAmount, tail)
}