Poll of the Day > Control V topic

Topic List
Page List: 1
Action53
07/20/20 1:09:04 PM
#1:


What's the last thing you copied?

Here's mine

http://www.5z8.info/autoinstall_o0h7gy_add-worm

---
Serve the public trust. Protect the innocent. Uphold the law.
... Copied to Clipboard!
TheSlinja
07/20/20 1:11:58 PM
#2:


Its a screencap of the SMT logo lmao

---
DIRT ON ME I'M FINNA BLOSSOM
... Copied to Clipboard!
SpeeDLeemon
07/20/20 1:17:12 PM
#3:


... Copied to Clipboard!
captpackrat
07/20/20 4:27:38 PM
#4:




---
Minutus cantorum, minutus balorum,
Minutus carborata descendum pantorum.
... Copied to Clipboard!
Yellow
07/20/20 4:35:04 PM
#5:


var fileContent = string.Empty;
var filePath = string.Empty;

using (OpenFileDialog openFileDialog = new OpenFileDialog())
{
openFileDialog.InitialDirectory = "c:\\";
openFileDialog.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
openFileDialog.FilterIndex = 2;
openFileDialog.RestoreDirectory = true;

if (openFileDialog.ShowDialog() == DialogResult.OK)
{
//Get the path of specified file
filePath = openFileDialog.FileName;

//Read the contents of the file into a stream
var fileStream = openFileDialog.OpenFile();

using (StreamReader reader = new StreamReader(fileStream))
{
fileContent = reader.ReadToEnd();
}
}
}

---
... Copied to Clipboard!
DeltaBladeX
07/20/20 4:44:56 PM
#6:


... Copied to Clipboard!
keyblader1985
07/20/20 6:46:33 PM
#7:


https://i.imgur.com/H6dTas2.jpg

---
Official King of PotD
You only need one T-Rex to make the point, though. ~ Samus Sedai
... Copied to Clipboard!
green dragon
07/20/20 8:41:18 PM
#8:


class Parrot:

# instance attributes
def __init__(self, name, age):
self.name = name
sel(redacted).age = age

# instance method
def sing(self, song):
return "{} sings {}".format(self.name, song)

def dance(self):
return "{} is now dancing".format(self.name)

# instantiate the object
blu = Parrot("Blu", 10)

# call our instance methods
print(blu.sing("'Happy'"))
print(blu.dance()


---
.
... Copied to Clipboard!
Topic List
Page List: 1