I have no idea what to use for a quirk! I want something that fits my personality (slightly bubbly with a dark twist). Right now I just have a stupid prefix emoticon. It's <(^o^)>. I know, lame. Gah. Any suggestions?
Hello there! I want a quirk that looks like this:
[!][hello][!] [?][are you okay?][?]
And this is pretty much optional, but can I limit my messages to show only 5 words at a time?
To catch only vowels, simply use ([aeiou])
I'm not sure what it is you mean. I can see that a word with no punctuation is surrounded by [!], but then others are surrounded by [?] when the last word has a ?
Do you mean when there's no punctuation, use [!], and when there's punctuation at the end, surround it with [punctuation]?
As for limiting the messages, just don't type more than 5 words.
EDIT: Please read the first post. I've updated some information.
I want a sentence to be enclosed by square brackets except for the ending punctuation, which is also enclosed by square brackets but put outside the sentence. The same punctuation will be put before the sentence, also enclosed by brackets.
So it looks like this:
[.][it's hard to understand all these mess][.]
Without the punctuation, only the bracketed message will appear.
(The question mark inside the message is a typo I didn't notice)
Last edited by Millidred; 06-24-2012 at 05:35 AM.
regexp: ^(/w+[^.?!])$
replace: [\1]
regexp: ^K(/w+)([.?!])$
replace: [\2][\1][\2]
That should do it.
Last edited by cardiacAtrophy; 06-25-2012 at 09:01 AM.
I'm having trouble switching v with w and w with v. I tried simple replaces for both of them and v would become w but w wouldn't change to v.
You need a transitional character. The fastest set I could come up with (without losing capitalisation) is:
Regexp: v
Replace: ѽ
Regexp: w
Replace: v
Regexp: ѽ
Replace: w
Regexp: V
Replace: ѽ
Regexp: W
Replace: V
Regexp: ѽ
Replace: W
e: in case you can't tell, I always use a pumpkin for transitional characters.
Last edited by trulyElse; 06-25-2012 at 12:41 AM. Reason: misuse of a word
Alternatively,
> Shit: Happen.
Has any asked how to do uu's quirk yet? I mean, I know how to do UU/Calliope's... but when it comes to using uu's I'm stuck ;-;
"My quirk is like this so I (,an pin(,h you! See? *pin(,h pin(,h*"
Homestuck is slowly taking over my life. And I'm ok with this.
Or, to condense it to a single quirk;
regexp: ([^uU])
replace: upper(\1)
Or even better:
regexp: ([^uU]+)
replace: upper(\1)
EDIT: Also, 100th post!!!![]()
Last edited by XP105; 06-26-2012 at 08:06 PM.
Last edited by trulyElse; 06-26-2012 at 08:42 PM.
Alternatively,
> Shit: Happen.
Yes. [^Uu] means everything that isn't u. So everything that's not u is capitalised.
Although, My version of the quirk still addresses the event of a capital U.
Alternatively,
> Shit: Happen.
True.
Apologies. I am new to this.
import math
gradient = ('#333333', '#005C56', '#029E94', '#00BDB1')
def gradientmadness(text):
leng = len(text)
output = ''
if leng < 4:
for i in range(0, leng):
output += '<c=#%s>' % gradient[i]
for i in range(0, leng):
output += text[i] + '</c>'
else:
output += '<c=#'
output += '><c=#'.join(gradient)
output += '>'
size = int(math.ceil(leng / 4.0))
for i in range(1, 5):
output += text[(i-1)*size:i*size] + '</c>'
return output
gradientmadness.command="fsgradient"
#usage regex replace ^(.*)$ -> fsgradient(\1)
Python indentation matters to the program.
Forums typically do not display what they deem unnecessary white space .
Which breaks the python source
It's still in the post source though.
What you have to do is put it in code tags,
I would read through it but I am on a phone.Code:like this:[ code ] the code [ / code ]