Shouldn't all programs start with a MVC (Model-View Controller) or am I wrong here? Ask Programming |
- Shouldn't all programs start with a MVC (Model-View Controller) or am I wrong here?
- Using the Little Man Computer for integer to binary conversion
- I gots to learn Java in 1.5 weeks; what do you recommend?
- How do I make a GUI like this, that pops up when you scroll up, and goes away when you scroll down in HTML?
- How would you create a code that looks for deals in Clothing stores ?
- Practice Mock Interviews
- How do you stop a flood of AJAX requests server side?
- What could go wrong if I forward my own server implementation?
- How is the edit distance calculated with strings with diacritics?
- What are some things you should know/be aware of before facing a two day crash course(18 hours in total) in VBA ending with an exam?
- What sort of app provides supplemental information to (and on the page) the currently viewed page while browsing?
- Is Simula, which is considered as the first object-oriented programming language still in use?
- Best way to process real-time data for a trending list?
- Python file reading
- Which programming languages have the least job competition per job?
- Is it beneficial to go to university in order to become a game developer?
- Embeds from reddit not transferring properly to facebook
- Unique RSS feeds
- Node - Based investigative corkboard software
- Suggestions for CI & CD
- Does anyone has a side project which I can use? Please read...
- Are singletons bad ? If so, what should I use instead.
- Does anyone know how to use pyfirmata in python with the ir remote and sensor in Arduino?
- Covariance and Contravariance
- Having some issues with a for loop in Python 3.7
Shouldn't all programs start with a MVC (Model-View Controller) or am I wrong here? Posted: 06 Jun 2020 08:49 AM PDT I'm still a semi-noob programmer, but isn't an MVC best practice for any code with even mild complexity? EDIT* Thanks for the input guys, I think I understand it a bit better. Some of yall have VERY strong opinions this topic though :D EDIT** If not a MVC than some kind of similar Event Manager system? [link] [comments] | ||||||||||||||||||||||||
Using the Little Man Computer for integer to binary conversion Posted: 06 Jun 2020 09:30 PM PDT Recently i was tasked with developing a program with the Little Man Computer that takes an input 0-63 and converts it to binary. I understand the basics of the LMC but am stumped on how im supposed to divide and to find a remainder to cleanly convert it to binary. How would i go about this program? [link] [comments] | ||||||||||||||||||||||||
I gots to learn Java in 1.5 weeks; what do you recommend? Posted: 06 Jun 2020 04:24 PM PDT I took AP comp sci but failed the AP test and my concepts are incredibly unclear in java, and I currently need to relearn and clear up the concepts in Java in 1.5 weeks. Help. My current plan is to just go through my Barrons book and hope that helps. Note: my logic is fine(except recursion lol) just the concepts are bad, like pass by inheritance public static private, polymorphism, casting, etc. [link] [comments] | ||||||||||||||||||||||||
Posted: 06 Jun 2020 04:14 PM PDT | ||||||||||||||||||||||||
How would you create a code that looks for deals in Clothing stores ? Posted: 06 Jun 2020 04:54 PM PDT So I'm a fan of looking for clothing deals online, and right now there are specific items, like a specific pair of shorts that I want from a certain company, but I want to buy them during a sale (normally $50, and during sale $25). Problem is, this company doesn't really announce when they put stuff on sale, since they're just constantly updating their online sale with different items, so you kinda just have to stumble upon the deal if you don't want to be checking everyday like a maniac. So I want to create a code that basically looks at this website and using the model name of the shorts I want, lets me know when they're on sale. What language(s) do I need to know to do this and is this even possible. Thank you. [link] [comments] | ||||||||||||||||||||||||
Posted: 06 Jun 2020 07:15 PM PDT | ||||||||||||||||||||||||
How do you stop a flood of AJAX requests server side? Posted: 06 Jun 2020 05:52 PM PDT I have some operations which must be done in order, and if someone spams the action button, it will have a negative effect. How can I prevent this server side? [link] [comments] | ||||||||||||||||||||||||
What could go wrong if I forward my own server implementation? Posted: 06 Jun 2020 04:50 PM PDT I want to try the following as a learning exercise but I want to understand how wrong it could go. I'll buy a web domain. I'll load a bare bones hello world http server I wrote in C onto an otherwise empty raspberry pi and plug this into my router with a LAN cable. I'll then port forward the server to my domain (is that the right terminology?) I'll then access the website over a 4G network. Can this go horribly wrong? Can the server get hacked and does this matter? What can someone malicious then do? [link] [comments] | ||||||||||||||||||||||||
How is the edit distance calculated with strings with diacritics? Posted: 06 Jun 2020 03:55 PM PDT What should be the edit distance of the following pairs?
[link] [comments] | ||||||||||||||||||||||||
Posted: 05 Jun 2020 11:03 PM PDT | ||||||||||||||||||||||||
Posted: 06 Jun 2020 02:22 PM PDT I am not a web engineer. I am business man. I have an idea, I wish to see to development and I am trying to understand what it is, I need to ask for. I recall something similar, but vaguely. For example: Something I could download, that would offer a competitive rate at a different vendor; than the currently viewed site. .. This information would appear on the same page and I wouldn't have to leave the page to see the price and vendor. I could continue just scrolling along and the information would just appear in a different font or color; in order to for me to distinct visually -easily. If anyone can non-condescendingly help me understand or point in the right direction, I would be so grateful. Thank you. [link] [comments] | ||||||||||||||||||||||||
Is Simula, which is considered as the first object-oriented programming language still in use? Posted: 06 Jun 2020 02:07 PM PDT | ||||||||||||||||||||||||
Best way to process real-time data for a trending list? Posted: 06 Jun 2020 01:29 PM PDT I have a node-js server that accepts a user's posts over websocket and adds the post to another user's newsfeed in a cache, then stores it in DB, what's the best method to process that users post as other users interact with it, so it can be ranked and added to a trending list. [link] [comments] | ||||||||||||||||||||||||
Posted: 06 Jun 2020 12:46 PM PDT Hey guys, I am having trouble figuring out what to do with the question below: CompanyA 1.5 4.1 7.6 3.1 CompanyB 7.0 9.6 6.5 4.9 CompanyC 6.0 7.0 8.0 8.0 I am supposed to take the information of this table from another text file to calculate the average with a FOR loop and SPLIT() method and print it like this:
I know i am supposed to open the file, but then i don't know what am i supposed to do next? how do i go about calculating numbers from another file? FULL QUESTION BELOW FOR ANYONE WHO WANTS TO SEE ALL THE DETAILS OF THE QUESTION: · Open the file for read and read the above information from the file for each company by splitting the data line by line using for loop and split() method. · Compute the average of the sales for a four years period to each company. · Check if company has an average is less than 4 million dollar. If yes, it will print LOW in the corresponding row, otherwise it prints HIGH, as per the given sample output. · The program should print the following output on the screen:
[link] [comments] | ||||||||||||||||||||||||
Which programming languages have the least job competition per job? Posted: 06 Jun 2020 12:36 PM PDT Which programming languages have the least job competition. Which programming language specific jobs have the least developers that apply for them per job on average? Edit: Which has the least competition per job. Out of C++, Java, Javascript/Web, C#? I don't think I want to learn perl or COBOL lol. [link] [comments] | ||||||||||||||||||||||||
Is it beneficial to go to university in order to become a game developer? Posted: 06 Jun 2020 08:03 AM PDT Important context: I live in the UK where college is free but university is around £9000 a year. Also, you cannot drop out of school until you finish college. Anyway, I've been hearing recently that in order to become a game dev you don't even have to go to college in the UK. I don't want to get into debt because I don't know if I can save up that much money in the span of two years. Also, it would be nice to start supporting myself properly by the time I'm 18. So, for people who have not been to university and are a game dev, is it good to go to uni, or should I just drop out when I finish college? Although I don't know how I'm going to explain this to my Asian parents Edit: please elaborate on your answers but a ye or nah is fine as well [link] [comments] | ||||||||||||||||||||||||
Embeds from reddit not transferring properly to facebook Posted: 06 Jun 2020 11:38 AM PDT Hey, I'm unsure if this is the right sub to ask, I'm not a coder or programmer, so this is really beyond me. But I'm having issues embedding videos from reddit to facebook. I use the embed option under 'share' and when I post to facebook a grey box comes up with the title of the story/video but it has to be clicked. How do I get a video posted and playable in my feed? Thank you for any help! [link] [comments] | ||||||||||||||||||||||||
Posted: 06 Jun 2020 11:27 AM PDT Hello Reddit, I am building a service that will make use of RSS feeds. Therefore, I am wondering if there is a way to have a unique RSS feed for every user, or if there is a way to know if a specific user is sharing the RSS feed with other users which have not payed for the service. My concern is that a general private RSS feed will just be shared widely unless there is a solution against this. Greatly appreciate any help! [link] [comments] | ||||||||||||||||||||||||
Node - Based investigative corkboard software Posted: 06 Jun 2020 05:04 AM PDT I want to programm a corkboard software like you see them in the crime series where there are pictures and conections. My problem is i have only basic knowlege in html and css and no other software, and im asking if you know a good aproach or programming language, ide. [link] [comments] | ||||||||||||||||||||||||
Posted: 06 Jun 2020 10:53 AM PDT hai everyone, i have one main web project and it has a 2 api projects as submodules in it and i am using devops for versioning. Now my project needs CI & CD for private server. can any one suggest me the best and simplest way to do this with azure pipelines. Thanks [link] [comments] | ||||||||||||||||||||||||
Does anyone has a side project which I can use? Please read... Posted: 06 Jun 2020 04:02 PM PDT (I am sorry for asking) I am a CS student and my final year project is far from complete. I am really interested+invested in it, but I don't think it will be complete before an upcoming deadline ( 15th June), on which I will have to show it to my professors on a video call. The thing is that they are expecting the final WORKING project and nothing else. They don't care for what I am trying to do and won't even look at the code at all. They aren't interested in what the project is about, if they don't get to see a complete running project on 15 June, it's going to affect my grades. Most of my classmates even bought projects or paid people to get their projects completed but I am such an idiot that I thought everything will work out, without a plan B. Now I am really, really panicked, I can't even focus on my project at all. Please help me out. If anyone has a side project etc which I can show, it will help a LOT. I just need it for a day... Or if anyone can show me a repository etc. I am sry... [link] [comments] | ||||||||||||||||||||||||
Are singletons bad ? If so, what should I use instead. Posted: 06 Jun 2020 09:41 AM PDT | ||||||||||||||||||||||||
Does anyone know how to use pyfirmata in python with the ir remote and sensor in Arduino? Posted: 06 Jun 2020 03:18 AM PDT | ||||||||||||||||||||||||
Posted: 06 Jun 2020 04:54 AM PDT Could anyone please explain about Covariance and Contravariance in programming?. As from websearch, I understood these. Let say two classes, Animal & Cat. Covariant: a Cat() is an Animal() Contravariant: an Animal() is a Cat(). Could anyone explain these concepts? [link] [comments] | ||||||||||||||||||||||||
Having some issues with a for loop in Python 3.7 Posted: 06 Jun 2020 08:26 AM PDT HI! I haven't done programming in a few years, so I'm pretty rusty with it. I'm currently writing some code to generate random tables for a research project this summer. I'm having some issues getting the output I'm looking for. I'm not fully finished with the code yet, but basically, I have 3 lists (both of 4 elements each; prefix, midfix, and suffix list); I want to create a single list out of them by taking the first element from the first list, the first element of the second list, and the first element of the third list; then the second element of the first list, the second element of the second, and so on... [link] [comments] |
You are subscribed to email updates from AskProgramming. 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