Author Topic: Stuff that fries your potatoes with olive oil of HAPPY.  (Read 654745 times)

Spectere

  • \m/ (-_-) \m/
  • Administrator
  • Hero Member
  • *****
  • Posts: 5716
  • printf("%s\n", "Hi!");
    • View Profile
    • spectere.net
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1050 on: October 27, 2008, 04:07:01 PM »
I made my first truly fun step chart in quite a while, heh.  Just kind of took a nice, calm 105 bpm song and made reasonable steps.  It's kind of a nice switch from doing pad charts to Venetian Snares songs (and half of my other Mungyodance charts, ugh...I can't even come close to passing half of my own charts).
"This is a machine for making cows."

TimJing

  • Hero Member
  • *****
  • Posts: 1049
    • View Profile
    • what
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1051 on: October 27, 2008, 05:31:59 PM »
I watched Ferris Bueller's Day Off for the first time Saturday night. It was a great movie.

my avatar is peaches

MY BRAIN IS CAFFEINE

LunarKeys

  • Jr. Member
  • **
  • Posts: 61
    • View Profile
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1052 on: October 27, 2008, 10:10:42 PM »
I got my performance evaluation at work today. Managed to snag an outstanding employee overall award, the first ever in the department. Got the raise I had been waiting for, to boot.

The same sneaky government teacher built up the tension when he handed back our research papers. He stared me in the eye for what must've been five seconds before handing me my paper with a 'very nice work'. A+. You bastard, you scared me half to death. XD

This is gonna be a lucrative semester! (my parents are bribing me to do well - every B will be $200, every A, $500. They figured that since I'm going to a cheap community college instead of one of the numerous expensive universities, they could afford to spend some bonus money on me. =p)

Jupi

  • Striped Member
  • Hero Member
  • *
  • Posts: 1334
  • ...omg...it spins...
    • View Profile
    • Jupi's website.  No, rly.
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1053 on: October 27, 2008, 10:36:13 PM »
Good going, Pepe!  xD
actually fuck you guys just kidding keep my quote in your sigs

Bobbias

  • #1 Poster
  • Hero Member
  • *****
  • Posts: 7210
  • 404 Avatar not found.
    • View Profile
    • Magnetic Architect
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1054 on: October 27, 2008, 10:48:01 PM »
Christ, nice bribes!
This is going in my sig. :)

BANNED FOR BAD PUNS X_x

TimJing

  • Hero Member
  • *****
  • Posts: 1049
    • View Profile
    • what
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1055 on: October 27, 2008, 11:36:15 PM »
Two-dollar bills. And kit kats.

my avatar is peaches

MY BRAIN IS CAFFEINE

Spectere

  • \m/ (-_-) \m/
  • Administrator
  • Hero Member
  • *****
  • Posts: 5716
  • printf("%s\n", "Hi!");
    • View Profile
    • spectere.net
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1056 on: October 28, 2008, 01:46:54 PM »
I'm writing a VB.NET program to control foobar2000 via foo_controlserver and it's coming along very nicely.

I ran into a major hurdle when I first started because I made the mistake of trying to use someone else's telnet library to do the work, but I wound up having a ton of problems because of the way it handled its read buffer.  I stripped it out altogether and started working on my own system using System.Net.Sockets.TcpClient and quickly brought the program up to its previous state.

End result?  This is the entire net code of the program, sans the single line required to actually connect to the server:

Code: [Select]
Private Function netRead() As String
    Dim length As Integer = client.Available
    Dim encoding As New System.Text.ASCIIEncoding()

    ' this will hang if the length is zero
    If length > 0 Then
        stream.Read(readBuffer, 0, client.Available)
        Return encoding.GetString(readBuffer)
    Else
        Return Nothing
    End If
End Function

Private Sub netSend(ByVal message As String)
    Dim encoding As New System.Text.ASCIIEncoding()

    ' add a newline to the string
    message += vbNewLine

    stream.Write(encoding.GetBytes(message), 0, message.Length)
End Sub

So. Damn. Easy.  And nice and clean to boot.

Now all I have to do is finish up my fooControl class and then I can work on the actual UI.
"This is a machine for making cows."

Jupi

  • Striped Member
  • Hero Member
  • *
  • Posts: 1334
  • ...omg...it spins...
    • View Profile
    • Jupi's website.  No, rly.
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1057 on: October 28, 2008, 03:25:34 PM »
My potatoes are gonna be fried by my potential class schedule for next term.

My dad's potatoes are gonna be peelin' though.  xD
actually fuck you guys just kidding keep my quote in your sigs

Bobbias

  • #1 Poster
  • Hero Member
  • *****
  • Posts: 7210
  • 404 Avatar not found.
    • View Profile
    • Magnetic Architect
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1058 on: October 28, 2008, 09:49:47 PM »
Yeah spec, telnet is really unnecessary for really basic stuff like that, lol. I've noticed that some people have a tendency to use libraries even for really simple solutions that they don't really need the library for, lol.
This is going in my sig. :)

BANNED FOR BAD PUNS X_x

Spectere

  • \m/ (-_-) \m/
  • Administrator
  • Hero Member
  • *****
  • Posts: 5716
  • printf("%s\n", "Hi!");
    • View Profile
    • spectere.net
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1059 on: October 28, 2008, 10:07:13 PM »
Yeah spec, telnet is really unnecessary for really basic stuff like that, lol.

It was more to save time than anything else.  No sense reinventing the wheel, after all, especially considering I never did any raw networking with .NET before.

Of course, if I'd known it were easier than VB6 (I wrote a crappy telnet client in VB6 way back when...it was a royal pain in the ass) I would have just went for it.  No big deal either way.
"This is a machine for making cows."

Bobbias

  • #1 Poster
  • Hero Member
  • *****
  • Posts: 7210
  • 404 Avatar not found.
    • View Profile
    • Magnetic Architect
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1060 on: October 29, 2008, 01:48:01 AM »
Understandable, but I haven't done any networking in .net yet, but from what I have seen it's pretty simple.
This is going in my sig. :)

BANNED FOR BAD PUNS X_x

annon

  • AWSUM MODERATAR!!!!1
  • Hero Member
  • *****
  • Posts: 1837
    • View Profile
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1061 on: October 30, 2008, 09:31:42 PM »
I have an 8GB mem stick for my PSP now. This should last me a while.

Code: [Select]
f(u,c,k,_,y,e,a,h)
{return u*u*u*u-u*u*u*_+u*u*y-u*e+a?k?f(u+1,c,k-1,_,y,e,a,h):0:putchar(u-c+h)==f(u+1,u,k-1,_,y,e,a,h);}
main(){return f(0,0,34,84,2423,26628,72864,98)<putchar(32)>f(0,0,40,125,5809,118995,906750,96)==~putchar(10);}

MortifiedocAlot

  • I GOT GULD STERRRRZZ
  • Hero Member
  • **
  • Posts: 4760
  • ಠ_ಠ
    • View Profile
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1062 on: October 30, 2008, 11:14:01 PM »
Had a long day today. First off, I went to my Grandparents house in town and helped clean their kitchen After that my Grandma gave me 50 bucks (which I wasn't expecting, but is really awesome). So after that, I found some supplies for my school project that's due next week. Then I went to get some gas, and in my hurry to leave I left my gas tank on the top of my car, which I then promptly lost. Thank god I'm white trash and I can use the gas cap on the broken down jeep in my back yard. After all that noise, I found out that my right headlight is broken, but all in all it was a progressive day. Now I just have to slap my project together and hope it sticks.


Jupi

  • Striped Member
  • Hero Member
  • *
  • Posts: 1334
  • ...omg...it spins...
    • View Profile
    • Jupi's website.  No, rly.
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1063 on: November 01, 2008, 12:13:36 AM »
New month!  Happy November!!!
actually fuck you guys just kidding keep my quote in your sigs

Sneaky

  • Windows 8 Knowledge Base
  • Hero Member
  • *****
  • Posts: 1297
  • Where I come from they call it the Hibbity Dibbity
    • View Profile
Re: Stuff that fries your potatoes with olive oil of HAPPY.
« Reply #1064 on: November 01, 2008, 01:41:46 AM »
That I got invited and am now a functioning member of sows :D
I wish that cake was a lie. :(

I guess he never figured out what Willis was saying :/