No
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Ryukage_the_blatant_troll on Thu 24/06/2004 13:43:46
I'll start off with a hyperlink:
[- We only have 4 forms for each verb, not 20 or 30 like most other languages. Instead of creating a zillion conjugations to be individually memorized, we just take four basic forms and modify them with simple general-purpose words until we get the precise meaning we need. Less to memorize and more range of expression.
QuoteNot to mention the single msot difficult thing for non-native speakers to learn: PRONUNCIATION. In Spanish, a letter always sounds the same, so even if you don't know what you are saying, its very easy to read written Spanish out loud if you knwo the pronunciation rules.
Granted, there's room for improvement. Our spelling rules are utterly ridiculous (a consequence of the cross-pollenization), pronouns are a little messed up, and there's still some useless vestigial grammar rules, but by and large we're farther ahead than most languages.
Quote
Now of course there are many countries besides the USA that speak English, but we've got a few things over many of them even. For one, we know the difference between something you dip in tar and set on fire and something you insert batteries into and push a button to turn on.
Quoteand we don't stuff unneeded 'u's in next to our 'o's nearly as often as some other countries.You mean you don't undertsand the concept of dipthongs... "o" is a different sound from "ou"
QuoteIt was humans who invented clothing, not God.Having said this, then, are you a nudist or a hypocrite?
QuoteI think that "nothing to do with" is obviously false. Just see how many car adverts have pictures of ladies in burqahs...
Being "sexually provocative" has nothing to do with how much skin is showing and everything to do with attitude and body language.
QuoteHe reveals his ignorance...
BTW, in that episode they said that language spoken in Brasil is Portugese, not Spanish. Is that true? Every Brasillian I've ever seen on TV has appeared to be speaking Spanish, though I can't swear I'd be able to tell the difference.
#define SLOW_MOVE_TIMER 2 int x0, y0, x1, y1; int dx, dy; int stepx, stepy; int delay=1; int fraction; int slowmoveon=-1; function slowmove (int object, int x, int y) { slowmoveon = object; x0 = GetObjectX(object); y0 = GetObjectY(object); x1 = x; y1 = y; dx = x - x0; dy = y - y0; if (dy < 0) { dy = -dy; stepy = -1; } else { stepy = 1; } if (dx < 0) { dx = -dx; stepx = -1; } else { stepx = 1; } dy = dy << 1; dx = dx << 1; if (dx > dy) { fraction = dy - (dx >> 1); } else { fraction = dx - (dy >> 1); } SetTimer(SLOW_MOVE_TIMER, delay); } function slowmove_update () { if ((slowmoveon>=0) && (IsTimerExpired(SLOW_MOVE_TIMER))) { if (dx > dy) { if (x0 == x1) { slowmoveon=-1; } else { if (fraction >= 0) { y0 += stepy; fraction -= dx; } x0 += stepx; fraction += dy; SetObjectPosition(slowmoveon, x0, y0); SetTimer(SLOW_MOVE_TIMER, delay); } } else { if (y0 == y1) { slowmoveon=-1; } else { if (fraction >= 0) { x0 += stepy; fraction -= dy; } y0 += stepy; fraction += dx; SetObjectPosition(slowmoveon, x0, y0); SetTimer(SLOW_MOVE_TIMER, delay); } } } } function room_d() { // script for room: Repeatedly execute slowmove_update(); }
Quote from: Barcik on Tue 22/06/2004 11:43:58
It is so, but I don't think it is wrong. It has a good cause - raise and educate children on values of patriotism and national pride.
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 1.162 seconds with 15 queries.