Help Searching a .csv Python Ask Programming |
- Help Searching a .csv Python
- Why is there a format “VP9” and a format “WebM” in Wikipedia’s video player?
- How do I get a Java robot to execute using Jbutton
- what do I need to google to code this?
- Vue environment variables in axios requests not working
- Finding the right contact
- Generate parenthesis - what happened after the first return
- What are the core programming languages every engineer should know and why?
- What is your recommendation for a reliable and cheap cloud storage for a web application?
- Why are so many software developers switching to data science?
- Want to Learn Firebase
- Is this is thing in OOP?
- Idea for ruby web application that can be implemented with 40 people in university lecture
- How do you study for engineering?
- Lack of inspiration
- Browser Plugin to return CSS selectors by clicking
- Active Record associations question
- Need help figuring out Java code
Posted: 02 Oct 2021 05:43 PM PDT Hello, I am doing a school project and I think I am way out of my depth. I am trying to fix a part of my code where it is supposed to search the first column and if it matches the search term print the entire row (eventually I will need to be able to get specific cells in the row but I thought I would start with this) My code so far
``` For each row it converts it into a list then checks if the first item in the list matches the search term then allows me to get any relevant data from that row thanks u/dibujante [link] [comments] |
Why is there a format “VP9” and a format “WebM” in Wikipedia’s video player? Posted: 02 Oct 2021 01:14 PM PDT It doesn't look right to me, because VP9 is a video encoding format and WebM is a multimedia container format. I assume every entry could be called either "WebM" or "VP9"/"VP8". [link] [comments] |
How do I get a Java robot to execute using Jbutton Posted: 02 Oct 2021 07:31 PM PDT I tried it by having a button pressed change a boolean to true with an ig statement, but it the compiler said the Boolean was out of scope within the jbutton action listener and should be final. [link] [comments] |
what do I need to google to code this? Posted: 02 Oct 2021 04:30 AM PDT hi, only did some programming tutorials a while ago and have not really used any of it.. could you please help me with some tips on how to do this in the simplest way? Maybe python? But I don't really care it could be anything that you think is good. Any suggestion on what concepts I need to google and use would be greatly appreciated. I need 1 Character template with 4 attributes (a 1-10 scale for each attribute strength); Somehow to generate 100 templates from it, but make them balanced somehow by some simple rules?; And to be able to call on each of those templates to use later in another mechanic. Oh and I only need this to gather some results and run some simulations so I don't need anything fancy. Thanks <3 [link] [comments] |
Vue environment variables in axios requests not working Posted: 02 Oct 2021 01:57 PM PDT Hi Reddit, I have a Vue, Django integrated project. I hosted the Vue project on Netlify and the Django project on Heroku. A python script (integrated into Heroku) is called on certain buttons which extract data and posts this to the Django API and PostgreSQL database to be viewed on the frontend. Now I got .env files to get environment variables into my vue application. However, when I try to use these environment variables for my axios requests, it does not work. I can console.log them or show them in the divs on a page, but apparently, the values cannot be used for axios requests i think. What is the workaround for this? Or is this unexpected? Would appreciate the help! [link] [comments] |
Posted: 02 Oct 2021 01:18 PM PDT I browsed briefly and didn't see this addressed yet, apologize if I missed it. I work as an insurance agent. I have a lot of insurance carriers I reach out too in order to find policies for my clients. Each carrier has their own appetite. Some of them like lawyers, some of them like financial firms, some like contractors. Right now we use an excel spreadsheet to keep track of all the carriers we approach. It's better than nothing, but it's not great. It's especially hard to keep it updated when carriers change their appetites. One carrier might decide they no longer want to write policies for contractors in New Jersey, as an example. We update the spreadsheet, but we still have to read the entire marketing sheet to see who we should approach for each account we're working on, which is not super efficient. I would LOVE to have software that filters out which markets we don't want to approach. Let's say I get an Employers Practice Liability submission from a client in Southern California. I do NOT want to approach carriers I know will not consider this coverage. If we had something that filtered out all of the carriers who are not writing EPL in CA, we could be much faster at producing quotes from carriers we could hone in on. I'm not a programmer, but I can't help but think what I'm looking for is really simple. Basically have something where I answer a few questions like: -what type of coverage? -location? -other factors and wa-la, we have a list of carriers we can approach. AND as our carriers appetite change, this software would be easily updated where we can change the filters it uses to weed out carriers we do not need to approach. I know we can make our excel sheet use filters like this, but is there anything better out there I should be aware of? [link] [comments] |
Generate parenthesis - what happened after the first return Posted: 02 Oct 2021 12:39 PM PDT I was trying to solve this leetcode problem:"((()))". Link to the original problem: https://leetcode.com/problems/generate-parentheses/ https://leetcode.com/problems/generate-parentheses/discuss/1498045/Python-Recursion With the solutions below, if n is 3, it will first generate "((()))". And it will go to the first if. But I don't understand what happens after the first return. I would like to know what exactly is the logic of the solution here. [link] [comments] |
What are the core programming languages every engineer should know and why? Posted: 02 Oct 2021 07:01 AM PDT Hello guys I'm a recently graduated aerospace engineer by trade but I'm also qualified in manufacturing engineering. I've done my fair share of programming but I'm by no means on the level of you guys in terms of skill and experience. I would just like to know in your expert opinion what are the core programming languages do you thing I would benefit from learning as an engineer and why. I'm currently learning C and have prior experience using MATLAB. Any advice would be greatly appreciated. [link] [comments] |
What is your recommendation for a reliable and cheap cloud storage for a web application? Posted: 02 Oct 2021 06:32 AM PDT I looked into AWS S3, Firebase Storage, Azure but these were somehow expensive. I then had a look into Backblazed B2 and Wasabi but don't know for sure which platform to choose and kinda lost. The web app is supposed to store user-generated content like videos and photos. What would be your recommendation? Thank you. [link] [comments] |
Why are so many software developers switching to data science? Posted: 02 Oct 2021 01:10 PM PDT Is it the pay, passion or because it's the "hot new thing" ? [link] [comments] |
Posted: 02 Oct 2021 08:06 AM PDT Hello everyone, I have a doubt related to Firebase. I just know Html and CSS , recently a guy told me that u should start learning Firebase. But I have no idea what Firebase is actually and also why we used Firebase in web development....or like do u have to learn JavaScript before moving on Firebase.... is there any alternative for firebase?? I need help please brief me about it . [link] [comments] |
Posted: 02 Oct 2021 04:18 AM PDT So I've gotten into the habit of writing a new SQL query for every piece of new data I need to get, and I was wondering if there is a better way. So say I have want to pull some general info from a database table, and I make a very general query which is stored in some kind of data object. Then later on I want to make some kind of other query that is influenced by information gathered from the previous call I made. Instead of writing a new SQL query which has both requirements (new and old in the same query), is it possible to just make a more general second query and then make new data from the first and second general queries? I could perhaps pull this out using the backend language, or even make a third query that gets fed data from the other two general queries. Perhaps this can then go on to supply data to another query and so on. Is this a thing in OOP? To me, it seems clear that I know the two general queries are more predictable, and perhaps I can make a third, simpler query based on data found in the other two (or more) queries. They are also more reusable in this way. [link] [comments] |
Idea for ruby web application that can be implemented with 40 people in university lecture Posted: 02 Oct 2021 04:03 AM PDT Hello :) do you have an idea for a web application that can be implemented by around 40 people (5-8 teams of 5-8 Bachelor students) in around 8 weeks? I'm one of their TAs this semester, and we're looking for project ideas. The application will be built using ruby on rails. Ideally, something functional should have been built after 8 weeks of work. But the students won't be too productive because they will learn a new language/framework during the time of the project. The whole thing should also have many functionalities so that each team can work on different points of the project. Ideally, it is a web app with users, where it also makes sense to build it as a web app. Would be stupid if it could be replaced by a simple solution. Maybe then we can use it to solve real-world problems and not just develop for a grade.... Past examples are:
I'm looking forward to hear your suggestions :) [link] [comments] |
How do you study for engineering? Posted: 02 Oct 2021 07:18 AM PDT Issit weird that after 2 years of engineering I still really don't know how to study. Anyways, what I either do is just read a text book or like maybe do the weekly psc's but I dunno It doesn't seem like enough and I always seem to forget after a few weeks. Is there a more efficient means of studying for engineering? [link] [comments] |
Posted: 02 Oct 2021 01:18 AM PDT Not sure if this is the right place to ask this I recently changed carreer path, and got a job as a trainee cloud technician. I've since then become a junior consultant at a big firm, working mostly with AWS and IAC. I really enjoy it, and spend more hours than I should doing work-related stuff. But the weekends are boring, and I don't really have a life lol. I need a side project, but I lack inspiration for ideas (at least ideas that aren't rediculously complex). So far I'm okay-ish at python, and know my way around AWS and some DevOps tools (Docker, Terraform), but wanting to learn more (thinking about picking up some Javascript or PHP) Could anyone help suggest good hobby project ideas? Ideally web-based so I can practice my terraform too Thanks :) [link] [comments] |
Browser Plugin to return CSS selectors by clicking Posted: 02 Oct 2021 03:00 AM PDT I was wondering if anyone knows of an existing tool/browser plugin that would allow me to mark stuff in a website (much like the select-tools in most browser inspector toolkits) and then try to return a CSS selector that would return exactly the selected parts of the website. I.e. half-manual web-mining, as most sane libs I know for web mining use a CSS selector like syntax. [link] [comments] |
Active Record associations question Posted: 02 Oct 2021 01:13 AM PDT Hello. I have a pretty specific question & im relatively new to AR & rails. I cant wrap my head around what kind of associations i should do for this project i would like to build. The basics is that I would like a user to be able to login to their account and start a new tracker for a stardew valley game. stardew valley has specific villagers, animals, buildings, quests, stuff like those...& they would be present in every single game created. So for example.. an instance of an animal model would have a name, cost, produce, sell price. A villager would have a name, birthday, favorite gifts, etc. And any time a user creates a new game those specific animals, villagers, etc would already be available.I hope that explanation makes sense.. Im just not sure how to set up the relationships so that any new game has access to already created objects from multiple models? Or if thats even something possible.. Any help or advice would be greatly appreciated! TIA [link] [comments] |
Need help figuring out Java code Posted: 02 Oct 2021 12:48 AM PDT Hello there! I have been trying to figure out how to do this task for a while but I still don't know how to do it so I'm turning to Reddit. I wanted to know what kind of loop should I use to repeat the original question asked when the user enters a number that isn't valid. How do I keep prompting the user with the same question until they enter a valid value. (Btw this is Java programming language :) ) [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