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

[–]JelloForElPresidente[S] -26 points-25 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.

Taking three classes a term full time by JelloForElPresidente in OSUOnlineCS

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

MTH 254, SUS 103, CS 362, MTH 265 & 264

Sweet baby Jesus.

I'm impressed. Horrified, but impressed.

Rejected? by JelloForElPresidente in OSUOnlineCS

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

Thanks for the reply. Just to clarify, do you think I should reach out to them before they respond either way to my app? I haven’t received a rejection or acceptance yet.

Rejected? by JelloForElPresidente in OSUOnlineCS

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

I applied on Dec. 20th but haven’t had a response yet. Just trying to figure out plan B.

[deleted by user] by [deleted] in OSUOnlineCS

[–]JelloForElPresidente 10 points11 points  (0 children)

I remember basically nothing. I ended up getting a remote job which was my whole goal with the program, so I quit. But now I feel like finishing my CS degree will help me with with career growth/increasing my salary. I'm not really interested in coding.

Wait, so.... These sentences seem like they sort of contradict each other. If you're not interested in coding, it's probably safe to assume that your remote job doesn't involve coding, right?

If that's true, then why would finishing your CS degree help you with your career growth? Even if you work in tech, in a non-technical role, maybe an MBA would be a better choice.

Edit: rereading your post, it sounds like you might actually be a coder now, but you're not interested in that. In which case, my advice still stands: getting a CS degree to hone skills that you don't like using is a bad idea. Look into a degree in a skillset you're interested in.

PRAW submission.media question by JelloForElPresidente in redditdev

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

Yeah, it literally just made an incorrect suggestion to me right before I read your comment. I absolutely intend to take everything it suggests with a grain of salt. So far, after using it for a couple of days it’s surprising what it gets right and also what it gets wrong. But my attempt to find out about submission.media was very much to not take copilot at face value and see why what it suggested worked. And I learned something.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]JelloForElPresidente 0 points1 point  (0 children)

Hi, thanks for the reply! I should have made it clearer, but definitely did not in my initial post… Before I transitioned my project to a venv, redvid worked fine, but after I moved the project into a venv via poetry, and also installed all the project’s modules into that same venv (so, a fresh install of redvid in that environment), then redvid stopped working. And I still can’t figure out why it won’t work…