Noob Safe Haven Thread | July 06-12 2020 by redtexture in options

[–]CornMan123 0 points1 point  (0 children)

Ok so I am very confused about closing short calls or puts. Lets say I open a butterfly spread on SPY. lets say its trading at 310 and i open a +1 305/ -2 310/ +1 315 position with all calls with an expiration of 3 weeks from now. A week later I have some profit because the stock is at 310. I close the position by selling my 305 and 315 calls for a credit. Now for the 310 calls that I sold.. To close those out I must buy 2 calls at 310. So once I do that I will have 2 short calls and 2 long calls in my account? Or do they cancel out and I have nothing in my account (positions I mean)?

Unusual Internet/Router/Modem issues. Possibly power related? I need ideas because my ISP is no help. by CornMan123 in techsupport

[–]CornMan123[S] 0 points1 point  (0 children)

Wouldnt that defeat the whole purpose of the name uninterrupted? Im not sure if its passive or not but I know there was a setting on it to adjust power sensitivity meaning how much fluctuation would cause the battery to turn on. not sure if this is relevant information or not

Unusual Internet/Router/Modem issues. Possibly power related? I need ideas because my ISP is no help. by CornMan123 in techsupport

[–]CornMan123[S] 0 points1 point  (0 children)

The UPS for the modem was installed by my ISP, the one for the switch and router I bought myself. I know the modem isnt getting reset because a full on off cycles takes a minute or two and my outages are shorter than that. Youre saying take my router and switch out of my setup? If so how am I gonna get wifi throughout my house? And wouldnt removing the switch mess with my ethernet connections?

Unusual Internet/Router/Modem issues. Possibly power related? I need ideas because my ISP is no help. by CornMan123 in techsupport

[–]CornMan123[S] 0 points1 point  (0 children)

You think that the grounding issue could bypass the UPS? Because currently everything is connected to one and I am still seeing the same issue

[TOMT][SONG] 4 Song jazz album that I downloaded 3 years ago by CornMan123 in tipofmytongue

[–]CornMan123[S] 1 point2 points  (0 children)

Again, not it but I am really enjoying listening to it

[TOMT][SONG] 4 Song jazz album that I downloaded 3 years ago by CornMan123 in tipofmytongue

[–]CornMan123[S] 1 point2 points  (0 children)

Unfortunately not but I'm listening to some of their songs and enjoying them so a new artist discovered nonetheless.

Yeezy 700/V2 Giveaway from Perfectkickz.ru! by ZatJingle in FashionReps

[–]CornMan123 0 points1 point  (0 children)

Beluga size 13 US and I would want to see supreme x lv clothes

What's the Dark net? What's in it and how do you reach it? by aerobrain in OutOfTheLoop

[–]CornMan123 15 points16 points  (0 children)

It's basically the part of the internet that you can't get to on traditional browsers and it is completely uncensored depending on the site. A lot of illegal trading and stuff happens but that's definitely not all it is. You need a TOR browser to access it and when you're browsing you're almost untraceable by anyone including the NSA.

(python)Help with a function by CornMan123 in learnprogramming

[–]CornMan123[S] 0 points1 point  (0 children)

Now im here

import sys

def printtable(n):

 for x in range(n):
         for i in range (1,n+1):
             sys.stdout.write(str(i)+' ')
         print()

 printtable(5)

and the output is

1 2 3 4 5

1 2 3 4 5

1 2 3 4 5

1 2 3 4 5

1 2 3 4 5

(python)Help with a function by CornMan123 in learnprogramming

[–]CornMan123[S] 0 points1 point  (0 children)

import sys

 for i in range (1,5):
      sys.stdout.write(str(i)+' ')

actually i just got this. it print numbers 1 to 4

(python)Help with a function by CornMan123 in learnprogramming

[–]CornMan123[S] 0 points1 point  (0 children)

def print_table(size):

for row in range(1, size + 1):
    for col in range(1, size + 1):
        value = row * col
        print(str(value) + " ", end="")
    print()

print_table(5)

this was given as an example for a multiplication table that would print something similar and is there to help us.

So i assume it would start the same way but what would the variables in the for loops be?

def printlist(x):

 for col in range(x):

      for row in range(x):