Post making contest 6.0

Post making contest 6.0
RE: Post making contest 6.0
(12-06-2017, 07:53 AM)a52 Wrote: »i'm certain i must have made a mistake in there somewhere.

...especially since that right side is definitely supposed to be moving to the right
Quote
RE: Post making contest 6.0
So the thing I've noticed regarding Rule 5 is that changes to the sentence continue passing Rule 5 if the number of vowels and consonants remains the same.

I'm not sure which category "y" is in. Let's find out!
Quote
RE: Post making contest 6.0
loam I'm interested in the evens.
Quote
RE: Post making contest 6.0
lint I'm interested in the evens.
Quote
RE: Post making contest 6.0
that's better.
https://anvaka.github.io/fieldplay/?dt=0...D&pc=10000
Quote
RE: Post making contest 6.0
(this is what the refrance: https://math.stackexchange.com/questions...a-function)
Quote
RE: Post making contest 6.0
(12-06-2017, 07:53 AM)a52 Wrote: »// p.x and p.y are current coordinates
// v.x and v.y is a velocity at point p
vec2 get_velocity(vec2 p) {
vec2 v = vec2(0., 0.);

const float n = 10.;

float log2 = log(2.);
float pk = pow(2.,1.-p.x);
float c_re_top = 1. - pk*cos(p.y*log2);
float c_im_top = pk*sin(p.y*log2);
float c_bot = c_re_top*c_re_top +
c_im_top*c_im_top;

float sum1r = 0.;
float sum1i = 0.;

for (float k = 1.; k <= n; k++) {
pk = pow(k, -p.x);

if (k == 1.) {
pk = -pk;
}

float logk = log(k);

sum1r += pk * cos(p.y * logk);
sum1i += -pk * sin(p.y * logk);
}

float sum2r = 0.;
float sum2i = 0.;

for (float k = n + 1.; k <= 2.*n; k++){
pk = pow(k, -p.x);

if (k == 1.) {
pk = -pk;
}

float logk = log(k);

float ek = 0.;

for (float j = 0.; j <= n; j++) {
if (j <= k) {continue;}
float b = 1.;
for (float i = 1.; i <= n; i++) {
if (i == j) { break; }
b *= (n + 1. - i)/i;
}
ek += b;
}

sum2r += pk * cos(p.y * logk) * ek;
sum2i -= pk * sin(p.y * logk) * ek;

}

float pow2 = pow(2., -n);
float sumr = sum1r + pow2 * sum2r;
float sumi = sum1i + pow2 * sum2i;
v.x = (sumr * c_re_top - sumi * c_im_top)
/c_bot;
v.y = (sumr * c_im_top + sumi * c_re_top)
/c_bot;
return v;
}

glsl certainly has some quirks. i'll need to check this tomorrow, i'm certain i must have made a mistake in there somewhere.

This post passes rules 1, 2, and 3.

(12-06-2017, 07:53 AM)a52 Wrote: »https://anvaka.github.io/fieldplay/?dt=0...v%3B%0A%7D

This post passes no rules.

(12-06-2017, 07:57 AM)a52 Wrote: »
(12-06-2017, 07:53 AM)a52 Wrote: »i'm certain i must have made a mistake in there somewhere.

...especially since that right side is definitely supposed to be moving to the right

This post passes rules 2 and 3.

(12-06-2017, 08:17 AM)Dragon Fogel Wrote: »So the thing I've noticed regarding Rule 5 is that changes to the sentence continue passing Rule 5 if the number of vowels and consonants remains the same.

I'm not sure which category "y" is in. Let's find out!

This post passes rule 2 and 3.

(12-06-2017, 08:18 AM)Dragon Fogel Wrote: »loam I'm interested in the evens.

This post passes rule 5.

(12-06-2017, 08:18 AM)Dragon Fogel Wrote: »lint I'm interested in the evens.

This post passes rule 2.

(12-06-2017, 09:59 AM)a52 Wrote: »that's better.
https://anvaka.github.io/fieldplay/?dt=0...D&pc=10000

This post passes rule 2.

(12-06-2017, 10:07 AM)a52 Wrote: »(this is what the refrance: https://math.stackexchange.com/questions...a-function)

This post passes rules 2 and 3.
Quote
RE: Post making contest 6.0
Okay, y is considered a vowel apparently.
Quote
RE: Post making contest 6.0
(12-06-2017, 06:50 PM)Dragon Fogel Wrote: »Okay, y is considered a vowel apparently.

This post passes rule 2.
Quote
RE: Post making contest 6.0
Apparently it's not entirely vowels.

a passes rule 5, e passes rule 5, o passes rule 5; i and u don't.
Quote
RE: Post making contest 6.0
a'm only anterested an the evens
Quote
RE: Post making contest 6.0
I don't know what it's going to mean if that does or doesn't pass Rule 5.
Quote
RE: Post making contest 6.0
(12-06-2017, 08:53 PM)Dragon Fogel Wrote: »Apparently it's not entirely vowels.

a passes rule 5, e passes rule 5, o passes rule 5; i and u don't.

This post passes rule 3.

(12-06-2017, 08:53 PM)Dragon Fogel Wrote: »a'm only anterested an the evens

This post passes no rules.

(12-06-2017, 08:54 PM)Dragon Fogel Wrote: »I don't know what it's going to mean if that does or doesn't pass Rule 5.

This post passes rules 2 and 3.
Quote
RE: Post making contest 6.0
Are you sure y counts as a vowel, or is it context dependent (and since y is a vowel in 'only', it counts there)?
🐦🐙🐙[Image: nifOFwR.png]🐙🐙
Quote
RE: Post making contest 6.0
Well, vowel changes apparently aren't rule 5-neutral after all, so who the heck knows.
Quote
RE: Post making contest 6.0
yts y mystyry
Quote
RE: Post making contest 6.0
frym nyw yn thy ynly vywyl yllywyd ys y
Quote
RE: Post making contest 6.0
rymymbyr thy ypysydy whyry ryss dyd symythyng cymplytyly dyspycybly?
Quote
RE: Post making contest 6.0
ny wyyt syrry thyts yll yf thym
Quote
RE: Post making contest 6.0
ygh, whyt ys thys dyvylypmynt?

- Ryywyld
Sig:
SpoilerShow
Quote
RE: Post making contest 6.0
(12-07-2017, 04:26 AM)Kíeros Wrote: »Are you sure y counts as a vowel, or is it context dependent (and since y is a vowel in 'only', it counts there)?

This post passes rules 2 and 3.

(12-07-2017, 04:41 AM)Dragon Fogel Wrote: »Well, vowel changes apparently aren't rule 5-neutral after all, so who the heck knows.

This post passes rules 2 and 3.

(12-07-2017, 09:42 AM)Ixcaliber Wrote: »yts y mystyry

This post passes no rules.

(12-07-2017, 12:04 PM)Ixcaliber Wrote: »frym nyw yn thy ynly vywyl yllywyd ys y

This post passes no rules.

(12-07-2017, 12:07 PM)Ixcaliber Wrote: »rymymbyr thy ypysydy whyry ryss dyd symythyng cymplytyly dyspycybly?

This post passes no rules.

(12-07-2017, 12:07 PM)Ixcaliber Wrote: »ny wyyt syrry thyts yll yf thym

This post passes no rules.

(12-07-2017, 01:18 PM)Reyweld Wrote: »ygh, whyt ys thys dyvylypmynt?

- Ryywyld

This post passes no rules.
Quote
RE: Post making contest 6.0
yt syyms lyky thys ys nyt y syccyssfyl strytygym
Quote
RE: Post making contest 6.0
(12-07-2017, 06:23 PM)Ixcaliber Wrote: »yt syyms lyky thys ys nyt y syccyssfyl strytygym

This post passes no rules.
Quote
RE: Post making contest 6.0
this post has no "y"s in it
Quote
RE: Post making contest 6.0
wait shit
Quote