Page 2226 of 2549 [ 40782 posts ]  Go to page Previous  1 ... 2223, 2224, 2225, 2226, 2227, 2228, 2229 ... 2549  Next

jamieevren1210
Veteran
Veteran

User avatar

Joined: 24 May 2011
Age: 28
Gender: Female
Posts: 2,290
Location: 221b Baker St... (OKAY! Taipei!! Grunt)

23 Apr 2013, 6:26 pm

Sempiternal wrote:
Yay! I got into this summer program I applied for months back! My summer is now complete! Four weeks of astronomy and oceanography at UCSC! :D

Congrats!! !


_________________
Will be off the internet for some time. I'm challenging myself to stop any unnecessary Internet activity. Just to let you know...


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

23 Apr 2013, 6:48 pm

Thank you! :D

I feel bad that I can't participate in this other program though, which would let me work as a Nursing Assistant. Oh well, there's always next year. :lol:


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

23 Apr 2013, 6:56 pm

Andras wrote:
equestriatola wrote:
@Andras: It seems to be slowly heading in the direction of me being with her.
That's awesome to hear! I hope you both become a cute couple. :P


Thanks.


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


PsychoSarah
Veteran
Veteran

User avatar

Joined: 21 Apr 2013
Age: 30
Gender: Female
Posts: 1,109
Location: The division between Sanity and Insanity

24 Apr 2013, 4:13 pm

I just won a $30,000 scholarship :lol:



Andras
Veteran
Veteran

User avatar

Joined: 31 Mar 2013
Age: 36
Gender: Male
Posts: 809
Location: Netherlands

24 Apr 2013, 5:13 pm

PsychoSarah wrote:
I just won a $30,000 scholarship :lol:
WHAT!? They don't have such things down here. :(


_________________
Self-diagnosed HFA


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

24 Apr 2013, 6:53 pm

PsychoSarah wrote:
I just won a $30,000 scholarship :lol:


Congratulations! :D


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


DarkRain
Veteran
Veteran

User avatar

Joined: 30 Mar 2013
Age: 46
Gender: Female
Posts: 1,657
Location: Hissing in your ear

24 Apr 2013, 7:18 pm

Geaux LSU! Beat Tulane!



jamieevren1210
Veteran
Veteran

User avatar

Joined: 24 May 2011
Age: 28
Gender: Female
Posts: 2,290
Location: 221b Baker St... (OKAY! Taipei!! Grunt)

24 Apr 2013, 8:46 pm

I'm going to get evaluated for AS again on August 9th.


_________________
Will be off the internet for some time. I'm challenging myself to stop any unnecessary Internet activity. Just to let you know...


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

24 Apr 2013, 9:45 pm

I can't wait to come back to L.A. this summer....


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

24 Apr 2013, 10:36 pm

jamieevren1210 wrote:
I'm going to get evaluated for AS again on August 9th.


If you don't mind my asking, why are you being re-evaluated? :o


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


jamieevren1210
Veteran
Veteran

User avatar

Joined: 24 May 2011
Age: 28
Gender: Female
Posts: 2,290
Location: 221b Baker St... (OKAY! Taipei!! Grunt)

24 Apr 2013, 10:42 pm

Sempiternal wrote:
jamieevren1210 wrote:
I'm going to get evaluated for AS again on August 9th.


If you don't mind my asking, why are you being re-evaluated? :o


Last one was sort of bogus. Didn't give me no conclusion. He's not even an ASD specialist... :wink:


_________________
Will be off the internet for some time. I'm challenging myself to stop any unnecessary Internet activity. Just to let you know...


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

24 Apr 2013, 11:09 pm

Ohhh, I see. Hope it goes well then!


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


CokaCola
Veteran
Veteran

User avatar

Joined: 4 Jul 2011
Age: 30
Gender: Male
Posts: 3,301
Location: NSW, Australia

24 Apr 2013, 11:29 pm

Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Net;
using System.Net.Sockets;

namespace FoolBrowser
{
    class Program
    {
        private static Socket server;
        public static void Main(string[] args)
        {
            Console.WriteLine("-Fools Web Server-");

            server = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            server.Bind(new IPEndPoint(IPAddress.Any, 12875));
            server.Listen(10);

            Console.WriteLine("Now listening on port 12875..");

            new Thread(new ThreadStart(acceptCalls)).Start();
            Console.WriteLine("THE CALL CENTER IS OPEN! NO ESCAPE NOW!");
        }
        private static void acceptCalls()
        {
            while (true)
            {
                new Thread(new ParameterizedThreadStart(acceptCall)).Start(server.Accept());
            }
        }
        private static void acceptCall(object sock)
        {
            Socket client = (Socket)sock;
            byte[] randomCrap = new byte[2048];
            client.Receive(randomCrap, 0, 2048, SocketFlags.None);
            //receive a maximum of 2048 bytes, if there is more, just interrupt them and send our crap, we like to overtalk the browser
            string html = "<html><head><title>AHH!</title></head><body>FOR OW FOR! NON FAOUND!</body></html>";
            string data = String.Format("HTTP/1.1 404 Not Found\r\nContent-Type: text/html\r\nContent-Length: {0}\r\n\r\n{1}", html.Length, html);
            randomCrap = ASCIIEncoding.ASCII.GetBytes(data); //forgot what ever crap they said and replace it with our awesome new knowledge
            client.Send(randomCrap, 0, randomCrap.Length, SocketFlags.None);
            //kill 'em and dispose of the body
            client.Dispose();
        }
    }
}

THE ANTI-GRAMMAR NAZI, ALWAYS 404 WEB SERVER!
GET YOURS TODAY!
REPLACE A REALLY BIG SITE ABOUT GRAMMAR NAZI..ING..WITH THIS! YOUR VISITORS WILL SAY "..what the.." AND THEN CRY!
..
:lmao:

And yes, I did waste my time creating that for no reason.


_________________
You must sleep now, Uncle Sempi!
-
Trouble finding the WP IRC chatroom on the new site?
You can find it here: http://webchat.freenode.net/?channels=wrongplanet


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

25 Apr 2013, 12:01 am

WHAAAAA...? :lol:

Oh, Coke. Of course, you would. :lmao:


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


Zodai
Veteran
Veteran

User avatar

Joined: 2 Oct 2012
Gender: Male
Posts: 2,023
Location: Walnut Creek/Concord, California

25 Apr 2013, 12:12 am

Yay!

People are talking!

xD


_________________
If you believe in anything, believe in yourself. Only then will your life remain your own.

Author/Writer


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

25 Apr 2013, 1:24 am

Yeah, I've noticed it's been less active lately. :lol:


_________________
My nephew Coke needs to eat! Obviously we're related. :lol: