• Breaking News

    Thursday, March 25, 2021

    I’m feeling burnt out and I need some advice learn programming

    I’m feeling burnt out and I need some advice learn programming


    I’m feeling burnt out and I need some advice

    Posted: 24 Mar 2021 07:55 PM PDT

    You guys... I (23F) started some programming about two years ago. (Java, C, MySQL)

    I'm in school for it and compared to others: I have almost no confidence in myself.

    I already work 35ish hours a week and currently take two classes.

    I feel burnt out with just that but idk how to push myself any more to be better... but I want to be better :(

    Edit: I swear I'm reading all of these comments and each of them are making me feel better

    submitted by /u/Lovelyrevper
    [link] [comments]

    What are the important things a newly hired dev should figure out as quickly as they can when starting a new position?

    Posted: 24 Mar 2021 06:06 PM PDT

    I assume things like coding style guidelines and the development workflow are some of them.

    submitted by /u/Physical_Duty5796
    [link] [comments]

    Data Scientist vs Web Developer

    Posted: 24 Mar 2021 11:53 AM PDT

    I have a choice between two paths, learning web development and data science. Can someone help me in understanding the differences in the jobs these two paths can lead to and whether one has better future and current job prospects?

    submitted by /u/Sarman11
    [link] [comments]

    why is it outputting f?

    Posted: 24 Mar 2021 07:53 PM PDT

    // Here is how I calculate the grades
    // less than 60 is an F
    // less than 70 is an D
    // less than 80 is an C
    // less than 90 is an B
    // less than or equal to 100 is an A
    //
    // Edit only the code between the lines (below)
    // -----------------------------------------------------------------
    function getLetterGrade(grades) {
    let average = 0;
    for (let i = 0; i < grades.length; i++) {
    average = average + grades[i] / grades.length;
    {
    if (average < 60) {
    return "f";
    } else if (average <= 70 && grades >= 60) {
    return "d";
    } else if (average <= 80 && grades >= 70) {
    return "c";
    } else if (average <= 90 && grades >= 80) {
    return "b";
    } else if (average > 90) {
    return "a";
    }
    }
    }
    }
    console.log(
    getLetterGrade([48, 95, 65, 48, 59, 78, 72, 65])
    );

    submitted by /u/WallNo9276
    [link] [comments]

    Wordpress and wix

    Posted: 24 Mar 2021 07:28 PM PDT

    I read on google than freelance developers make 76k a year, how is this possible when websites like wordpress make it easy for people to develop websites and apps possibly?

    submitted by /u/Moximili
    [link] [comments]

    Is anyone interested in pair programming for Web Development?

    Posted: 24 Mar 2021 08:50 PM PDT

    Hey guys! Hope you're all doing well.

    I'm fairly new to web dev and barely know the basics. I'm looking for a programming buddy to learn web dev and work on projects together.

    Please dm me if interested!

    Thanks,

    Have a nice day

    submitted by /u/HustlenHumble
    [link] [comments]

    Do negative edges coming out of the source node only affect dijkstra’s shortest path?

    Posted: 25 Mar 2021 12:13 AM PDT

    That means there are no negative cycles, right? So it doesn't affect it?

    submitted by /u/eyeeyecaptainn
    [link] [comments]

    What is the time complexity in theta?

    Posted: 24 Mar 2021 06:14 PM PDT

    Really confused about the time complexity for this one. Would appreciate if someone could clarify the run time.

    for (i = 0, j = 1; i < n; i++, j *= 2) arr[i] = j; for (i = 0; i < n; i++) for (j = 1; j <= arr[i]; j++) s += (i + j); 

    Its clear that the first loop runs n times. But the second nested loop?

    The outer loop runs n times. The inner loop depends on arr[i], which is multiplied by 2 for every i in the first loop:

    i = 0, arr[i] = 1 (2^0)

    i = 1, arr[i] = 2 (2^1)

    i = 2, arr[i] = 4 (2^2)

    i = 3, arr[i] = 8 (2^3)

    Does that make the second loop run in O(log(n))?

    So overall time complexity is O(n + log(n)) = O(log(n))?

    submitted by /u/Appropriate_Cat6354
    [link] [comments]

    any help appreciated!!

    Posted: 24 Mar 2021 11:58 PM PDT

    I started uni a few weeks ago, and one of the units that is part of my course is an intro to python unit. I had never coded or anything before this, and since starting this unit I feel like I'm losing my mind.

    I really like coding generally, the opportunities it offers and creative possibilities etc, but I feel like I am years behind everyone else, even people I know have had no previous coding experience. It's like my brain will look at a coding problem and completely shut down; it's been taking me hours to crack the simplest puzzle, and once I do it's like HOW DID I NOT NOTICE THAT BEFORE??? I feel like my brain just isn't wired to code at all and I feel completely lost 90% of the time, especially with how fast this unit is moving. i also chose computer science as one of my majors and this is making me completely rethink everything.

    I guess what I was wondering is if this is a sign I should change to something else, if anyone has had a similar experience what helped them to progress and develop their skills (especially in terms of 'thinking like a programmer')

    thanks in advance and sorry for the rant, this unit is literally destroying my self-esteem lol

    submitted by /u/ah0rseofc0urse
    [link] [comments]

    Google Translate, but for Sign Language - OpenCV AI Kit and Python

    Posted: 24 Mar 2021 11:52 PM PDT

    I created a sign language detection tutorial using the OpenCV AI Kit and Python. This works in real time 30FPS on Raspberry Pi.

    https://youtu.be/2fXJe9YqXgU

    submitted by /u/AugmentedStartups
    [link] [comments]

    How come selenium wont work on instagram?

    Posted: 24 Mar 2021 11:39 PM PDT

    Trying to learn selenium, I have tried class and name, but there is no id tag. Cant seem to log in, any ideas what i am doing wrong?

    Here is my code minus my password:

    from bs4 import BeautifulSoup import requests from selenium import webdriver from selenium.webdriver.common.keys import Keys from getpass import getpass url = 'https://www.instagram.com/' driver = webdriver.Firefox() r = driver.get(url) username = input('whitehowie7@gmail.com') password = getpass('') theuserbox = driver.find_element_by_name('username').click() theuserbox.send_keys(username) thepassbox = driver.find_element_by_name('password').click() thepassbox.send_keys(password) 
    submitted by /u/sirreginaldpoopypot
    [link] [comments]

    Coding for Business Analyst

    Posted: 24 Mar 2021 07:47 PM PDT

    Hi. I have been offered to Business Analyst role in a leading Software Company. I'm pursuing my MBA and will be graduating this summer. Of course this offer is via campus placements. Also I'm a from commerce domain and am specialising in finance. I have been offered to work as BA in BFSI vertical. The recruitment team said that they are hiring my for my Finance knowledge and they don't expect anything technical from my end. But when I talked to some people in the industry, they said this is the right time to learn coding and this 'MBA Finance + Coding' is deadly combo what most of the company want. So I am all excited to learn coding. I would wanna take up from the scratch since I have zero exposure to coding. I have my final semester in another 2 months. So suggest me some really good platform that builds strong basics.

    Thanks in advance ☺️

    submitted by /u/The_Nard_Dog_2020
    [link] [comments]

    Does phyton not add additional zeroes when the answer is exact or something?

    Posted: 24 Mar 2021 11:12 PM PDT

    x = round (2.5, 2)

    print (x)

    The output of this is still 2.5. How do i get 2.50 tho?

    submitted by /u/Potential_Ostrich_90
    [link] [comments]

    How do you stay motivated while learning alone?

    Posted: 24 Mar 2021 09:40 AM PDT

    Hey there. I've bought a JS course online and its been pretty helpful. But lately I've been demotivated to go on. I know I could ask other subs but I thought this is more appropriate.

    Here are some deets of my course content:

    • Majority of the content is lecture of how certain codes work. • There is some quiz/assignment at the end of each topic where I need to complete functional code

    I feel the lecture videos very draggy imo. But I can't skip most of it

    submitted by /u/rainbowspewwer
    [link] [comments]

    If you’re a total beginner, check out how I started(self-taught)

    Posted: 24 Mar 2021 10:32 PM PDT

    https://ericthewhale.netlify.app

    There is a thing that I always do before starting something new. It is to understand the "structure".

    After understanding the "structure", I can find what I want to learn(targeting a specific subject), where to start, where I am, and much more. The step is equivalent to holding a map and a compass in the middle of nowhere. It's like reading the contents of a book to get to the chapter that you want to read. Therefore it's necessary or at least extremely helpful when you learn something.

    I remember the days of wandering. Googling gibberish and reading gibberish. Even if I had a clear purpose of finding the tree, it was not easy at all. It has been more than two years since then. I've learned many things and most importantly I've learned them with the "map".

    Now I want to share the journey of finding the map. (In fact, I always wanted. I have been recording every move since 2019 for this.) I'm posting it on my blog (link at the top) once a week, and there are two posts already. I hope this helps you guys(beginners) at least a bit. Thank you and happy coding!!🐋

    submitted by /u/existential_Whale97
    [link] [comments]

    New installations fail to work in vscode

    Posted: 24 Mar 2021 09:54 PM PDT

    I recently downloaded kite within vscode and pip installed pytest as well. However i dont see any functionality with either of them? How do i get kite and pytest to start working? Usually my pip installs work inside vscode no problem. I dont see a button to turn them on or activate them. It says they are installed inside vscode, but i see no functionality at all. Any ideas what the deal is?

    submitted by /u/sirreginaldpoopypot
    [link] [comments]

    Guide me

    Posted: 24 Mar 2021 09:41 PM PDT

    Can I get guidance about the starting point to get started in cyber security.

    submitted by /u/Comprehensive_Put851
    [link] [comments]

    Full Stack Web Development: Where should I start?

    Posted: 24 Mar 2021 09:40 PM PDT

    I have finally made up my mind, I'll start learning full stack web development (and maybe move to mobile app development later, but right now I am not focusing on that). I know HTML, CSS, JavaScript, C and C++ (only what was taught in college) and I want to go all in. Please help me out, where should I start, (I sometimes practice on W3schools and freeCodeCamp), but I want to be job ready till the end of this year, or maybe sooner. Please tell me about frameworks, and other things too and some suggestions.

    submitted by /u/winter2014a
    [link] [comments]

    Would you do null checking to all child objects?

    Posted: 24 Mar 2021 09:19 PM PDT

    I know this question should be asked many times, but I still don't understand the "Do it when you need it" answer.

    For a UI, I think it is a must to keep it workable, a simple null reference can break the whole UI and make it a blank display. (I.e I am focusing on website and game development, null exceptions would usually stop the main thread for my projects) Normally I don't expect to restart the whole game or app just because of a null exceptions, so it is common to create a pop up to just reload this page or redirect the user to certain places. Which means, I need to code for that logic (I.e if user = null, redirect to home)

    However, my question is, when you have some nested objects, will you check each layer to ensure the existence? In order to keep the application alive(not crash or freeze and requires restart)?

    For example, if I want to get a.b.c.d.e.f, should I : if a is not null if a.b is not null if a.b.c is not null if a.b.c.d is not null if a.b.c.d.e is not null if a.b.c.d.e.f is not null return a.b.c.d.e.f

    Thank your for spending some time to answer a beginner question.

    submitted by /u/noob-newbie
    [link] [comments]

    Cargo.site Customizing

    Posted: 24 Mar 2021 09:06 PM PDT

    I'm using these on my website:

    (https://support.cargo.site/Show-an-Image-on-Hover) & (https://support.cargo.site/Adding-Link-Hover-States)

    My issue seems to be that I can't have both working at the same time. I'd like for the image to preview when you hover over the text, and have that text be a hyperlink and preferably change color when hovered over.

    submitted by /u/sewlie_
    [link] [comments]

    Python web developer

    Posted: 24 Mar 2021 09:04 PM PDT

    Which course do you guys recommend on Python Web Development?

    submitted by /u/Papaprogrammer
    [link] [comments]

    How to uninstall docker from mac?

    Posted: 24 Mar 2021 08:56 PM PDT

    I have mac with m1 chip, and I ended up installing docker desktop which incompatible with my machine. How can I completely uninstall it? I have never used mac before, sorry if seems like a very basic question.

    submitted by /u/dsmedium
    [link] [comments]

    Do you guys always keep dev documentation open when writing HTML/CSS?

    Posted: 24 Mar 2021 08:37 PM PDT

    I've been learning C along with html/css in the last few months as a personal project. I want to make the big career switcheroo soon, but the learning process has been really slow and bulky.

    I am doing CS50 along with a HTML/CSS course, but I can't for the life of me memorize like 80% of it, so I always keep documentation open on a separate tab: for example, for HTML how to use the attributes correctly and format everything nicely. For CSS, how to keep track of the million different edits you can do for color, fonts, etc.

    For full-time developers is it expected to write everything off the top of your head?

    submitted by /u/sorrow-lol
    [link] [comments]

    1 comment: