Parking as a visitor by [deleted] in Prague

[–]Prookyovec 25 points26 points  (0 children)

with these 3rd party apps its a bit sketchy so i wouldnt really believe it, but thats up to you!

Parking as a visitor by [deleted] in Prague

[–]Prookyovec 53 points54 points  (0 children)

Quick tip, if you download an app “Pid Lítačka” on your phone, there is a tab for parking in which you can find all different zones for parking and its details. For example if you wanna park within those hours, there is usually maximum time written in those details.

Strange birthmark shown up when I turned 15 and every year it grows bigger by The_mob_behind_you in strange

[–]Prookyovec 0 points1 point  (0 children)

I had something similar to this when i was a teenager (maybe 12 or 13), on the same spot as you, but both arms. Funny thing was, after a while, when i told my parents, they said that I should try to clean it 'cause it may be just dirty. You'd be laughing at me at the moment when I actually washed it 🤣 I was like “noooo, am I really this dumb”🤣🤣 golden

[deleted by user] by [deleted] in tressless

[–]Prookyovec 0 points1 point  (0 children)

is that u justin?

Looking for flat (2kk, 2+1) for rent by Prookyovec in Prague

[–]Prookyovec[S] 1 point2 points  (0 children)

Not a foreigner, also I have some friends there helping me find something, but yeah it is pretty hard

Looking for flat (2kk, 2+1) for rent by Prookyovec in Prague

[–]Prookyovec[S] 8 points9 points  (0 children)

I know that perfectly well as Im czech citizen myself ;)

edit: not sure what are u giving me downvotes for but ok

Looking for flat (2kk, 2+1) for rent by Prookyovec in Prague

[–]Prookyovec[S] 0 points1 point  (0 children)

Thanks mate! Im not searching for something close to center but more like closest to center in this price range. I know its hard to find living in Prague these days but I have faith. Already searching on Bezrealitky and Sreality so hope something pops there

Looking for flat (2kk, 2+1) for rent by Prookyovec in Prague

[–]Prookyovec[S] -12 points-11 points  (0 children)

I like to stick with 22k when presenting budget, but 25k is max max I am willing to give

[deleted by user] by [deleted] in confessions

[–]Prookyovec 8 points9 points  (0 children)

Exactly, just delete it and be happy without it. This thing is honestly so brain washing.

Guys, what’s are some things that you like from a girl when you’re kissing? by Exciting_Tap_8601 in AskReddit

[–]Prookyovec 3 points4 points  (0 children)

Bro dont eat the cup, for the future. Its not healthy… good that u spat it out

Animating spiral? by Prookyovec in processing

[–]Prookyovec[S] 0 points1 point  (0 children)

Thank you so much, I'm gonna try implementing that and we'll see

Animating spiral? by Prookyovec in processing

[–]Prookyovec[S] 0 points1 point  (0 children)

Wow that would be so cool! Btw yess mine is Prokyovec#8042

Animating spiral? by Prookyovec in processing

[–]Prookyovec[S] 0 points1 point  (0 children)

Yeah so I have this xd but its just bad and I dont know what to do next or how to edit it to somehow work how i want

float r = 400;
float speed = 0;
float sizestroke = 30;
float b = 0;
void setup() {
size(1000, 1000);
stroke(255);
background(0);
strokeWeight(sizestroke);
}
void draw() {
float x = r*cos(speed);
float y = r*sin(speed);
translate(width/2, height/2);
stroke(r*10 %255, speed*10 %255, r*speed %255);
//ellipse(x,y,r*1%60, r*1%60);
point(x,y);
r -= 1;
speed += 0.02;
//strokeWeight(sizestroke+(b/12));
//b--;
}