Niloofar24 15 Posting Whiz

Hello everybody.
I'm looking for a good cool and fun DDOS script in python.
Any suggestion?

How can I create a good fun DDOS script using URLLIB?!

Niloofar24 15 Posting Whiz

Hello.
In javascript there is a jQuery slideToggle() Method that toggles up-down but i want it to toggles left-right.
I found a code from here and then i copied and pasted and edited it in this way:

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>

$('.nav').click(function() {
   $('.text p').css({
      'width': $('.text p').width(),
      'height': $('.text p').height()
   });
   $('.text').animate({'width': 'toggle'});
});

</script>

<style>

body {
   font-size: 10px;
   color: #333; 
   }

.nav {
   float: right;
   margin-top: 30px; /* Added to dont overlap result box */
   width: 50px;
   height: 30px;
   text-align: center;
   background: #ccc;
   border: 1px solid #333; 
   }

.text {
   overflow: hidden;
   float: right;
   margin: 5px;
   padding: 5px;
   width: 400px;
   background: #e4e4e4;
   }

</style>
</head>

<body>
  <div class="nav">Nav</div>
  <div class="text">
     <p>
       This is the paragraph to end all paragraphs.  You
       should feel <em>lucky</em> to have seen such a paragraph in
       your life.  Congratulations!
     </p>
    </div>
</body>
</html>

But it doesn't work. The box won't be toggeled, it doesn't move at all. Where is the problem?

Niloofar24 15 Posting Whiz

What is session_start for?

Niloofar24 15 Posting Whiz

Can you explaine a little more clear?! My language is Persian, what do you want to do? I did'nt understand your meaning.

Niloofar24 15 Posting Whiz

Oopss yes sorry, i posted an other error.
This is the exact error:

Traceback (most recent call last):
  File "real.py", line 18, in <module>
    btn = Tkinter.Button(window, text = 'add', command = callback()).pack()
  File "real.py", line 6, in callback
    lbl.configure(text = 'button clicked!')
AttributeError: 'NoneType' object has no attribute 'configure'
Niloofar24 15 Posting Whiz

Yes you are right, i should post the error too.
Here is the error:

Traceback (most recent call last):
  File "real.py", line 19, in <module>
    btn = Tkinter.Button(window, text = 'add', command = callback()).pack()
  File "real.py", line 7, in callback
    Label['text'] = 'Good morning'
NameError: global name 'Label' is not defined

Well i'm using python 2.