Back at McDonald's after some ill-fated house hunting in the obscure village of Lanceford PA. I thought Palmerton was out of the way. :[
I wasn't able to find a Lanceford, but there is a Lansford, and yeah, it looks like it's about as remote as Fort Valley is here (between two mountains with no big roads in or out).
Back at McDonald's after some ill-fated house hunting in the obscure village of Lanceford PA. I thought Palmerton was out of the way. :[
I wasn't able to find a Lanceford, but there is a Lansford, and yeah, it looks like it's about as remote as Fort Valley is here (between two mountains with no big roads in or out).
evidently I spelled it wrong.
the only store in town is a Family Dollar and confederate flags hung freely.
So the other LaBleep boys and I were going to go bike riding but while I was going on my own my bike's chain unraveled and the bike locked up on me, turning what was a fun ride into a bit of a horrifying flight.
I came out with just a couple bad scrapes on my left arm but I've got some deeper pain in the right arm that's got me worried, and apparently my bro fell worse than I did when they were riding too. :(
Mo: Yikes. Sounds like some of the scarier little burgs in southern Virginia. :P
I lived in a town once that was so small, it didn't even have a Family Dollar...just a convenience store, a teensy mini-mall, an equally teensy grocery store, a convenience store by the river that sold candy and fishin' stuff, and that was about it. This was the county seat, too... http://en.wikipedia.org/wiki/Palmyra,_Virginia
Not much in the way of rednecks or rebel flags (too close to Charlottesville for that), but still pretty remote. The nearest Food Lion was a 20-mile drive away until after we moved away.
So the other LaBleep boys and I were going to go bike riding but while I was going on my own my bike's chain unraveled and the bike locked up on me, turning what was a fun ride into a bit of a horrifying flight.
I came out with just a couple bad scrapes on my left arm but I've got some deeper pain in the right arm that's got me worried, and apparently my bro fell worse than I did when they were riding too. :(
You are the end result of a “would you push the button” prompt where the prompt was “you have unlimited godlike powers but you appear to all and sundry to be an impetuous child” – Zero, 2022
I hope everybody's ok, Tre
In sleep news, I've officially hit 24 hours of awake-being
I'm wondering when I should let myself nap or sleep
Another rider cut him off and he came off with some burns on an elbow and his lower chest, but he's tougher than I and my dad seems to have done a good job patching him up, so he'll be alright.
More people have said that and been killed than there are thorium decay products.
yay my character is onscreen and can move around at two different speeds with music in the background. :) I should work on animation soon, and also giving her the ability to shoot... although that may be a little complicated since there are five power levels and I haven't decided on her shot formations yet.
I had Shenandoah's Pride milk all through grade school and high school. That's kind of a bummer. Then again, one of the replacements is coming from the old Richfood dairy in Richmond, which was important to me as well.
i wouldn't say that, the episode quality has been pretty consistent from season 2 onwards...
Season 5 has had more episodes than other seasons, i think that some filler got in because lots of resources are being pushed towards the season finale, which is apparently supposed to be this huge hour long thing.
...And he(Augustus) himself towards the end of his life, thought that all his work had been for nothing.
Yet the Empire of Rome that he created has endured the harshness of a Tiberius, the monstrous cruelty of a Caligula and the ineptness of a Claudius. And now our new Emperor is one whom you tutored as a boy to whom you remain close in his new authority; let us be thankful for the fact that he will rule in the light of your wisdom and virtue, and let us pray to the gods that, under Nero, Rome will at last fulfill the dream of Octavius Caesar
Ouch.
The ending to Augustus by Bernard Williams is depressing, y'all
You are the end result of a “would you push the button” prompt where the prompt was “you have unlimited godlike powers but you appear to all and sundry to be an impetuous child” – Zero, 2022
I'm awake again now
I crashed around 9:00 but I'm probably good for at least a bit longer now
we have near zero contemporary sources on him that didn't have a vested interest in making him look either horrible or terrific. This is true of a number of roman emperors.
we have near zero contemporary sources on him that didn't have a vested interest in making him look either horrible or terrific. This is true of a number of roman emperors.
Well in the context of the world of the novel it's still depressing.
You are the end result of a “would you push the button” prompt where the prompt was “you have unlimited godlike powers but you appear to all and sundry to be an impetuous child” – Zero, 2022
So I was awake 25 hours then I crashed and slept for about 2 hours
And I wake up right at that point of the night where EVERYBODY WANTS TO TALK TO ME
More people have said that and been killed than there are thorium decay products.
if event.type == KEYDOWN: if event.key == K_LEFT: moveLeft = True if event.key == K_RIGHT: moveRight = True if event.key == K_UP: moveUp = True if event.key == K_DOWN: moveDown = True if event.key == K_LSHIFT: PLAYERMOVERATE = 2 if event.key == ord('z'): shooting = True
if event.type == KEYUP: if event.key == K_LEFT: moveLeft = False if event.key == K_RIGHT: moveRight = False if event.key == K_UP: moveUp = False if event.key == K_DOWN: moveDown = False if event.key == K_LSHIFT: PLAYERMOVERATE = 5 if event.key == ord('z'): shooting = False
if moveLeft and playerRect.left > 0: playerRect.move_ip(-1 * PLAYERMOVERATE, 0) if moveRight and playerRect.right < WINDOWWIDTH: playerRect.move_ip(PLAYERMOVERATE, 0) if moveUp and playerRect.top > 0: playerRect.move_ip(0, -1 * PLAYERMOVERATE) if moveDown and playerRect.bottom < WINDOWHEIGHT: playerRect.move_ip(0, PLAYERMOVERATE)
if moveLeft == False and moveRight == False and moveUp = False and moveDown = False: windowSurface.blit(playerImage, playerRect) if moveLeft == True and moveRight == True and moveUp = False and moveDown = False: windowSurface.blit(playerImage, playerRect) if moveLeft == False and moveRight == False and moveUp = True and moveDown = True: windowSurface.blit(playerImage, playerRect) if moveLeft == True and moveRight == True and moveUp = True and moveDown = True: windowSurface.blit(playerImage, playerRect) if moveLeft == True and moveRight == False: windowSurface.blit(playerImageLeft, playerRect) if moveLeft == False and moveRight == True: windowSurface.blit(playerImageRight, playerRect) if moveUp = True and moveDown = False and moveRight = False and moveLeft = False: windowSurface.blit(playerImageUp, playerRect) if moveUp = True and moveDown = False moveRight = True and moveLeft = True: windowSurface.blit(playerImageUp, playerRect) if moveDown = True and moveUp = False and moveRight = False and moveLeft = False: windowSurface.blit(playerImageDown, playerRect) if moveDown = True and moveUp = False and moveRight = True and moveLeft = True: windowSurface.blit(playerImageDown, playerRect)
There may be a more efficient way to do this, but I don't know of one. This code moves and animates my character. It seems so simple, but look at all this. :o
Comments
Nightcore is old and busted. Unkore is the way of the future. I'll post some in the NSFW thread to educate you
evidently I spelled it wrong.
the only store in town is a Family Dollar and confederate flags hung freely.
Brevity is wit.
Assassin poems, Poems that shoot
guns. Poems that wrestle cops into alleys
and take their weapons leaving them dead
It was playing Donkey Kong music.
Assassin poems, Poems that shoot
guns. Poems that wrestle cops into alleys
and take their weapons leaving them dead
Of course, I thought of Imikopolex G
awww you shouldn't have
so, uh...
jubblies
Assassin poems, Poems that shoot
guns. Poems that wrestle cops into alleys
and take their weapons leaving them dead
Yet the Empire of Rome that he created has endured the harshness of a Tiberius, the monstrous cruelty of a Caligula and the ineptness of a Claudius. And now our new Emperor is one whom you tutored as a boy to whom you remain close in his new authority; let us be thankful for the fact that he will rule in the light of your wisdom and virtue, and let us pray to the gods that, under Nero, Rome will at last fulfill the dream of Octavius Caesar
The ending to Augustus by Bernard Williams is depressing, y'all
Assassin poems, Poems that shoot
guns. Poems that wrestle cops into alleys
and take their weapons leaving them dead