luke Luke

Brownie Recipe

#notetoself: Found it somewhere :D

112.5g ounce squares of unsweetened chocolate
108g butter
3 eggs
324g sugar
1 tablespoon vanilla
172g cups flour
1 teaspoon salt
270g cups chopped pecans or walnuts, lightly toasted
Preparation:

Preheat oven to Gas Mark 3.5 Grease a 9 x 13 pan.

Melt chocolate and butter in a saucepan over low heat; set aside.

In a mixer, beat eggs, sugar and vanilla at high speed for 10 minutes**.

Blend in chocolate mixture, flour and salt until just mixed.

Stir in the nuts. Pour into prepared pan.

Bake Ultimate Brownies for 35-40 minutes. (Don’t over bake.)

Posted in Uncategorized Leave a comment

Posted in Uncategorized Leave a comment
oliver Oliver

-



Posted in Art, Code, test Leave a comment

6. Have fun

If you’re not having fun doing what you’re doing don’t spend thousands on therapy to figure it out. Take a risk and follow another path. The time you have now is precious. Use it wisely.

Art Rules

Posted in Art, Words Leave a comment

Living Bridges

 

“The root bridges, some of which are over a hundred feet long, take ten to fifteen years to become fully functional, but they’re extraordinarily strong – strong enough that some of them can support the weight of fifty or more people at a time.”

 

More Images & Information.

Posted in Biology, Objects Leave a comment

“It seems like such a rarity nowadays-the possibility to work with one’s hands. Especially to create something from start to finish. And then when that something happens to be the text of a really good book, it just works.”

Posted in Books Leave a comment
jenny Jenny

We need to make books cool again

Posted in Art, Books Leave a comment
admin Admin

Revert Changes to single file with git

$ git checkout filename

Posted in Uncategorized Leave a comment
luke Luke

Setting Up Xampp

I have recently moved away from using Mamp Pro in favour of a XAMPP, an open source alternative for setting up and running your local development.

Get XAMPP

There are three main steps

1. Editing /etc/hosts to ensure your new domain is set up. If I am looking to set up testing.loc then I will need to add a line into my /etc/hosts. You can edit this via the terminal command $ sudo nano /etc/hosts127.0.0.1 testing.loc
It should be noted that you will need to set up an option for www. and any other subdomains you require as it is not possible to use wildcards. NB I am happy to be corrected on this point
127.0.0.1 testing.loc www.testing.loc sub.testing.loc sub2.testing.loc

2. Setting up your Virtual host configuration via the httpd.conf which should be under Applications/XAMPP/etc/httpd.conf then it’s a case of adding a <VirtualHost> instance for each site.

<VirtualHost *:80>
DocumentRoot /www/testing/
ServerName testing.loc
ServerAlias www.testing.loc
ErrorLog logs/test.loc-error_log
CustomLog logs/test.loc-access_log common
</VirtualHost>

Update Before the first instance of these Virtual host entries you will need to declare NameVirtualHost *:80
NameVirtualHost *:443

3. Create the directory that you are going to be working out of. This should match what you have got set in DocumentRoot of the VirtualHost. In this instance I would set this up with the following Terminal commands

$ mkdir /www/testing
$ cd /www/testing
$ touch index.php
$ nano index.php

Posted in Code, Documentary, web Leave a comment
oliver Oliver

Posted in Uncategorized 1 Comment