TabuadeX in C++

#include
using namespace std;


int main()
{
int y;
int z;
cout << "Digite um numero" << endl;
cin >> y;
cout << "A tabuada para em que numero" < cin >> z;
for (int x = 1; x < z+1; x++)
{
cout << x*y << endl;
}

cin.get();

return 0;
}

Euclidean algorithm in Python

#/usr/bin/python
# -*- coding: utf-8 -*-
#Algoritmo de Euclides
x = float(input(' Digite um número: '))
y = float(input(' Digite o outro número: '))
if x < y:
print 'Lamento, mas não se pode fazer o MDC dessa forma'

while True:
r = x % y
x = y
y = r
if y == 0: break
print "Pronto, acabou, o resultado; %f" % x

Dollar and Real in Ruby [edit]

#Transformando dólar
puts "Bem-vindo a um programa que transforma dolares em reais e vice-versa"
puts "Entao, quanto vale o dolar hoje?"
d = gets.chomp
puts" Digite 1 para converter os dolares em reais e 2 para os reais em dolares"
opcao = gets.chomp
if opcao == "1"
puts "Quantos dolares voce tem?"
a = gets
t = d.to_i * a.to_i
puts t
else
puts "Quantos reais serao transformados?"
r = gets
t = r.to_i / d.to_i
puts t
end

Natal Livre, eu vou palestrar!



Evento realizado em Fortaleza/CE para os interessados em Linux e Software Livre com o intuito de mostrar as facilidades deste mundo para novos usuários.
Para mais informações: http://www.natallivre2008.blogspot.com/
Vou palestrar sobre internet no linux.
Espero quem estiver interessado lá!

Learning Ruby

#Transformador de palavras
puts 'Bem vindo ao meu primeiro script em Ruby'
puts 'Digite uma frase e eu retomarei outra forma de você falar'
frase = gets
puts frase .reverse


I'm learning here: http://tryruby.hobix.com/

Blur / The Universal

A great song, the lyric remember the movie/book A Clockwork Orange.

My favorite part is:
"It really really really could happen
Yes it really really really could happen
When the days they seem to fall through you
Just let them go"

TabuadeX

This script was made by me. Suddenly today became a good idea. So i created the "TabuadeX":

Image made on GIMP

The script is this:


#usr/bin/python
# -*- coding: utf-8 -*-
print " _ _ _"
print "| |_ __ _| |__ _ _ __ _ __| | _____ __"
print "| __/ _` | '_ \| | | |/ _` |/ _` |/ _ \ \/ /"
print "| || (_| | |_) | |_| | (_| | (_| | __/> <"
print " \__\__,_|_.__/ \__,_|\__,_|\__,_|\___/_/\_\ "
print "\n Olá, este programa serve para você fazer tabuadas de um número qualquer"
n = input("Pronto, comece digitando o número ao qual quer criar uma tabuada:")
x = input("Digite agora até onde irá a tabuada:")
for p in range(1,x+1): print p, p*n


Images:

Oh! I love the KDE4

This week i installed the KDE4 on my Debina Lenny, i used this repository:
deb http://kde4.debian.net/ lenny main

This graphical interface always was a great project, nice utilities and a very beautiful desktop is the concept's KDE.

The QT4, the KDE's graphical library is very cute in this version, the new theme, called "Oxygen", is hypnotic,
but i don't like the plasma theme. it's black and I prefer white and pastel colors.
So I download a new theme in the KDE LOOK:
http://kde-look.org/index.php?xcontentmode=76&PHPSESSID=4868ba0ca7425ce17cc164bc02ccea40

See my screenshots

Clean


PHP failed, in the game (obvious)


The Plasmoids in action

The menu, just cute and functional

A script in Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
print ">> Este script foi criado por Carlos Rodrigues e serve para a conversão de doláres para reais e vice-versa. \nCreio que em tempos de crise este programa vai servir."
t = input("\n Tecle 1 para transformar doláres em reais ou tecle 2 para transformar reais em dólares: ")
if t == 1:
dvalor = input("Digite quanto vale o dólar hoje: ")
d = input("Digite a quantidade de dólares que você deseja transformar: ")
resultado = d*dvalor
print "O resultado é"
print resultado
elif t == 2:
dvalor = input("Digite quanto vale o dólar hoje: ")
r = input("Digite a quantidade de reais que deseja transformar: ")
resultado = r/dvalor
print "O resultado é:"
print resultado
made by me!