Go then, there are other worlds than these.
(via gunslingers-thoughts)
Go then, there are other worlds than these.
(via gunslingers-thoughts)
(Source: exit-does--not-exist)
The two most beautiful words in any language are: I forgive.
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.
(via fuckyeah1990s)
Time to learn some Java game programming!
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.
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.
Likewise! :)
(Source: harvestsdeliriumarchive)
(Source: explicitmoxviolence, via onemanarmygrp)
I turn 21 on Sunday. Time flies, man.
The gunslinger had spent long years with no ka-tet, and keeping his own counsel had become a habit.
It has arrived!
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)