Nonsense Thread

Have something to say or share? Everything else comes here!
User avatar
Wotan
Astral Guardian
1935 | 161
Common Posting Badge
Posted over 1.000 messages
Great Popularity Badge
Has a thread with over 50.000 views
Great Love Badge
Earned over 100 cookies
Fat paypal everywhere... Metalistas and Mahitovec took the whole Eastern Europe graphic down... eat something.
Image
User avatar
Metalistas
Onyx Knight
601 | 79
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
I draw better diagrams when i pee on snow after few beers.
User avatar
Anonymous:
Memelistas
2997 | 446
Great Posting Badge
Posted over 2.500 messages
Great Popularity Badge
Has a thread with over 50.000 views
Great Love Badge
Earned over 100 cookies
Image
User avatar
Wotan
Astral Guardian
1935 | 161
Common Posting Badge
Posted over 1.000 messages
Great Popularity Badge
Has a thread with over 50.000 views
Great Love Badge
Earned over 100 cookies
Metalistas, whats with the second account?
User avatar
Metalistas
Onyx Knight
601 | 79
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
What do you mean second ? There is a lot more.
User avatar
Wotan
Astral Guardian
1935 | 161
Common Posting Badge
Posted over 1.000 messages
Great Popularity Badge
Has a thread with over 50.000 views
Great Love Badge
Earned over 100 cookies
Metalistas wrote:What do you mean second ? There is a lot more.

Image
User avatar
Metalistas
Onyx Knight
601 | 79
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
Image
User avatar
suchbalance
Team Member
1770 | 554
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Legendary Love Badge
Earned over 500 cookies
Great Supporter Badge
Donated 5 times
Common Guide Badge
Created a complete character guide
Common Skill Badge
Experienced Player
Legendary Contribution Badge
Median XL Team Member
Great Mind Badge
A Median XL guru... a true book of knowledge
Jade is AWESOME. Do you even jade bros?

Image Image
User avatar
Marco
Team Member
1952 | 1349
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Legendary Love Badge
Earned over 500 cookies
Common Supporter Badge
Donated 1 time
Common Multiplayer Badge
Has won a multiplayer contest
Legendary Contribution Badge
Median XL Team Member
Common Auction Badge
Won 50 auctions
Is that for real?

1) No multiple inline tags:
[spoil=Example]

Code: Select all

<h3><i class="someicon"/> This is a <strong>header</strong></h3>


compared to

Code: Select all

h3
   i.someicon
   This is a
   strong header

Seems pretty weird. I don't even know if the "This is a" text is properly indented or should be to the left (which would be weird as it would make it look like it's outside the header).[/spoil]

2) No angle brackets makes it weird, what if I wanted to do for this list:
[spoil=Code]

Code: Select all

<div class="test">
   i.Sometext
   <i class="icon"></i>
   ii.Someothertext
</div>

Code: Select all

div.test
   i.Sometext
   i.icon
   ii.Someothertext


The css-style dots compared to regular text dots collide, would require escaping or something.[/spoil]

3) Seems really unreadable. Mostly due to the examples above. Personally I prefer seeing the word class over a dot because it's much more readable, specially if you're dealing with text. Also you can search without using some weird regex checking for spaces after the dots and whatnot.
User avatar
suchbalance
Team Member
1770 | 554
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Legendary Love Badge
Earned over 500 cookies
Great Supporter Badge
Donated 5 times
Common Guide Badge
Created a complete character guide
Common Skill Badge
Experienced Player
Legendary Contribution Badge
Median XL Team Member
Great Mind Badge
A Median XL guru... a true book of knowledge
1) Can be written as:

Code: Select all

h3
   i.someicon This is a
        strong header

or, regular tags can be put inline with text after a space:

Code: Select all

h3
    i.someicon This is a <strong>header</strong>


2) Plain text is escaped with I. If you have a large plain text only paragraph you can use the "p." tag to add all the text at once.

3) Yeah the CSS style class & id selectors are just a shorthand. If you don't like them then you can use the default attribute notation e.g.

Code: Select all

input(class="red" name="something")


For me it is a lot more readable. There are also many other cool features that enhance especially this aspect. Such as mixins for html; each/while declarative loops for lists and more. Best part is that each time you save your jade file in your text editor it compiles the html equivalent instantly in your project folder.

I like it a lot for personal projects, it's basically sass for html but YMMV.