• Breaking News

    Monday, December 13, 2021

    Struggling a bit to understand the pattern of game development learn programming

    Struggling a bit to understand the pattern of game development learn programming


    Struggling a bit to understand the pattern of game development

    Posted: 12 Dec 2021 10:29 PM PST

    Hi Guys, I'm really interested in game dev and I've dabbled with Unity before but I always struggle to understand the general pattern and design of a game. I've been doing web dev(backend and frontend) and mostly there are patterns like MVC/MVT and those are easy to understand and implement, can someone guide me as to how I can understand game design patterns more easily?

    Thanks!

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

    About to start a very intense bootcamp. Any tips in advance?

    Posted: 12 Dec 2021 08:07 PM PST

    So as the title says, I'm about to get in a bootcamp in a week. I've seen the schedule and it is PACKED. This is my first time ever learning to code seriously since school, so I'm looking for any tips from anyone who has done this before and would like to share.

    The bootcamp is a full stack web development one, by the way. I'm looking forward to it but also kinda worrying it might be overwhelming.

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

    Need some ideas

    Posted: 12 Dec 2021 10:36 PM PST

    Hi, high schooler here. I know Python and C# at the moment. I want to learn as much as I possibly can about computers before college. I haven't messed around with Unity very much, but game design is something I wish to pursue. Another thing I'd like to learn more about would be machine learning and AI. Is there a project or something similar that I could do and learn from? Thanks.

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

    Good youtube channels that are not course orientated?

    Posted: 12 Dec 2021 09:36 PM PST

    Hello everyone, I was looking for youtube channels that feature mostly 10-30 min videos that are not courses. My favourite youtube channel right now is fireship, because he makes short but very interesting videos of a wide variety of topics. Another one that I have really enjoyed is NetworkChuck even though he is more related to security and sys admin stuff.

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

    Good resources for learning Scheme?

    Posted: 12 Dec 2021 08:51 PM PST

    Basically title. I've been studying programming for about a year in java and python, and I want to teach myself Scheme. Does anyone have resources they recommend?

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

    Career shifters: Cloud Dev or Web Dev?

    Posted: 13 Dec 2021 12:05 AM PST

    For career shifters (from Traditional Engineering), which will be the better choice between the two? I will be doing a self study and want to land a job (remotely) as soon as possible. I think I can enjoy any one of them. Is cloud development a better choice since everything moves to the cloud now and in the future?

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

    C# Intermediate - What should I learn next to advance my skills and knowledge?

    Posted: 13 Dec 2021 12:00 AM PST

    Hi, I am a game developer working in Unity and I want to learn more about C# to make better, faster and cleaner code. I have been working with it for 3+ years now (although the amount of time spent was much lower in the early years).

    I'd say im intermediate when it comes to C# (Im definitely not a beginner, I can code easily and confidently) but I know Im not advanced or proffesional.

    What I know: * Variables (int, floor, long, double, bool, string, char) * Arrays (normal, multi-dimensional and jagged) and Lists * if, else if, else, switch * while, do-while, for, foreach * classes and functions * static and const * enum

    Hope I didn't miss anything (if I did I'll edit this)

    Please tell me anything I could further learn, be it essential or optional, easy or hard Im here for it, thanks!

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

    Javascript, total newbie, stuck with a things that looks identical, yet one works and the other doesn't, can somebody help me?

    Posted: 12 Dec 2021 11:30 PM PST

    So the first function works

    function Row_3 () {
    Make_3()
    agent.teleport(world(1, 4, 6), WEST)
    agent.interact(FORWARD)
    loops.pause(1500)
    Lever_3()
    loops.pause(1500)
    Lever_2()
    agent.teleport(world(-3, 4, 6), WEST)
    agent.interact(FORWARD)
    loops.pause(500)
    agent.teleport(world(1, 4, 6), WEST)
    agent.interact(FORWARD)
    Lever_2()
    loops.pause(1000)
    agent.teleport(world(-7, 4, 6), WEST)
    agent.interact(FORWARD)
    loops.pause(500)
    agent.teleport(world(-3, 4, 6), WEST)
    agent.interact(FORWARD)
    loops.pause(500)
    agent.teleport(world(1, 4, 6), WEST)
    agent.interact(FORWARD)
    Lever_3()
    }

    But the second doesn't (I've put commas here because the program kept telling me that in each line comma is expected even though in the first function there was no need for them). So I'm stuck between "," expected or argument expression expected.

    function Row_4 () {
    Make_4(),
    agent.teleport(world(0, 4, 0, WEST),
    agent.interact(FORWARD),
    loops.pause(2000),
    Lever_3(),
    loops.pause(2000),
    Lever_2(),
    agent.teleport(world(-4, 4, 0, WEST),
    agent.interact(FORWARD),
    loops.pause(500),
    agent.teleport(world(0, 4, 0, WEST),
    agent.interact(FORWARD),
    Lever_2(),
    loops.pause(1000),
    agent.teleport(world(-8, 4, 0, WEST),
    agent.interact(FORWARD),
    loops.pause(500),
    agent.teleport(world(-4, 4, 0, WEST),
    agent.interact(FORWARD),
    loops.pause(500),
    agent.teleport(world(0, 4, 0, WEST),
    agent.interact(FORWARD),
    Lever_3(),
    }

    Any ideas? Help would be very appreciated

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

    A conceptual doubt in understanding of higher order functions in Python

    Posted: 12 Dec 2021 07:24 PM PST

    I'm self studying CS from scratch now and while I'm on the topic of higher order functions, one question has been bugging me-

    If you could kindly check this basic code I'm trying to understand here on Python Tutor and especially the steps 14 to 15, how exactly is y parameter in the lambda function getting bound to the h() function?

    I am able to keep track of all the changes in the function assignments from the beginning but can't seem to understand why that y inside the lambda function gets bounded to that function on being called

    Any help would be appreciated!

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

    Stuck trying to make a game

    Posted: 12 Dec 2021 06:40 PM PST

    I am trying to make it so when a score of 10 is reached a new obstacle shows up.

    I am coding using javascript.

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

    Why are array/list values are not stored sequentially in memory?

    Posted: 12 Dec 2021 06:22 PM PST

    val = 16 li = [16, 97, 121] id1 = id(val) id2 = id(li[0]) print(id1 == id2) 

    How can this be true? I've been studying CS and I always thought of arrays/lists as the SEQUENTIAL groups of information(in memory).

    So Because everything in Arrays/Lists is stored in memory in order. That is what makes Pointer Arithmetics work for example. Which allows us to use our fancy indexes efficiently.

    But the code above just breaks everything, every single concept.
    I first thought that maybe "id" returns not memory address, but some kind of id that this value has. But it changes every time I run the code. And that is what the Python documentation says: "This is the address of the object in memory "

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

    Help needed to convert Angular+firebase to Angular +.Net Core

    Posted: 12 Dec 2021 10:04 PM PST

    I have a web application( chat app) that I have developed using angular and firebase lib. How do I convert this to .Net core, Entity framework, Socket prog, How do I get started ( any links)? Any help would be greatly appreciated.

    Thank you,

    Appropriate bike

    Post update: Why I want to do this: I started this project to learn front-end development, Now I want to transition to the back end and learn how polling & socket prog works along with DB mgmt. I already have exposure with the .Net MVC framework, but seem to be stuck on how to start this.

    1. Need someone to mentor this project.
    2. Also need someone to do code reviews.
    submitted by /u/Appropriate-Bike-623
    [link] [comments]

    kindly choose a temporary laptop for me...pls

    Posted: 12 Dec 2021 09:33 PM PST

    dad about to buy me new laptop on graduation for college but my current laptop...yk died just in time im bout to learn some basics of coding and i still have a few months for school so a budget laptop would be my option because i would have to use my own savings and i'm not very tech-savvy

    choice A: Dell Inspiron pro 14 5415

    AMD Ryzen 5 5500U

    16GB ddr4

    512gb SSD

    choice B: Dell Inspiron 15 7000

    Intel core 7th Gen i7-7500

    16gb ddr4

    512gb SSD

    also you can use this link for preference on whats good for me https://www.cpu-monkey.com/en/compare_cpu-amd_ryzen_5_5500u-1766-vs-intel_core_i7_7500u-652 bc like i said im just about to start learning thank you!

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

    No comments:

    Post a Comment