This looks cool ..
[youtube http://www.youtube.com/watch?v=94_4nvGBQ80]
An Eye to the World, an Eye to the Net
This looks cool ..
[youtube http://www.youtube.com/watch?v=94_4nvGBQ80]
On a betting irish site is it possible to bet who will be the next insult’s target of Berlusconi.
The funny thing is this page is not visible in Italy because there is no agreement about the quantity of money the italian state (which is the only one allowed to be the bookmaker) should take.
So I attach the screenshot here:
Every time I have to set up a new website, or I have to revamp an old one I always find myself with the classic dilemma:
“Which colors should I use?”
If I choose colors randomly the results is not really that interesting, so the main idea is to use a pricipal color and then move on the palette. Today I discovered this amazing tool:
http://colorschemedesigner.com/
Pretty handy.
via ebiInterface
All the old problems are just not here anymore.
Finally the developer of skype had rolled out a version which is pulseaudio friendly.
The version 2.1 Beta works really well, the CPU is not going crazy and it’s all good.
Just update to the last one. And you can use skype again.
New album from Pearl Jam: The Backspacer 20th September
This is the making of:
[youtube http://www.youtube.com/watch?v=s3m4gvJDrlo]
The single is The Fixer: really cool stuff
[youtube http://www.youtube.com/watch?v=Kj-sFIHQWLY]
More over there is going to be a new Album from Alice in Chains late in September as well.
Autumn will rock!
How an Hill equation looks like?
What is the behaviour of an alpha function?
well, I have scipy installed, I know the equation, I know how to create an array of points… Let’s crunch some numbers!
If you interested in this and other amenities check the code in the scipy_ex folder on github.
The Hill equation is in the mathematical functions script..
So if you want to import a bazaar branch into git how do you do that?
Following this amazing tutorial which works in a very cool and smooth way
Check it out!
It was really handy 🙂
I’m writing a report and I had to cite an article from a book. It’s one of this book which every article can also be used as a standalone paper. The problem is that if you use an article record, you will miss the book and if you use the book record, you will miss the article.
How to solve it? Google it! (somebody has already solved it and post it somewhere)
And it is. The solution is to use @incollection
:
@InCollection{Doe05,
author = {John Doe},
title = {Dynamic Ambient Paradigms},
booktitle = {Paradigm Gems 2},
pages = {223--233},
publisher = {Addison Wesley},
year = 2005,
editor = {Averell Doe}
}
More BiBTeX tips (where I found this solution) on this page.
If you use LaTeX and sometimes want to override the TeX macro to get your figure right there you can do it.
You can use the exclamation point !
\begin{figure}[!ht]
\begin{center}
\includegraphics[scale=0.50]{image.png}
\end{center}
\end{figure}
However the results is not really nice as when Tex take care to do the layout. So the win-win solution would be to have Tex taking care of the layout, but force it to put all the figure that belong to a section within that section.
Well that’s pretty easy and the command
\clearpage{}
Just does the trick.
If instead you refer to a figure but instead of the number of the figure you can read the number of the section, this is because you have misplaced the caption with the label.
The label has to go after the caption, otherwise it will refer to the section not to the figure.
Right way:
\begin{figure}[htb]
\begin{center}
\includegraphics[scale=0.50]{image.png}
\caption{A wonderful image!}
\label{fig: image}
\end{center}
\end{figure}
Note the relax [htb]
. LaTeX will take care of the position for you.