C'est déjà là où il faut.
Vous n’êtes pas identifié. Veuillez vous connecter ou vous inscrire.
Le Vrai Asile » Messages de Norela
C'est déjà là où il faut.
Binouze a écrit:Est-ce que ça a un rapport avec un jeu de mot pourri du style vécu = V - cul = string en V ?
Tu t'ennuies à ce point pour essayer de décrypter des calembours de l'espace?
Haha, S pace, Hahaha
Tu vas adopter TTD ?
Pareil.
Fuck fuck fuck mother fucker fuck fuck fuck fuck !
Ou avec les parents qui leur offrent des portables à 12 ans.
Mettre un bouton qui transforme l'url en anonym.to/?xxx au-dessus du textarea, comme pour les quotes.
Sim plussoie.
C'est pour voir le nombre de conneries par syllabe que tu arrives à dire.
Norela a écrit:Serais-tu enclin à les partager ?
Il peut aussi répondre par "Oui"
Je sais bien et je viendrais pas lui arracher des mains.
Mais c'est pas pour moi et c'est plutôt important donc si ma boite MP pouvait être baptisée utilement par ce thread, j'en serais ravi. J'en avais moi-même dans le sus-dit thread aspiré par le warp...
Serais-tu enclin à les partager ?
Quelqu'un aurait des codes Free WiFi pour se connecter sur Freebox ?
Uniquement pour Reblochon.
C'est plus propre comme ça.
Je dois être trop poète dans l'âme pour compte les E muets alors.
OUI JLA DO RE, tu les vois où tes trois syllabes ?
On me la fait pas à moi, en plus d'être un pro des contrepèteries, je suis hyper calé en syllabes.
Voyelle bien sûr.
Mais la coupure dans le mot en cas de Y se fait avant le Y alors que le script coupe après la voyelle, pour éviter ça le script le passe en consonne.
Haha galère pour remonter du coup.
Et sinon t'as ça où tu peux analyser un texte, il te donne le nombre de mots qui ont tant de syllabes, te reste plus qu'à faire une multiplication et une addition.
procedure Syllabify(Syllables: TStringList; s: string);
const
Consonants = ['b','B','c','C','d','D','f','F','g','G',
'h','H','j','J','k','K','l','L','m','M','n','N',
'ñ','Ñ','p','P','q','Q','r','R','s','S','t','T',
'v','V','w','W','x','X','y','Y','z','Z'];
StrongVowels = ['a','A','á','Á','e','E','é','É',
'í','Í','o','ó','O','Ó','ú','Ú'];
WeakVowels = ['i','I','u','U','ü','Ü'];
Vowels = StrongVowels + WeakVowels;
Letters = Vowels + Consonants;
var
i, j, n, m, hyphen: integer;
begin
j := 2;
s := #0 + s + #0;
n := Length(s) - 1;
i := 2;
Syllables.Clear;
while i <= n do begin
hyphen := 0; // Do not hyphenate
if s[i] in Consonants then begin
if s[i+1] in Vowels then begin
if s[i-1] in Vowels then hyphen := 1;
end else if (s[i] in ['s', 'S']) and (s[i-1] in ['n', 'N'])
and (s[i+1] in Consonants) then begin
hyphen := 2;
end else if (s[i+1] in Consonants) and
(s[i-1] in Vowels) then begin
if s[i+1] in ['r','R'] then begin
if s[i] in ['b','B','c','C','d','D','f','F','g',
'G','k','K','p','P','r','R','t','T','v','V']
then hyphen := 1 else hyphen := 2;
end else if s[i+1] in ['l','L'] then begin
if s[i] in ['b','B','c','C','d','D','f','F','g',
'G','k','K','l','L','p','P','t','T','v','V']
then hyphen := 1 else hyphen := 2;
end else if s[i+1] in ['h', 'H'] then begin
if s[i] in ['c', 'C', 's', 'S', 'p', 'P']
then hyphen := 1 else hyphen := 2;
end else
hyphen := 2;
end;
end else if s[i] in StrongVowels then begin
if (s[i-1] in StrongVowels) then hyphen := 1
end else if s[i] = '-' then begin
Syllables.Add(Copy(s, j, i - j));
Syllables.Add('-');
inc(i);
j := i;
end;
if hyphen = 1 then begin // Hyphenate here
Syllables.Add(Copy(s, j, i - j));
j := i;
end else if hyphen = 2 then begin // Hyphenate after
inc(i);
Syllables.Add(Copy(s, j, i - j));
j := i;
end;
inc(i);
end;
m := Syllables.Count - 1;
if (j = n) and (m >= 0) and (s[n] in Consonants) then
Syllables[m] := Syllables[m] + s[n] // Last letter
else
Syllables.Add(Copy(s, j, n - j + 1)); // Last syllable
end;
// To test the procedure yon can drop a Textbox and a Label on a form and
//in the Change event of the Textbox write:
procedure TForm1.Edit1Change(Sender: TObject);
var
Syllables: TStringList;
begin
Syllables := TStringList.Create;
try
Syllabify(Syllables, Edit1.Text);
Label1.Caption := StringReplace(Trim(Syllables.Text),
#13#10, '-', [rfReplaceAll]);
finally
Syllables.Free;
end;
end;
Moi j'ai trouvé ça naze et j'ai arrêté au bout d'un quart d'heure.
Je viens de le rechoper pour confirmer mon jugement.
Insert here the video of "y'en a des biens".
Genre tu te trimballes en costard et pantoufles à ton taf toi.
Et à quelle heure tu quittes le costume ? Quand tu vas te coucher ? Ah bah non c'est encore du boulot ça...
Mais qu'est ce qu'un cerveau vide ?
Si tu réfléchis bien - encore faut-il en avoir un de cerveau pour le coup - le cerveau vide n'est rien d'autre que la négation du cerveau lui-même.
Elle a donc une boite crânienne vide, et le coup de soleil ne lui ferait rien.
Cours SAM, cours !
Et tu fais comment pour tourner ? C'est dans les mollets aussi ?
Le Vrai Asile » Messages de Norela
Propulsé par PunBB, supporté par Informer Technologies, Inc.
Généré en 0,240 secondes, 24 requêtes exécutées