Edit this page to experiment with Wiki editing. Don't add real content here -- this page will be occasionally wiped clean. Why can't I see the editor? I think you have to push the "edit" icon next to the search bar.
Python Template
I like the python wiki template. Where can I find it?
Sidebar
And I want a sidebar too. How do I add that?
Dhshxhdhdhdhhdhdhdhhjwebarebentein the nineteenh day if tue nifty Kinch Kentish year 20129 with yurnoabiradr tleetreiver CategoryCategory
This is pretty cool
HACK '''gras''HACK HACK
A table cell |
and another one |
WAFFLES
Test 2009-06-17 21:08:03
--- --- ---
I love Sand Boxes. They are so much fun to play in. No Matter What you do. You can not hurt anything. Know what I mean. Baby Baby. italics bold bold italics mixed bold and italics
---
Title One
---
Title One
Title Two
Title Three
Title Four
Title Five
---
- bullet one
- bullet two
- bullet three
- bullet four
- bullet five
- bullet six
- bullet seven
- bullet six
- bullet seven
Hey, that's not google above , but below is
cell one |
cell spanning |
column three ??? |
||
The first cell |
The Second Cell |
The Third Cell |
||
The first cell |
The Second Cell |
The Third Cell |
||
A wider first cell is called for |
A Wider Second Call Has been Called For. |
Then we are left with a Wider Third Cell |
||
Fifth Line |
Fifth Line |
Fifth Line |
||
---
- Start Numbering at 101.
- The next number after 101
- The next number after that.
- It may just be that I need a space separating the text from the bullet.
- Let us see?
---
- Yep, we needed a space after our formmating.
- See how well it works now.
test link vnsecurity
---
- I think I spelled formmating wrong.
- I think I spelled it wrong again.
- I may need to use the Spell Checker.
- It may be best to preview before you save.
- Because if you do it later, you have compare the current with the previous.
---
'single quotes' double single quotes triple single quotes
---
- When do I use double quotes?
- Can I use HTML?
- I guess I need to find out more about edit conflict.
- I got ride of some of the edit conflicts.
---
- Maybe I just have to manually clear out the conflict messages?
- I wonder if I can get the table working?
- I had two cells line up centered.
---
- Some coding details:
- In Python 2.x, a class containing a computed attribute must be based on the type object:
class Widget(object): # works ... class Widget: # does not work ...In Python 3.x, all classes are automatically based on object, so you can code the class statement either way. - The property object must be assigned to a class attribute. (This assignment gives the computed attribute its name; the property object itself doesn't know the name of the computed attribute that it implements.) The property "performs" as a computed attribute only when it is accessed through an instance of the class. Working at Python's interactive prompt shows this:
>>> Widget.color <property object at 0x00D8F5A0> >>> Widget("#1020fe").color (16, 32, 254) - When an attribute reference causes the property object to dispatch the
get_color function, it passes the Widget instance as the sole argument to this function.
- When an assignment statement causes the property object to dispatch the
set_color function, it passes the Widget instance as the first argument to this function, and the value of the right-hand-side of the assignment as the second argument.
