Why do programming communities feel so difficult to get involved in? Ask Programming |
- Why do programming communities feel so difficult to get involved in?
- Common mistakes that end up increasing the computation time
- Is it possible to specialize in modding, packaging, gluing together software?
- An automated middle man service?
- Is it possible to make a program to deposit funds into a pre specified bank account?
- What language works to understand a voice and write down the words (like siri how it understands you)
- Experienced programmers: When it comes time to learn a new language, how do you normally go about it?
- Which one is better for free lance type of work comp science or software engineer?
- Turtle vs Processing for drawing... why does turtle look "less good" ?
- Algorithm help: overlap and resize/alter/stretch an image based upon ground control points
- What IDE/text editor for python would you recommend using which supports SSH tunneling?
- cd to external drive during boot
- Would you recommend programming to people looking into careers?
- How are we sure that hash functions such as sha256 have not generated same output for two different inputs?
- Help Starting First Major Project?
- I've always had trouble understanding Big-O notation for showing an algorithm's efficiency. Are there any resources or videos that you found that review the topic in an easy to understand fashion?
- Restaurant is migrating from Aloha POS to Square. Is it possible to send orders from square through aloha in the interim?
- Where to file "issues" for GNU maintained software?
- Where to learn backend using python flask to link it with flutter
- Is there a way my site can spider a site like Best Buy to get current prices? Like how the prices update on Google shopping?
- When should you make a method static?
- What are some ways that you have created applications for simulations?
- Interested in finding a job, but not sure where to look.
- How do I start a career in programming?
Why do programming communities feel so difficult to get involved in? Posted: 10 Jul 2020 11:59 AM PDT I rarely get involved in tech communities. They're so hard to get into compared to other communities I've tried. It's like every every comment I make needs to be corrected by another coder. Questions are called bad questions instead of being answered, only question my choice of stack and approach, and my PRs get rejected because I used a standard if statement instead of a ternary operator? What even? It's so demotivating to even want to try to get involved. I feel as if I can't contribute anything, even on projects desperately needing help. Only contribution I'm ever able to make it seems is making my own projects using the existing framework as a tool. Get a couple of "that's cool" based on how pretty it looks, and my existence is once again ignored. Why do all tech communities I've joined seem to feel like this? [link] [comments] |
Common mistakes that end up increasing the computation time Posted: 10 Jul 2020 05:18 AM PDT I'm currently working on a pretty cool project at work. I thought it was great and very fast too, until we put it into an actual test environment and BAM: took 4 seconds to run when we're aiming at <1sec. Long story short I spent 2 days perfecting it until I got to an average of 0.55 seconds. However now I'm very curious: among other issues, a simple for loop was responsible of 0.7secs of computation time, so I'd like to hear what are some common mistakes you people with bigger experience have encountered in your career. I know it's a supremely broad question, but it could be nice to hear about different projects, languages and practices and how some interns made everything infinitely slower just by doing something very small yet tremendously impactful [link] [comments] |
Is it possible to specialize in modding, packaging, gluing together software? Posted: 10 Jul 2020 01:26 PM PDT |
An automated middle man service? Posted: 10 Jul 2020 06:24 PM PDT How difficult would it be to build a script that automatically cross references multiple sources for the best price? Ex. Cheap flights website sort of deal But with different products? Make commission off the sale. No programming knowledge here. Thanks in advance! [link] [comments] |
Is it possible to make a program to deposit funds into a pre specified bank account? Posted: 10 Jul 2020 06:05 PM PDT I'm writing a program that could handle to auto deposit for a business and was wondering is there a way to do that? [link] [comments] |
Posted: 10 Jul 2020 04:56 PM PDT What programming language should I use if I wanted to take a song or someones voice and then have it written down in a program? Would it be one or an extension that I would use? [link] [comments] |
Posted: 10 Jul 2020 12:23 PM PDT My personal method is that I just start using it and try to figure out its intricacies based on examples I read online. I find that all languages are similar enough to each other that I can learn them by just figuring out how they are structured. I'm curious if there's a better way though. How do you guys normally go about it? [link] [comments] |
Which one is better for free lance type of work comp science or software engineer? Posted: 10 Jul 2020 03:50 PM PDT |
Turtle vs Processing for drawing... why does turtle look "less good" ? Posted: 10 Jul 2020 03:45 PM PDT |
Algorithm help: overlap and resize/alter/stretch an image based upon ground control points Posted: 10 Jul 2020 03:38 PM PDT Hi! I'm trying to figure out an easy way to write this piece of code. Any help or suggestions would be really appreciated. I have two drone aerial images of the same location from two separate days. I want to automate a way to overlap day 1's photo onto day 2's photo perfectly (as accurately as possible - inches if possible!) -- so the trees line up, the buildings line up, the roads line up perfectly, etc. In these aerial shots, there are 5 physical ground control points on the ground (they look like Xs) that stays in the same spot from day 1 to day 2. I basically want to holepunch the ground control points and layer one image on top of the other perfectly. Some issues below: Problems: I tried lining them up by their GPS coordinates, but ran into some issues because the GPS isn't accurate enough between day 1 and day 2. The image is not necessarily taken at the same height, so the image needs to be resized/scaled to fit. My main issue is that the image may need to be "stretched" to align with the ground control points. It's not perfect even scaling, more like how you would stretch a box in Microsoft Paint sideways. E.G. imgur example. The second image needs to be altered in a way to fit the first day's "holepunch" perfectly. Thank you! [link] [comments] |
What IDE/text editor for python would you recommend using which supports SSH tunneling? Posted: 10 Jul 2020 08:37 AM PDT I have to SSH tunnel into a server to access the necessary files. I don't think this is possible on Visual Studio IDE, or at least, I can't find any resources about how to. What should I use? [link] [comments] |
cd to external drive during boot Posted: 10 Jul 2020 01:44 PM PDT I'm new to linux and I am doing this on a raspberry pi So I've got a shell script (.sh) running at boot (through varies methods after I thought this was the problem), I'm trying to navigate to an SD card where photos are for a slideshow (using feh) but the boot log tells me that it cannot cd to the location of this external drive - which is definitely the problem after troubleshooting. So my question is what do I need to do in my shell script to allow me to cd to the drive during boot because after boot this script works perfectly? Thanks [link] [comments] |
Would you recommend programming to people looking into careers? Posted: 10 Jul 2020 03:07 AM PDT I am looking into careers and was wondering how it is to be a programmer? Sorry if the question is stupid but wanted to know. [link] [comments] |
Posted: 10 Jul 2020 12:36 PM PDT I know that these hash functions have infinite number of inputs for the same output, but how are we sure that no two such inputs have been generated with the same output. It may be the case that that happened but we never noticed, right? [link] [comments] |
Help Starting First Major Project? Posted: 10 Jul 2020 12:25 PM PDT |
Posted: 10 Jul 2020 11:38 AM PDT |
Posted: 10 Jul 2020 11:11 AM PDT We currently use Aloha for online ordering as well as in-person orders through physical POS terminals. Aloha sends order tickets to several locations in the kitchen via NCR forms, depending on the type of order (salads, drinks, entrees, etc...). We're not satisfied with Aloha for a variety of reasons, but it seems like we need to continue using it through the end of the summer to print tickets in the kitchen. Hiring a programmer to links Square to Aloha may be easier in the short-term than re-training staff with a new ticketing system. I'm not actually sure what's the best way to go about handling this transition. If it makes more sense to send Square orders through NCR forms to our printers, or if it's better to send orders from Square through Aloha, and let Aloha handle sending orders to the printers. Does anyone have experience with either of these platforms, or both, and have any insight on how this should be handled? [link] [comments] |
Where to file "issues" for GNU maintained software? Posted: 10 Jul 2020 10:38 AM PDT I'd like to discuss some issues with the appropriate people in charge of some documentation of the GNU time program, but don't know where to do that. Several of us have come to believe, through some experimentation and code review, that GNU time measure memory in kibibytes, where as the documentation claims to measure in kilobytes. (note: I tried posting this in r/gnu but it was removed immediately.) [link] [comments] |
Where to learn backend using python flask to link it with flutter Posted: 10 Jul 2020 10:19 AM PDT Hello, Some context information about me: I am new to app development, in fact the first framework I am learning right now to create my app is flutter using dart. I also used to work with Python 3 (never with Flask nor Django, but I am willing to learn). For my backend, I know that if my app doesn't die at an early stage, I will have to skip Firestore and make my own solution. QUESTIONS : - How did you learn backend? - What resources do you recommend to learn backend with python that are best suited to my case ? (please, no generic answer) - any advice on how to approach this problem ? In advance, thank you very much for going out of your way and answering my not so clever questions. [link] [comments] |
Posted: 10 Jul 2020 10:14 AM PDT |
When should you make a method static? Posted: 10 Jul 2020 09:39 AM PDT |
What are some ways that you have created applications for simulations? Posted: 10 Jul 2020 08:14 AM PDT I'm currently reading "Building Software for Simulation". It's a great book for what I want to tinker with eventually (genetic algorithms). But I'm curious about how others have tried to create simulations. What frameworks you used, what was the point of the sim software, how were entities/sprites simulated in the simulation, etc. I feel like this this will be useful, but I want to know more about how others have implemented their applications. [link] [comments] |
Interested in finding a job, but not sure where to look. Posted: 10 Jul 2020 11:41 AM PDT Title pretty much says it all. I'm a skeptic of anything posted on the internet so finding a job makes me a bit uneasy. Giving my personal information to random people over the internet? No way! Who knows if they are just advertising or trying to scam? I have anxiety when it comes to social interactions anyway so just reaching out to a potential employer can be hard for me to do. How should I know where to look for a job? What sites are safe (no scams or companies that don't really pay you and sell your data)? What are some things to look out for? [link] [comments] |
How do I start a career in programming? Posted: 10 Jul 2020 07:41 AM PDT I've been thinking about freelancing as a way to make money while still being in high school but I don't know how to start. I am mainly a 'front end' programmer as I primarily work on websites with HTML, CSS and JS and do some side projects with Python, C, and C++. I tried my hand at back end development but I am more comfortable with front end but I don't mind switching to back end. How do I start a career as a freelance programmer or at an actual company? [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