Thursday, November 11, 2010

Moradia para venda na Ericeira


Excelente Moradia com logradouro com piscina coberta (7mx3mx1,80m) e anexo com churrasqueira e forno, a 2km do centro da Vila da Ericeira(Fonte Boa da Brincosa).

Área Útil: 212 m²

Moradia remodelada há 2 anos, local de grande sossego, a 500 metros da A21 Ericeira / Mafra e a 1 km da Ericeira.

Hall de entrada, sala com lareira, cozinha equipada, w.c. social, escritório / quarto, sala de estar, lavandaria, sala de festas com churrasqueira, forno, adega, bar, zona de jardins com piscina coberta.

Soalho flutuante AC4 no piso dos quartos, wc com jacuzzi hidromassagem e janelas com oscilo batente e portões automáticos na garagem.


http://www.dotinspired.com/moradia-para-venda-ericeira


moradia-para-venda-ericeira@dotinspired.com

Wednesday, October 1, 2008

getfreefonts.info

Another site dedicated to fonts.

http://www.getfreefonts.info/

FontStruct

FontStruct is a free font-building tool brought to you by the world’s leading retailer of digital type, FontShop.

FontStruct lets you quickly and easily create fonts constructed out of geometrical shapes, which are arranged in a grid pattern, like tiles or bricks.

You create ‘FontStructions’ using the ‘FontStructor’ font editor.

Once you're done building, FontStruct generates high-quality TrueType fonts, ready to use in any Mac or Windows application.

http://fontstruct.fontshop.com/

Saturday, April 28, 2007

Saving the wolf

I love wolfs, there's something special about the stare of a wolf.
When I went to visit the "Grupo lobo" wolf' center in Mafra, portugal, it really impressed me.
One of the university teachers that work there took me and my family to see the wolfs, and the feeling on our part, was one of excitement and nervousness.
Suddenly we saw a female, and the teacher started howling... the female responded...
Every hair in my neck was up. The air became so dense I almost stopped breathing.

One of these days, i plan to spend the night there. They have some bungalows you can rent.
You just gotta go there, if you come to Portugal.
I plan to adopt a wolf soon.

You can see their website at: http://lobo.fc.ul.pt/

Help if you can.

Saturday, April 14, 2007

Migrating from Thunderbird to Outlook

I receive a lot of mail everyday, and, as such, i must rely on the email client I use.
Thunderbird, has been giving me bad news for too much time now.
The time has come to change. I was very disapointed to discover that there is no easy way to migrate my emails from Thunderbird ro Outlook, so I decided on the proven way of doing it.
I got myself an email server with support for IMap and now im using an IMap account to pass my emails from one client to the other.
So far, so good.

By the way, since it was a temporary thing obviously I was not interested in buying an email server, so I got a free trial version of "EmailArchitect" Email Server from http://www.emailarchitect.net/ and I'm quite happy I did. The product is great and reliable and half of my 30.000 messages are already on Outlook.

And, did you know Outlook now supports RSS feeds? Well... I didn't, there goes RSS bandit...

Wednesday, April 4, 2007

Trying to use an SPWeb object that has been closed or disposed and is no longer valid.

Simple!

Do NOT do this:

using(SPWeb webSite = SPContext.Current.Web) {
...
}

or

SPWeb webSite = SPContext.Current.Web;
...
webSite.Dispose();


otherwise SharePoint looses it's SPWeb object !

Tuesday, April 3, 2007

Calling SPQuery without parameters

You can call SPQuery without parameters, i.e. without specifying a view.

This gives you extra flexibility/safery, in case someone changes the view you specified.

using (SPSite site = new SPSite("url here"))
{
using (SPWeb web =
site.OpenWeb())
{
SPList list = web.Lists["list name here"];
SPQuery
query = new SPQuery();
query = new SPQuery();
string caml = "caml code
here";
query.Query = caml;

SPListItemCollection results =
list.GetItems(query);
SPListItem item = (SPListItem)results[0];
}
}