This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def top_tourist_locations_italy(): | |
first = "Rome" | |
second = "Venice" | |
third = "Florence" | |
return first, second, third | |
most_popular = top_tourist_locations_italy() | |
for i in (range(3)): | |
print(most_popular[i]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
#For socket checking in case no tools around except python | |
import socket | |
import sys | |
if len(sys.argv) != 3: | |
print("Usage: " + sys.argv[0] + " <IP or Name> <Port>") | |
sys.exit(2) | |
s = socket.socket() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Select concat('KILL ',id,';') from information_schema.processlist where db='ipworkflow'; |