Programming 360

Programming 360

科技、信息和网络

Master coding, from anywhere.

关于我们

网站
https://mymetric360.com/
所属行业
科技、信息和网络

动态

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #PortfolioLaunch #CreativeJourney #FeedbackWanted Hey everyone! ?? After two years of putting it off, I finally bit the bullet and created my portfolio. It’s been a journey of *procrastination* and self-doubt, but I’m excited to share it with you all! You can check it out here: https://mjawadzaiter.dev Here are a few things I’d love your feedback on: Design: Does it reflect my style? Any suggestions on what to improve? Content: Do you think the projects I showcased are impactful? Navigation: Is it easy to browse through my works? ?? I really appreciate any thoughts you have! And if you have a portfolio yourself, what tips do you have for someone just starting out? Whether it’s about design, content, or even battling procrastination—I'd love to hear your experiences! Thanks in advance! ?? How Did I Finally Create My Portfolio After 2 Years of Delay? Answers: https://lnkd.in/g6ct7jh9

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #CareerChange #CodingJourney #RealTalk Hey there! So here’s the scoop: I'm a blue-collar guy with a background in industrial maintenance, and I’m itching for a change. I’ve dabbled in coding and programming, but I have to ask, is this really a feasible path for someone like me? I’ve pulled some old computers out of the closet and installed Debian after figuring out what a distro is (seriously, that took a minute ??). I've got one machine stuck in shell mode because I can’t get the network adapter to work, while another is running decently. But wait, here’s the kicker—I’ve even made my first Java game! ?? Not too shabby, right? Still, transitioning from greasing bearings to coding feels like jumping into the deep end without a life vest. So, what are my odds of making it in the world of programming? ?? Here are some things I want to know: As a complete newbie, which roles should I be targeting? What kind of tasks do entry-level folks usually start with? ??♂? How can I realistically g... Can a Blue Collar Worker Transition to Coding and Succeed? Answers: https://lnkd.in/gD5u_C7k

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #CareerChange #PlumberToCoder #JavaLearning #TechTransition Hey everyone! ?? So, I’m in a bit of a transition phase and would love your input. Here’s my story: I’m a plumber, and honestly, the physical demands and the on-call hours are starting to wear me down. Every day feels like a grind, and I’m ready for a change! ?????? I’m 32 years old, and I've recently started learning Java. I’ve been putting in about two hours a day to get a grasp on it. I know that switching careers is a marathon, not a sprint, but I want to hear from those who have made a similar jump. Here are a few things on my mind: Ideal Fields: What areas in technology should I aim for? I’m curious about software development roles, but are there other fields that might be a good fit as well? Realistic Time Frame: Based on your experiences, how long do you think it typically takes to acquire the necessary skills for an entry-level position? Is 6 months to a year realistic? Entry-Level Pay Scales: What should I exp... How Can a Plumber Transition to a Coding Career Successfully? Answers: https://lnkd.in/g5fab48W

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #Java #CPlusPlus #Programming #CollegeClass Hey everyone! ?? I’m at a bit of a crossroads here and could really use your input. I have to pick one language to learn for my college class, and I'm torn between Java and C++. ?? Here’s what I’m thinking: Java: Easy to Learn: A great choice for beginners. Platform Independence: Write once, run anywhere! Widely Used: Handles web apps, Android development, and big enterprise systems. C++: Power and Performance: Gives you more control over system resources. Object-Oriented: Great for performance-critical applications. Used in Game Development & Systems Programming: It’s a go-to for many game and high-performance applications. So, which do you think would be more useful later on? Will Java pave the way for more opportunities in mobile and enterprise, or will C++'s control and speed benefit me in fields like game development or working with hardware? I’d love to hear about your experiences! Did you find one language easier to ... Which Language Will Benefit My Future: Java or C++ for College? Answers: https://lnkd.in/gpJyp5c4

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #LearningJourney #MultipleSkills #Programming #SQL #TimeManagement Hey everyone! ?? Yesterday, I shared a post asking for tips on making the most of my free time, and I ended up with a list of super cool things I want to dive into! I'm currently working through C with K. N. King's book, and I’m excited to start studying algorithms using Sedgewick's Algorithms in C. Plus, I plan on taking the Nand2Tetris course and picking up SQL because I believe it’s crucial for my growth. ?? Now, I’m considering how to balance all this learning without going overboard. I don’t plan on cramming every single hour of my free time in front of the computer. Instead, I'm thinking about setting aside specific days or weekends for each topic. But here’s my burning question: ??♂? Is trying to learn all these subjects at once a bad idea? Here are some thoughts I'd like to share: Diverse Skills: Learning multiple things can make you a well-rounded person and help in real-life problem-solving. ?? Ov... Can Juggling Multiple Subjects Boost Your Learning Success? Answers: https://lnkd.in/g7NKqau5

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #JuniorDeveloper #RemoteWork #FirstJobStruggles #SelfTaught #FrontEndDevelopment Hey everyone! ?? I’m a junior developer with less than six months of experience, working remotely in a front-end role. I’m self-taught and didn’t attend university, so this is my very first job. When I envisioned starting my career, I pictured going through some initial training, getting hands-on with projects, and collaborating with a senior developer. But here’s the twist: there are no seniors in the company! ?? Instead, I find myself relying heavily on AI to tackle daily tasks. It can be a bit discouraging and is starting to dim my passion for coding. Everyone else in my team is also a junior, but most seem to have some sort of mentorship—like a friend or sibling to guide them. Meanwhile, I’m left in the dark. Here are some of my concerns: Lack of Guidance: There’s no one to turn to for help. We never do pair programming, and I’ve had to learn the codebase all on my own. The supporting mantra of “... Is My Remote Junior Development Experience Unusually Overwhelming? Answers: https://lnkd.in/gHPg3zAW

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #C++ #Constructors #ProgrammingTips #ComputerScience #Coding Hey everyone! ?? I'm diving into the world of C++ as a fresh Computer Science major, and I’m really getting into the nitty-gritty of classes. I recently learned about constructors in class definitions, and I found myself pondering a question after our recent class. So, my professor introduced two distinct ways to write constructors for a simple class called Box. Here’s the lowdown: class Box private: int length; int width; int height; public: Box(); ; Constructor Options: Option 1: Initialization List Box::Box() : length(1), width(1), height(1) Option 2: Assignment Inside Body Box::Box() length = 1; width = 1; height = 1; Now, I'm curious— which of these two approaches would be considered better in a professional setting? ?? Here’s what I think: Option 1 (Initialization List): Pros: Generally more efficient, especially for complex types. Directly initializes member variables. Cons... Which Constructor Style in C++ Is Best for Professional Use? Answers: https://lnkd.in/gup4YqC9

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #NewCoder #FrontendDevelopment #JavaScript #CodingJourney #LearningToCode Hey everyone! ?? So, I've recently embarked on my journey into the world of coding, with a focus on front-end development—specifically JavaScript, HTML, and CSS. ??? Right now, I'm almost finished with the Codecademy JavaScript course, which has been pretty helpful in getting me started. However, I’m feeling a bit anxious that I might only grasp the syntax without fully understanding the underlying concepts of programming. I know it’s a broad concern and maybe quite common! I’m reaching out to see if you all think this is just a matter of patience and the age-old advice of learning by doing, or if there are any other great resources out there that could help me solidify my foundation as a new coder. ?? Here are a few thoughts that have crossed my mind: Practice Regularly: Coding is like any other skill—it improves with consistent practice. Try to build small projects or mini-apps to reinforce what you lear... How Can New Coders Master Front-End Skills and Build Confidence? Answers: https://lnkd.in/g58ceici

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #CollegeJourney #CodingCommunity #TechAdvice #FeelingLost Hey everyone! ?? I just kicked off my college adventure in Computer Science this year, and I have to say, I'm feeling a bit overwhelmed. Before starting college, I had a decent handle on the basics of coding — think data structures and object-oriented programming — but now it seems like everyone around me is on a completely different level. Some of my peers are rocking front-end development while others have impressive machine learning projects under their belts. It's honestly a bit intimidating! ?? I've been getting mixed advice from different folks. Some say I should dive into front-end technologies like React so I can jump into hackathons and collaborate on projects. Others suggest I explore machine learning. But here’s the kicker: I’m not sure which path to follow or how to even begin supplementing my skills outside of class. ?? **How do people learn new technologies in just two days for hackathons?** It feels like ever... Feeling Overwhelmed in CS College: How Do I Catch Up Fast? Answers: https://lnkd.in/gHaqE34F

  • 查看Programming 360的公司主页,图片

    276 位关注者

    #MemorySafety #ProgrammingQuestions #NSAdvisory Hey everyone! ?? So, I was diving into the NSA's software advisory about memory safety languages, and a couple of points really made me stop and think: It's noted that due to logic errors, programs can attempt to use memory that’s already freed or even try to free memory that’s already been released. Now, I have a couple of questions (bear with me, these might seem a bit dumb! ??): a. Why is using memory that’s already freed a problem? ?? I mean, if a program frees memory, shouldn't that memory be available to use? What's the big deal? b. Why is freeing memory that’s already been freed a problem? Wouldn’t that just be a no-op? I mean, it was already freed, so what’s the harm in trying again? For some context, I work mainly with Go and don't have much experience with C/C++ or similar languages, so these concepts are a bit new to me. I'd love to hear your thoughts! Have any of you experienced issues with memory safety in your prog... Why Is Memory Management Critical in NSA Software Advisories? Answers: https://lnkd.in/gJFkMkCH

关联主页

相似主页