Misty Tales and Poems Lost

8 notes

In the end, the wind takes everything, doesn’t it? And why not? Why other? If the sweetness of our lives did not depart, there would be no sweetness at all.
Stephen King, The Dark Tower: The Wind Through the Keyhole

Filed under stephen king dark tower quote

4 notes

Time is a keyhole. Yes, I think so. We sometimes bend and peer through it. And the wind we feel on our cheeks when we do - the wind that blows through the keyhole - is the breath of all the living universe.
Stephen King, The Dark Tower: The Wind Through the Keyhole

Filed under stephen king dark tower quote

0 notes

Hell of a season Flyers, but a damn disappointing series. The positives that come from it is I get to shave the playoff beard and that was hopefully the last game Matt Carle plays as a Flyer. Best of luck to the rest of the teams in the playoffs.

Filed under Flyers Philadelphia Flyers NHL hockey playoffs

2 notes

aimlessanagram:

Guys, where in the error in this?:

public class TwoValues

{

private int x, y;

public TwoValues()

{

x=0;

}

public TwoValues()

{

x=0;

y=0;

}

}

Your second constructor should look something like

public TwoValues(int x, int y)

{

this.x = x;

this.y = y;

}

It’s been a while since I worked in Java, but should be something like that.

(Source: ughthisisdifficult)