mIRC Home    About    Download    Register    News    Help

Print Thread
#100954 18/10/04 09:18 PM
Joined: Dec 2003
Posts: 3
A
Self-satisified door
OP Offline
Self-satisified door
A
Joined: Dec 2003
Posts: 3
I apologise in advanced incase this is a stupid question, but how exactly do you use/make a cookie?

I know what cookies are, but have no clue how to make/use them in mirc.

I am asking because I am making a script for a Webgame, which requires me to: cookie a specific item

Thanks for your help
Philip

Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
What you need:

3 eggs
l/2 cup milk
2 tsp. lemon extract
l/2 cup sugar
l/2 cup vegetable oil
3 cups flour
8 tsp.baking powder
(some have worried that is an excessive amount of baking powder)

What you do:

Heat oven to 350 degrees. In an electric mixer on medium speed, beat eggs, milk, lemon extract, sugar, and oil until well blended.
On low speed, add flour and baking powder. Mix until just blended. The dough should be soft and sticky. Lightly dust the dough and your fingers with a little additional flour.
Drop dough from a teaspoon onto a lightly greased cookie sheet, spacing cookies 2 inches apart. Bake immediately for 8-10 minutes or until lightly browned.
Remove cookies from cookie sheet onto wire racks. Cool. Frost with Lemon confectioners' sugar.

If it is necessary to freeze cookies, use heavy-duty plastic freezer bags and freeze the cookies unfrosted. Makes about 50 cookies.

Hope this was somewhat helpful,

Greets


Gone.
Joined: Mar 2004
Posts: 457
D
Fjord artisan
Offline
Fjord artisan
D
Joined: Mar 2004
Posts: 457
thanks for the recipe fiber, didn't know you put lemon extract in them...

and arm, i seriously wouldn't suggest trying to play an online game using sockets as unless you know how internet browsers work, i doubt u'll ever get it right.

Joined: Dec 2003
Posts: 3
A
Self-satisified door
OP Offline
Self-satisified door
A
Joined: Dec 2003
Posts: 3
Ok Nice humor we have here :P

Danthemandoo: Thanks for the consern, but I do not think you entirly understand my motives here. I just want to log in, (which needs a cookie) and get some EASILY assessable stats from the site, that is all.

Well, if a moderator reads this: please close this thread. I got my the info from someone else, and thus do not need this thread to be open for more "humor"

Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
They're lemon drop cookies smile


Gone.
Joined: Feb 2004
Posts: 206
D
Fjord artisan
Offline
Fjord artisan
D
Joined: Feb 2004
Posts: 206
Heat oven to 350 degrees.

I hope that is in Farenheit? Otherwise they may be brown and very crispy biscuits (or you would only cook them for maybe 1 minute!)

Cheers,

DK


Darwin_Koala

Junior Brat, In-no-cent(r)(tm) and original source of DK-itis!
Joined: Dec 2002
Posts: 1,237
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
I apologize for the late reply, but i just read this and had a nice laff and a new recipe LOL.

I would have first said see if your mother has a recipe in her cookbooks, but you went all out on this one....thanks for the laff it made my day.

Joined: Dec 2002
Posts: 788
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 788
I assume your making a script to connect to a webserver, or are actually making a webserver, in any event, the following is how a cookie is sent; i.e. from a client to a server;

GET /dir/filename.ext HTTP/1.0
Accept: */*
Referer: http://whatever.com/
Accept-Language: en-gb
User-Agent: Mozilla/4.0
Host: server.com
Connection: Close
Cookie: name1=data1; name2=data2; name3=data3;

All of the above should be pretty familiar, most of it isn't needed, mainly just Host/GET/POST but thats how a client sends a cookie to a server.

And, the following is how the server, gets the client to STORE a cookie;

HTTP/1.1 200 OK
Date: date-goes-here
Server: Apache
Set-Cookie: cookiename=cookiedata; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT

Pragma: no-cache
Keep-Alive: timeout=1, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/html; charset=iso-8859-15

HTML-FROM-WEBSITE-WOULD-BE-HERE.

As I said above you should again be familiar with all the above data that comes from the server, it appears just before you recieve its html data, usually you might find it only has the first line.

Hope this helps.

Eamonn.

Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
Thanks,

glad to hear smile


Gone.

Link Copied to Clipboard