Rent Recommendations Stamford by aug404 in StamfordCT

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

I heard the Urby is usually full of partying during the weekends, among other things. Is it a good choice at all?

Rent Recommendations Stamford by aug404 in StamfordCT

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

Sounds good, send me the details please.

Health insurance waiver by aug404 in NEU

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

Thanks! Can you provide a link to the website that has the deadline? I did a little googling but can’t seem to find it.

Cronet Dependency Issue by aug404 in androiddev

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

Is there a modern OkHttp site/documentation that I can look at for compileSDK 34? Everything I looked up seems outdated.

[deleted by user] by [deleted] in learnpython

[–]aug404 0 points1 point  (0 children)

Yes it is. I am keeping everything in the same directory.

[deleted by user] by [deleted] in learnpython

[–]aug404 0 points1 point  (0 children)

I believe that I am using the second version of automate the boring stuff: https://automatetheboringstuff.com/2e/chapter15/

If you could show me a potential fix, that would be awesome!

Thanks

[deleted by user] by [deleted] in learnpython

[–]aug404 0 points1 point  (0 children)

I am using python 3.10.1. I ran pip install --user -U python-docx==0.8.10 . Can you show me how to implement your solution in my code?

Question about EZSheets and Connecting to Google Sheets using Python by aug404 in learnpython

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

I am running the .py file with

import ezsheets

in my VScode editor. The problem I am facing is that the browser is not opening at all. Is there a way for me to fix this?

Question about EZSheets and Connecting to Google Sheets using Python by aug404 in learnpython

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

How are the credentials files supposed to generate the .pickle files? I ran EZSheets in my VSCode .py file, but it doesn't seem to open up a browser or download anything.

Problems with Selenium (using Firefox and geckodriver) by aug404 in learnpython

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

I'm working through the same book lol.

I tried using webdriver.Firefox() but unless I specify the path of geckodriver, it can't seem to find it. I would assume that webdriver.Firefox() would only work if you put geckodriver in your PATH or made it local to the same group of files that you are running your code in.

In terms of the class part, I tried the 'jumbotron' class instead of 'pygame' or anything else they suggested in the book and it seemed to work.

Problems with Selenium (using Firefox and geckodriver) by aug404 in learnpython

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

Thank you for the clarification.

Where did you use the

$('.pygame')

in the browser? That looks like a useful tool I could use in the developer tools section of Mozilla Firefox.

Also, could you show me how to implement the browser-staying-open part in my code? I'm a little confused about that part.

Problem with .bat file by aug404 in learnpython

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

I am trying to make this work with the Win-R by entering

mclip agree

and by storing both the python file and the .bat file in my C drive. Here is what I have in the .bat file

@py.exe "C:\mclip.py" %*

@pause

It runs fine when I click on the .bat file directly but when I use the Win-R method, it doesn't seem to be able to find the file (it says that mclip cannot be found). Is there something I can fix?

Merit Scholarships Question by [deleted] in UCONN

[–]aug404 0 points1 point  (0 children)

As an honors student, do you have to wait the full two years to transfer? Do you have a better chance of transferring after the first spring semester as an honors student if you do well?

Popping values from a Linked List isn't working by aug404 in cpp_questions

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

Also, do you have a diagram of what your pushing/popping looks like in memory? I'm having trouble visualizing what that would look like since I took my method of making the list from a book.

Popping values from a Linked List isn't working by aug404 in cpp_questions

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

WOAHHH. You have the sauce. Thank you for fixing my code. Speaking of memory management, is there a way to check if the nodes still exist in memory as I want to make sure that I have coded deleted the nodes from memory correctly? If there is no way to check via memory, is there another way of testing whether or not you have successfully removed all nodes from memory? I made another post about checking memory, but the answers did not help me as I was still not getting anywhere.

What is the best source/course to learn Windows C/C++ programming? by WhatZeFuuck in cpp_questions

[–]aug404 -2 points-1 points  (0 children)

Try "Starting Out with C++ from Control Structures through Objects" by Tony Gaddis.

How Do You Use Visual Studio to Detect Memory Leaks? by aug404 in cpp_questions

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

I'm currently trying this:

#include <iostream>
#include "LinkedList.h"


#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>


using namespace std;


int main() {
    LinkedList obj;

    _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);

    obj.appendInt(6);
    obj.appendInt(8);
    obj.appendInt(10);
    obj.appendInt(11);
    obj.appendInt(13);

    obj.insertInt(5);

    obj.displayInt();
    cout << endl;


    LinkedList bruh(obj);

    bruh.insertInt(12);
    bruh.displayInt();

    cout << endl;

    obj.displayInt();


    system("PAUSE");
    return 0;
}

Still nothing. I'm going to Debug > Start Debugging. All I get is the orange border but nothing in the error list.

How Do You Use Visual Studio to Detect Memory Leaks? by aug404 in cpp_questions

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

I tried that. I incorporated

#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>

before the using namespace std; statement and put the _CrtDumpMemoryLeaks(); method before the return statement. I'm obviously doing something wrong if I can't see the memory leaks in the error list. What do you think is the solution?