editor99

Results 8 comments of editor99

How exactly do you plan the translated `README.md` to be shown?

> Use python 2, not python 3. idk why @Ha3MrX uses Python 2 fixed: 98083eb955120218007b6d0877af9fe85b8cb451

```python os.system("clear") os.system("figlet Attack Starting") print "[ ] 0% " time.sleep(5) print "[===== ] 25%" time.sleep(5) print "[========== ] 50%" time.sleep(5) print "[=============== ] 75%" time.sleep(5) print "[====================] 100%" time.sleep(3)...

run [ddos-attack.py](https://github.com/Ha3MrX/DDos-Attack/blob/master/ddos-attack.py) as root

> TypeError: an integer is required (got type str) ```python sock.sendto(bytes, (ip,port)) ``` `input()` saved the port as a string, hence the TypeError, `TypeError: an integer is required (got type...

Please paste your error next time. It's an error caused by your installation of matplotlib, get an updated matplotlibrc.template as the error states.

The issue seems to be here: @PiggyAwesome you're using `typeSlow()` to type the dates; Which doesn't properly enter the birth information! ```py year = str(random.randint(1970, 2000)) monthwords = ['January', 'February',...

> need to transfer the code to python 3 Use 2to3 to transfer py2 code to py3 `pip install 2to3` [Here's the documentation](https://docs.python.org/2/library/2to3.html)