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
#include <stdio.h> | |
#include <stdlib.h> | |
void le_numeros(int **matriz){ | |
int i; | |
for(i=0; i<10; i++){ | |
printf("Entre com um número: "); | |
scanf("%d", (*matriz+i)); | |
} | |
} |
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
import sys | |
sys.path[0:0] = [ | |
'/home/user/.pythonenvs/video/lib/python2.6/site-packages/nsi.multimedia-0.1.2-py2.6.egg', | |
'/mnt/hgfs/nsi/aos/video/eggs/nsi.videoconvert-0.1-py2.6.egg', | |
'/mnt/hgfs/nsi/aos/video/eggs/celery-2.2.4-py2.6.egg', | |
'/home/user/.pythonenvs/video/lib/python2.6/site-packages/restfulie-0.8.0-py2.6.egg', | |
'/usr/lib/python2.6/dist-packages', | |
'/usr/lib/python2.6/dist-packages', | |
'/home/user/.pythonenvs/video/lib/python2.6/site-packages/Twisted-10.2.0-py2.6-linux-i686.egg', |
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
#!/usr/bin/env python2.4 | |
# This program shows off a python decorator( | |
# which implements tail call optimization. It | |
# does this by throwing an exception if it is | |
# it's own grandparent, and catching such | |
# exceptions to recall the stack. | |
import sys | |
class TailRecurseException: |
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
#encoding: utf-8 | |
class Humano(object): | |
"""Human Being""" | |
def __init__(self, nome, pai=None, mae=None): | |
print "alguem fez besteira e colocou mais um ser Humano no mundo \n" | |
self.nome = nome | |
self.pai = pai | |
self.mae = mae |
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
# this AWESOME TOOL can convert any video to an avi/xvid one... | |
# and the best part is that it's installable in almost any OS (just can't guarantee it'll install in Windows, don't ask my why, ask uncle Bill) | |
# installation in any debian-like OS will be easy as: [sudo] apt-get install ffmpeg | |
# in Mac OS X: brew install ffmpeg | |
# ps.: if you don't use homebrew, try using macports, it should work. | |
# "video.ogv" is the input video, it can be in any format. And "saida.avi" is the output video. | |
ffmpeg -i video.ogv -vcodec libxvid -acodec libmp3lame saida.avi |
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
#encoding: utf-8 | |
def ponto_fixo(f, ponto_atual, epsilon=1e-8, maxiter=500): | |
k = 0 | |
ponto_proximo = f(ponto_atual) | |
while k < maxiter: | |
k += 1 | |
ponto_anterior = ponto_atual | |
ponto_atual = ponto_proximo |
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
scenario "Relacionar professor com turmas", :driver => :selenium do | |
periodo_letivo = PeriodoLetivo.create! :sigla => '2012/1', :inicio => Date.today, :termino => Date.tomorrow | |
professor = Professor.create! :nome => 'Senhor Professor', :email => '[email protected]', :password => 'password' | |
visit new_disciplina_path | |
logar_admin('[email protected]', '123456') | |
fill_in :nome, with: 'Calculo' | |
fill_in :credito, with: 4 | |
page.driver.browser.save_screenshot 'screenshot.png' | |
select '2012/1' , from: 'Periodo letivos' |
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
require 'llvm/core' | |
require 'llvm/execution_engine' | |
class Gerador | |
def initialize(syntax_tree) | |
@tree = syntax_tree | |
end | |
def compile |
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
matriz = [] | |
for i in range(1,n): | |
coluna = [] | |
for j in range(1,n): | |
coluna.append(1) | |
matriz.append(coluna) |
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
Sete Atitudes para Hackear a Indústria de Software | |
By Klaus Wuestefeld | |
1) Torne-se excelente. | |
Seja realmente bom em alguma coisa. Não fique só choramingando ou | |
querendo progredir às custas dos outros. Não pense q pq vc sentou 4 | |
anos numa faculdade ouvindo um professor falar sobre software q vc | |
sabe alguma coisa. Jogador de futebol não aprende a jogar bola tendo |
OlderNewer