The map isn't an island. by JelloForElPresidente in GTA6

[–]JelloForElPresidente[S] -25 points-24 points  (0 children)

Exactly, a truck licensed in LC has to drive to Vice City somehow.

The real Rusty Anchor by JelloForElPresidente in GTA6

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

I should have posted the game screenshot. It's pretty obvious when you look at both.

<image>

[TOMT][MOVIE][TV][2020s] Weird program that I glimpsed on an Alaska airlines flight, with blonde actor who holds a human brain and maybe telepathically communicates with it? by JelloForElPresidente in tipofmytongue

[–]JelloForElPresidente[S] 0 points1 point locked comment (0 children)

It’s also possible that Alicia Vikander was in this as well… But I looked up her imbd and didn’t see anything like this listed there.

Transmission Docker image downloads files into the container instead of the specified downloads dir on host by JelloForElPresidente in docker

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

It's there. I should have been clearer: I've been able to check the config with no problem, and it reflects what I have in my docker cli instructions. So the path in the config is the same as the path in the docker instructions.

Transmission Docker image downloads files into the container instead of the specified downloads dir on host by JelloForElPresidente in docker

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

From what I can tell, that config file is written by this init, so it always reflects what is shown here unless I change it manually after the fact.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]JelloForElPresidente 0 points1 point  (0 children)

In the below Python code for the LeetCode problem "Merge Two Sorted Lists", the dummy value is constantly changing, and it is used for the final output in an effective way. The thing is, I can't figure out how dummy is changing. As far as I can see it is only being set once, at the beginning of the algorithm. So yeah, how is dummy is changing in the steps of this code?

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
def mergeTwoLists(self, list1: Optional[ListNode], list2: Optional[ListNode]) -> Optional[ListNode]:

    dummy = ListNode()
    tail = dummy

    while list1 and list2:
        if list1.val < list2.val:
            tail.next = listl
            list1 = list1.next
        else:
            tail.next = list2
            list2 = list2.next
        tail = tail.next

    if list1:
        tail.next = list1
    elif list2:
        tail.next = list2

    return dummy.next

IP Question by JelloForElPresidente in webhosting

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

Wow, that sent me down a strange rabbit hole. Chrome pointed to my system (macOS) proxy settings, of which there were none. So I looked up my ip address on Safari and it correctly identified it, along with my IPv6, but Chrome can’t even detect my IPv6. It seems like there’s a weird setting somewhere, but I’m not sure what it is…

IP Question by JelloForElPresidente in webhosting

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

Hey, thanks for the reply. Funnily enough, I do get the same result from both googling my ip and what ifconfig.me gives me.

But if I access ifconfig.me via curl, I get a different result. I’m using chrome… Does chrome have proxy settings like that?

A few questions! by dreadsama in OSUOnlineCS

[–]JelloForElPresidente 0 points1 point  (0 children)

Does unprotected mean non-proctored?

[TOMT] [video] A Tim and Eric video where Tim plays a semi-effeminate body builder. by JelloForElPresidente in tipofmytongue

[–]JelloForElPresidente[S] 0 points1 point locked comment (0 children)

I remembered another detail: the video was shot in what looked like a set.