Campusblog!

Texto para os brasileiros!
Bom, estou participando da promoção do e estou concorrendo a 20 ingressos para o Campus Party! Ou seja, talvez eu possa participar deste grande evento!
O interney é uma portal que o próprio slogan já descreve:
InterNey.Net - (In)formação e (In)utilidade.

HehHehE, mas enfim, estou aqui para falar, ou melhor digitar, sobre o CampusBlog,
um evento que ocorrerá dentro do CampusParty deste ano. Já li a programação e percebi que promete muita coisa legal, os assuntos abordados serão voltados desde à totais nerds até meros mortais. Vejam a seguir a programação:
Lembrando que os horários são sempre: 10:00, 11:00, 14:00, 15:20, 16:35 e 17:50


20/01/2009 Terça-Feira

Um dia depois da abertura do Campus Party já começará a alegria (Uhuul). Vejamos bem, teremos:
Oficina de XHTML no Laboratório de Mídias Sociais - Cásper Líbero e Unicamp(minha futura universidade!). Palestra sobre mobilidade, Interações, conteúdo e autoridade na blogosfera brasileira, A influência das mídias sociais nas publicações, Podcast e para finalizar um bate-papo com Ricardo Noblat.

21/01/2009 Quarta-feira
Oficina de CSS2, Mídias Sociais nas corporações, A construção da reputação, dos públicos e da moral blogueira, Uso de mídias sociais na publicidade , Uso de blogs em sala de aula(interessante!) e Mídias Sociais nas Eleições.

22/01/2009 Quinta-feira
Iniciará com uma Oficina sobre como criar um blog, posteriormente, Blogosfera policial, Monetização e programas de afiliados, O direito conhece a internet? e Relações Públicas 2.0.

23(acho que você já sabia o dia)/01(mês também)/2009(e o ano nem se fala) Sexta-feira
Vejamos bem, teremos: Oficina de Redação para blogs, Blogs e Celebridades(vai ser legal para todos os tipos de pessoas) , Empreendedorismo pessoal e engenharia social, Estratégias de mídias sociais nos portais, Internet is for Porn? (não posso dizer nada, sou menor de idade, mas acho que você entendeu) e finalmente Literatura na blogosfera .

24/01/2009 Sábado -Último dia
Oficina sobre Otimização de blogs para mecanismos de buscas usando Wordpress, O universo feminino nas mídias sociais, Blogs no exterior, O uso do blog para publicar quadrinhos(Caramba, esse vai ser o melhor \o/), Ética e jornalismo: da gênese à nova mídia e Tendências em aplicações sociais. Ah, vai ter a cerimônia de entrega do prêmio Best Blogs Brazil, às 20:00
Gostou então clique aqui para mais informações

Para saber mais sobre a promoção é aqui



Só algumas coisas para dizer: Hoje é aniversário da minha irmã e estou usando ArchLinux agora!

Happy Birthday Mr. Linus

Today is the Linus' birthday




























Thank you

Qtruby


Cute the ruby!
I'm experiment the Qtruby(my new affair), ruby whit the Qt toolkit.
The currently Qt version is the 4, I use the 4° version on this tutorial
First install the package: qt4-qtruby
Let's go to the "Hello World" :

require 'Qt4'
app = Qt::Application.new(ARGV)
hello = Qt::PushButton.new('Oba oba!')
hello.resize(100, 40)
hello.show()

app.exec()

And the magic started:


Learning the line by line:
require 'Qt4' - This line import the Qtruby extension
app = Qt::Application.new(ARGV) - It is essential, build the interface
hello = Qt::PushButton.new('Oba oba!') - Create a button whit the message: Oba oba!
hello.resize = The button's resize
hello.show = when you write this the widget can be visible.
app.exec() = it execute the app

The end of this post, but I will go write more tutorials about Qtruby.

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!

Mozilla Fennec on your PC!


Yeah, the new Mozilla's web browser for smartphones can used in your PC! Versions for Windows, Linux and MAC
Download in this link: http://www.mozilla.org/projects/fennec/1.0a1/releasenotes/#install

#Review
The browser is really good, it compatible to touch screen and it has a beautiful design.
Suport to:
  • Bookmarks
  • Tabbed browsing with thumbnail images (Oh, it's espetacular)
  • Popup blocker
the Fennec just run on Nokia N810

Paul Pfeiffer isn't Marilyn Manson











A beautiful smile

A legend of music says: the actor of The Wonder Years is Marilyn Manson.
But it's not true. The real actor is Josh Saviano
I thought that he is Joey Ramone or Graham Coxon xD

Mutantes, good band!


My favorite Brazilian band, Mutantes.
Created in 1966 in São Paulo, Mutantes are a band of Psychedelic Rock that participate in the Tropicalia, a cultural movemment. They uses many effects in your sounds. Finished in 1978.






Videos of Radiola, a tv program.


Panis at Circense


Fuga n° 2

Mutantes' commercials


the five comercials

The blog of the master


The Linus' Blog: http://torvalds-family.blogspot.com/

It's something quite spetacular!

I love my Desktop



For the artists, I am publish my screenshots:

Slax, do you know?


Slax is a distribution of Linux based on Slackware. In only one mini-cd you can burn its. It has the live-cd and there are three versions:

Standard - The common, with KDE
Popcorn - It Has the XFCE and other programs in GTK
kill Bill - The standard with the Wine (windows emulator)

You can also do the download of the modules, news pakages to slax, in http://www.slax.org/modules.php


The download is in this page: http://www.slax.org/get_slax.php

Hello World!

#include
main()
{
printf ( "Hello! This is my first Blog, I'm a brazillian boy, but I will writer in this blog in English" );
}
exit


Well, the introduce is always spectacular!