Do I need to learn front end development if i want to just do backend stuff? learn programming |
- Do I need to learn front end development if i want to just do backend stuff?
- Is it worthwhile to start out learning SQL?
- ELI5: what is a framework and what’s the difference between a framework and a web framework.
- Coding While Tired: Does this happen to you guys?
- What is the most useful intermediate software developer advice you have?
- Creating a website while learning web development
- It saddens me that I couldn't get an internship this summer :(
- Foreign Key [HELP]
- [Offering] mentoring
- Should one learn to solve their own bugs when still a beginner /intermediate ?
- [C++] Can anybody explain what is "const" doing in this class definition?
- How to merge two elements of two different arrays in JS?
- What's the most unexpected way a client has used a program you've made?
- [Database][MongoDB][Query Help] Help with $filter operator in Aggregation Query
- What's the most useful principle you've ever learned in programming?
- Lempel Ziv Complexity
- Learning Python, looking for friends or even a group to learn together!
- Getting a job based on internship experience?
- [Mentoring] Nibble Fiddle: A Python Program Competition
- Should input be validated AND processed in the same method?
- Functions in Python
- Any offline alternative to draw.io?
- Anyone have a SoundCloud dev account?
- What does it mean "Test business logic, not methods"?
Do I need to learn front end development if i want to just do backend stuff? Posted: 15 Jul 2019 03:04 PM PDT I guess the title is pretty clear. I'm looking into programming to change careers. I more interested in the technical part rather than the design stuff. Like would learning python be good enough for me to get a back end job with? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Is it worthwhile to start out learning SQL? Posted: 15 Jul 2019 06:54 PM PDT I started the khanacademy SQL course the other day at the suggestion of a friend and I have been really enjoying it. Is it detrimental to learn a domain-specific language first? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
ELI5: what is a framework and what’s the difference between a framework and a web framework. Posted: 15 Jul 2019 07:12 PM PDT I don't know If i have the right analogy but would considering a house structure (eg: the wood columns) as the framework and the code you add on top of it is the rest of that house (Windows, doors, walls etc) be correct? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Coding While Tired: Does this happen to you guys? Posted: 15 Jul 2019 01:47 AM PDT For me there comes a point where if I ignore background tiredness about 70% of it goes away, or so I think. Yesterday I couldn't understand why half of my PHP function worked and half did not. The console error looked untraceable. Today immediately upon waking I checked what Chrome had rendered using "View Source" without a second thought, saw I was trying to key a json object using comma separators instead of colons, and suddenly the function worked. CWT past that initial warning phase may feel "ok." But as this example summed up, boy does performance fall off a cliff. This has been fairly consistent for me and I wonder what causes it. Have you guys found the same? Is it better to just sleep and wake up than keep pushing to complete some feature you're almost close to finished with? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
What is the most useful intermediate software developer advice you have? Posted: 15 Jul 2019 05:09 PM PDT By "intermediate" I mean someone who's more or less mastered coding but hasn't mastered the art of designing software yet. [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Creating a website while learning web development Posted: 15 Jul 2019 01:43 PM PDT I just finished my first book on html. However all I did was read the book and go through the exercises. After I finished I found out by the person who recommended the book I should have been building a website right as I went. So my question is what is the best way to do this? The problem I found is your ideas for what you want to do in the website may take a while before you get to the answer in the book. Also there is info in the book you dont need on your site.
[link] [comments] | ||||||||||||||||||||||||||||||||||||||
It saddens me that I couldn't get an internship this summer :( Posted: 15 Jul 2019 08:25 PM PDT I have fantastic grades, but I'm a freshman and when applying to jobs I didn't have any projects to showcase. Now I'm stuck doing data entry 8 hours a day then going to tutor math for middleschoolers for another hour and driving 2 hours as well. I come home and want to code, but my mind is simply zapped and it saddens me that I'm too tired to lift up the book and learn. I guess I'll have to wait for the school year and grind harder than I can imagine. [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Posted: 15 Jul 2019 07:20 PM PDT So I have my pthon file connection to a mysql database, I have the database created, tables created. Sorted. I have my PRIMARY KEY in my first table (student_id). I then have a PRIMARY KEY in my second table (question_id), I also have a FOREIGN KEY in the second table (student_id). Here is my code for the second table: https://pastebin.com/raw/7fKNwpXg The following are the errors im getting: mysql.connector.errors.DatabaseError: 1364 (HY000): Field 'studentID' doesn't have a default value The default value should be the PK from table one? Can anyone help me with this? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Posted: 15 Jul 2019 06:01 AM PDT Hi. I'm 28 y.o. backend software developer. I've been learning English for a couple of years and I'm around B2 level now. But I lack a speaking practice. So we could help each other. I'm looking for a native English speaker. We will discuss about programming in English and I will teach you how to write code if you want. Feel free to PM me. Alex. [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Should one learn to solve their own bugs when still a beginner /intermediate ? Posted: 15 Jul 2019 12:25 PM PDT So today i had a bug and was very frustrated since i couldn't fix it for a moment, usually i just post my code for other people to hand me the solution, however today i decided to challenge myself and just fix it myself. I did after like an hour or so, got a great feeling of satisfaction but at the same time it kept me feeling like i wasted a lot of time for something very simple ! So is this useful for the learning process or just a waste of time ? thanks [link] [comments] | ||||||||||||||||||||||||||||||||||||||
[C++] Can anybody explain what is "const" doing in this class definition? Posted: 15 Jul 2019 08:26 PM PDT I have the following code: }; Can anyone explain what is the purpose of const in this class declaration? The only thing I know CONST is used for is attaching a fixed value to a variable. Not sure what "const" is doing exactly here. [link] [comments] | ||||||||||||||||||||||||||||||||||||||
How to merge two elements of two different arrays in JS? Posted: 15 Jul 2019 11:19 PM PDT I want my output something like this: For example I have two arrays like below How can I concatenate the elements of the arrays? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
What's the most unexpected way a client has used a program you've made? Posted: 15 Jul 2019 11:37 AM PDT I know the common practice of throwing everything including the kitchen sink at software and features in it so it's robust but I'd like to hear some real life examples of users doing very unexpected things that lead to this mentality. [link] [comments] | ||||||||||||||||||||||||||||||||||||||
[Database][MongoDB][Query Help] Help with $filter operator in Aggregation Query Posted: 15 Jul 2019 06:40 PM PDT I hope it's okay to ask a question related to writing a query in MongoDB. Background: The problem I am asking about is just an example to represent the issue I am having. The actual documents are much bigger and complex, but I should be able to apply the same concept. I'm fairly new to MongoDB, and just now getting into writing Aggregation queries on a regular basis. The actual question is all the way at the bottom in bold and quote... Example: Assume I have the following -> (100% made this up on the spot, so bear with me if the example is lame lol) Problem: I want to produce a Query that will give me the transactions. For the purposes of this example, we'll assume a transaction is the customer logging on and making a sale. Thus, he'll have an entry in CustomerLogin and Sale. I want it to return customerID, processingDate, location, items. Each customerID/processingDate as a new document. As an example, for customer 22, I'd want to see: To write this query I would do an aggregate of CustomerLogin and a lookup on Sale. Something like: As written, this would not quite give me what I'm looking for, as each CustomerLogin would be "joined" to each Sale, and thus I'd end up with an array of sales within the result. I've been reading about $filter, and think this is where it would come into the picture. $filter within a $project allows you to specify/filter specific entries within the array to return. So, can you filter using fields from both the aggregation and the $lookup? Something like this:
(I would then go on to project the specific fields I am looking for, but that's obvious and not really at the heart of the question, so omitting that) I would give this a try myself, but I left my work laptop at work, and thus stuck thinking about it until tomorrow :) [link] [comments] | ||||||||||||||||||||||||||||||||||||||
What's the most useful principle you've ever learned in programming? Posted: 15 Jul 2019 02:11 AM PDT Trying to formulate a list of principles in programming [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Posted: 15 Jul 2019 07:16 PM PDT Hi everyone,
Here is the link if you are interested: https://youtu.be/INO1jhZ_PQY [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Learning Python, looking for friends or even a group to learn together! Posted: 15 Jul 2019 11:09 AM PDT Hello to whoever is reading this, as you see I am currently learning programming more specifically Python as my first language since it intrigues me. I've been learning on and off for a while as school and life can get in the way and know the basics. However, once I get into trying to learn I find myself lost or bored, as I sometimes think I have a short attention span. Lol. So, as it reads I'm looking for a friend or even a group dedicating to learning Python. I have 1 other friend who is also interested in this and we believe the bigger the group the better we all learn. Our idea is to learn at the same pace, whether book, or Udemy, it doesn't matter as long as we learn. I guess in some way I am also looking for long-term friends, but it doesn't have to go that route. Were taking this seriously as one day I do hope on becoming a software developer, so yeah lol. If this sounds interesting and you're also looking for friends or to learn feel free to PM me! I'm located in the U.S specifically CA so time zones matching would be a good thing, since stuff and schedules can get hectic with people in different time zones. So yeah hope to hear from some of you! [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Getting a job based on internship experience? Posted: 15 Jul 2019 08:25 PM PDT I am currently in school and I have had two summer internships with a very big and reputable tech company in the NYC area. During the school year I continue to work part time remotely. Things have gone really well and I've excelled at the projects given each year according to the team, which is genuine developer work that will be maintained by the main team after the summer. I am essentially working as the team lead for this year's project due to my returning status and knowledge of how to handle the project. I am absolutely sure I am employable today at this point. I'm confident in my skills with learning on the fly, working with new teams, Agile, etc. Unfortunately, based on my credits I have almost 2 years of school left. I would love to simply start working now. It would be a big saver of time and money. Is it possible to leverage this experience to start working now? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
[Mentoring] Nibble Fiddle: A Python Program Competition Posted: 15 Jul 2019 08:06 PM PDT I have a fairly simple script to write that I could knock out in perl in an hour but I thought I'd throw it up here for newbies to get a taste of an actual work assignment and I figure no one else wants to do it in perl so python it is. It struck me as simple enough that it was a good example/assignment for fledging programmers to tackle. Let's make it a competition; the winner will be judged by me/the-community based on
Functionally correct: The code must satisfy the requirements given below.
Project Nibble Fiddle (NF) RequirementsFunctional Requirements
Valid invocation examples: Environment Requirements
Licensing Requirements
Documentation Requirements
e.g. If you use pip packages I need to know which ones to install (unless you go nutz and make it installable from pypi/pip) Non-Functional Requirements is a Dysfunctional TermJust a soap-box PSA in recognition of Len Bass Example DataExample Input Example Output for offset 0x00100000 PS My new favorite magic-dword is 0xBABAB00E [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Should input be validated AND processed in the same method? Posted: 15 Jul 2019 11:49 PM PDT Sometimes you need to make sure input comes in a valid format. What I wonder is - should you validate the input in a separate validateInput() method that is called from the processInput() method, or should you include the validation code within the processInput() method. An example is ISBN numbers. They can come in 10 and 13 digit forms but for brevity lets focus on the 13 digit form that does NOT include characters. Here is an example of a method that does both validation and processing: Or like that: Or should you do that: What style better fulfills the best practice of single responsibility and logic decoupling? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Posted: 15 Jul 2019 02:47 PM PDT so here I defined my functions but i get a "list index out of range" error. this is my code where the error occurs (marked with ***). how can i fix this? The question im solving is here: https://imgur.com/a/OClY17L [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Any offline alternative to draw.io? Posted: 15 Jul 2019 10:54 PM PDT Hi everyone! I am supposed to create this database relationship diagram using the online tool draw.io Actually I am already given a template to fill and connect. But it is not very convenient for me to use the online version. I am hoping for any offline software that helps me create the diagram and also compatible with draw.io Thanks again! [link] [comments] | ||||||||||||||||||||||||||||||||||||||
Anyone have a SoundCloud dev account? Posted: 15 Jul 2019 10:53 PM PDT So I wanted to start using the Soundcloud API for OAuth for a project but they're no longer accepting new app registrations. Does anyone have one that I could use? [link] [comments] | ||||||||||||||||||||||||||||||||||||||
What does it mean "Test business logic, not methods"? Posted: 15 Jul 2019 10:39 PM PDT Why did my udemy course instructor on TDD say that? Aren't the methods the business logic? [link] [comments] |
You are subscribed to email updates from learn programming. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment