Do you ever get the feeling that you're not good or smart enough? Ask Programming |
- Do you ever get the feeling that you're not good or smart enough?
- Textbook on C (Beginner)
- Having Different Languages 'Work Together'
- I am curious what yall think of the answer I came up with to this question in the interview questions of CodeFights
- Best way to teach myself C?
- [Java] Help getting a "combination lock" to "open"
- What is the best way to gather JSON data from a URL and store it into a database?
- Stuck on some calculus in school. Is my programming career over before it starts?
- I have a programming interview for an software development internship with SAP next week. They told me it is two hours long with two people the first hour, and two different people the next hour. Anyone have any idea what to expect? I’ve just been doing review questions for SAP from geeks for geeks
- CMD.exe help, command not working?
- [Java]Passing command line arguments to a method other than my main method.
- Beautiful Soup and Reddit
- How to make an idle site
- Open source business intelligence/reporting packages?
- How can I integrate this Ajax code into this Google Maps Javascript method?
- Senior in college - career switch from neuro to CS - information overload - most efficient route to go from zero to hero?
- question about execution of stack.pop() in python
- IF/END IF Code problem
- Can i learn a new language from a tutorial using a older version of the program?
- Connecting a private blockchain to a wallet application?
- Advice for image sharing platform
- How to implement WS-Policy with Java and Axis2?
- Does anyone know how to the "No valid kits found" for Qt Creator?
- What object would best represent a stack trace?
- Can You Name These Programming Languages Quiz!
Do you ever get the feeling that you're not good or smart enough? Posted: 17 Jan 2018 06:10 PM PST I've been working as a developer professionally for about a year and a half now, and just started a new job. Granted, it's a new and unfamiliar stack with new and unfamiliar projects, but damn, man. Sometimes I just feel in over my head and like I'm not good enough to figure this shit out. Does anyone ever get this? If so, what helps you overcome it? Thanks in advance for the advice. Feeling stressed right now. [link] [comments] |
Posted: 17 Jan 2018 07:58 PM PST I've only taken Java 1 so far. Anyone know a good textbook on C? [link] [comments] |
Having Different Languages 'Work Together' Posted: 17 Jan 2018 06:13 PM PST Hey, I am interested in writing a programme with a back-end implemented in one language (Python in my case) and a GUI front-end implemented in another (C# in my case). How would I go about doing this? [link] [comments] |
Posted: 17 Jan 2018 09:04 PM PST The question: You have a list of dishes. Each dish is associated with a list of ingredients used to prepare it. You want to group the dishes by ingredients, so that for each ingredient you'll be able to find all the dishes that contain it (if there are at least 2 such dishes). Return an array where each element is a list with the first element equal to the name of the ingredient and all of the other elements equal to the names of dishes that contain this ingredient. The dishes inside each list should be sorted lexicographically. The result array should be sorted lexicographically by the names of the ingredients in its elements. According to the estimated time CodeFights states this problem should take about 20 minutes. It took me a couple of days of playing with (probably about 2 hours total). The reason I am posting is so that more seasoned programmers can tell me what they think of my approach and what I could have done better. My code: [link] [comments] |
Posted: 17 Jan 2018 11:32 AM PST What's the best way to teach myself C? I'd like to obtain a good, working knowledge; enough to write a serious and efficient program. Not one of the lame "lean to write a choose-your-own-adventure" courses. Thoughts on the best way to self-teach? [link] [comments] |
[Java] Help getting a "combination lock" to "open" Posted: 17 Jan 2018 07:42 PM PST Hello! I am going through Java Early Objects 6th Edition and attempting the practice programming questions. For this question, I need to build a ComboLock that will unlock if a dial is turned left, then right, then left, and an open() method is called. I have this so far: } The problem is that I don't know to check is someone used turnLeft or turnRight to land on the correct numbers. My line of thinking with this was to set a direction, left and right, and somehow check them at certain steps in open(). But I have no idea how top do that. Please help! [link] [comments] |
What is the best way to gather JSON data from a URL and store it into a database? Posted: 17 Jan 2018 10:45 AM PST I'm developing a mobile app that uses json data from a url. The data is updated every few seconds, so I want to have a script/program that reads this data and stores it into a database. This way, the client won't have to make multiple calls to the url, they can just request the data from my database. I understand how to develop the code and set up the database, but I'm not sure how to deploy a single script that will run by itself every 2-3 seconds. I've ran scripts to do this in the past, but I used the task scheduler on my laptop which required my laptop to be powered on. What is the best way for me to deploy this script to run all by itself? [link] [comments] |
Stuck on some calculus in school. Is my programming career over before it starts? Posted: 17 Jan 2018 11:30 AM PST I'm going into programming. Focused on game design (I found a college and a major for it). I'm in pre-calculus in high school right now. I noticed for my college courses it goes up to calculus 3. I'm stuck. I did find with radians and logs and whatnot. But we're doing more work with sin, cos, arcsin, periods, amplitudes (trigonometry). It's just kicking my ass. I totally feel like I figured it out then did horrible on the test so apparently I suck. Any advice? Also I'm a little confused how some of this is gonna be used in game programming. I'm just lost and a little worried that I won't be able to become a game dev due to failure in calculus. Don't get me wrong I'm trying I just am not succeeding very well. Any advice? [link] [comments] |
Posted: 17 Jan 2018 12:41 PM PST |
CMD.exe help, command not working? Posted: 17 Jan 2018 03:46 PM PST Hello guys, i really need your help here, i open cmd and try to put in the command $ pip install -U -r requirements.txt , trying to download spotify playlist, source ( https://github.com/ritiek/spotify-downloader ) but it keeps saying '$' is not recognized as an internal or external command, operable program or batch file. i have system32 in path but still cant seem to get it to work, any ideas?? [link] [comments] |
[Java]Passing command line arguments to a method other than my main method. Posted: 17 Jan 2018 08:42 AM PST In my main method, I set up a switch statement to deal with multiple arguments from the command line: After my main method, I want to make a public static void method that will take in these declared variables and objects: The problem is, I don't know how to do this. I could set up the method header to accept (String[] args), but then I would have to re declare my variable and objects inside of the checker method. I was specifically told not to do this, and to keep them inside of the main method. Please explain! Thanks in advance. [link] [comments] |
Posted: 17 Jan 2018 06:07 AM PST Can anyone link me to a resource or does anyone have experience parsing Reddit with Beautiful Soup? I have like 10 pages where I want all the second level comments. I saw some stuff online for getting links from a subreddit, but nothing for parsing comments. Thanks! [link] [comments] |
Posted: 17 Jan 2018 11:54 AM PST So i recently found a guy, he had his own steam idle program. and im wondering how do people make something like that. So my question is, is there somebody in this Reddit that knows how to make an Idle program that runs on a public server. [link] [comments] |
Open source business intelligence/reporting packages? Posted: 17 Jan 2018 11:47 AM PST What are some good options for open source reporting packages, along the lines of Business Objects, Microstrategy, or Crystal Reports? Anything that will connect to a web services API as a data source? [link] [comments] |
How can I integrate this Ajax code into this Google Maps Javascript method? Posted: 17 Jan 2018 09:54 AM PST I'm working on a project and I've encountered a brick wall. I'm trying to add an AJAX snippet of code into this method that is called by a button to search a location on a map. The purpose of adding this AJAX code is so I can pass the ".search_latitutde" and ".search_longitude" variables into longitude and latitude variables in an MVC Spring project. I'm unfamiliar with both Javascript and AJAX so any pointers would be much appreciated! Google Map JS code Ajax Code #firstname and #lastname will be replaced by '.search_longitude' and '.search_latitude' If I'm making no sense please feel free to call me out for it! [link] [comments] |
Posted: 17 Jan 2018 09:42 AM PST I will try to summarize my situation as succinctly as possible. I am a senior at a top university in the U.S. getting a B.Sc. in neuroscience, on semester leave until Fall 2018 (graduating december). I was pre-med and realized it wasn't the track for me (I frame it as divergent creative vs. convergent creative -- I more enjoy projects that are open-ended in "solution" rather than using "creative methods" to converge on the "true solution", as in neuro research). In addition, I am looking at job prospects and recognize that I have a very difficult chance landing a satisfying job as a neuro major since I don't want to continue as a lab rat. I recognize that developing CS skill + knowledge will be a huge asset to my future goals (short-term: getting an interesting job; long-term: starting a project or company of my own making). Now the further I dig into CS online the more and more confused I am. Dipping deep in the pool of ignorance and experiencing severe information overload. I'm getting lots of little leaves and nuggets of information but with no larger branches to attach them to in my 'semantic tree' of understanding, so I find a lot of the information very jumbled and hazy in my head. My question for you all, as I have yet to find this resource online, isn't so much 'where to start' (I'm running through CS50 rn, figuring out GitHub, some other stuff), but what will be most useful in my case to try and land some sort of gig during recruitment season this coming fall (so, 8 months away). I realize this will be a huge uphill battle to teach myself, but I'm sure that by cutting out some of the less crucial aspects of CS on the front end may optimize my chances of success in the job search by presenting some real value. Ideally someone who has had a similar situation in changing track somewhat late in the game might PM me or something. I suppose what I'm looking for is a light mentorship/touch-point person as I try and figure out what kind of developer I want to be, as to what kind of tools I pick up in these next few months? tl;dr: switching track as a senior majoring in neuro to learning CS, want to land a job this coming recruiting season (fall)(am I delusional), experiencing info overload, what do? [link] [comments] |
question about execution of stack.pop() in python Posted: 17 Jan 2018 09:12 AM PST I am working on a program for parenthesis validation. Here, for the line if stack == [] or stack.pop() != dict[char]: when stack.pop() is executed, is it only valid for the test condition or does it modify the original stack? My logic tells me it shouldn't affect the original stack as it is only an if test and not an instruction for a pop() [link] [comments] |
Posted: 17 Jan 2018 08:44 AM PST Helped a friend put his company website on the internet, He asked me to have a look at the Prices and Defaults section (where i assume he changes prices of stuff etc) I know nothing about the inner workings of his website, but i do know enough to know this is not a very complicated problem.. Simple syntax error. I just don't know how to fix it. Ideas? Line 12 (The error is basically you can't have an if without an End If) [link] [comments] |
Can i learn a new language from a tutorial using a older version of the program? Posted: 17 Jan 2018 08:41 AM PST I'm new to programming and just getting started to learn python 3.7. The thing is that I'm watching a tutorial from version 3.5. Can i still use the tutorial? [link] [comments] |
Connecting a private blockchain to a wallet application? Posted: 17 Jan 2018 08:21 AM PST I'm trying to develop a wallet application for this cryptocurrency I created but I'm not able to find any information on how to do it. I came across this article about connecting a private blockchain to an existing application (ethereum apps mostly), is that a solution? If not could you point me towards a tutorial, article or book? Thanks! [link] [comments] |
Advice for image sharing platform Posted: 17 Jan 2018 07:26 AM PST We're starting a new project at work and I was asked to look for an application/platform to use. To keep it simple: what we're looking for is something where we can share pictures with our users. They should be able to log in and browse the images and search for specific ones. To find a specific picture, they should have 3 options:
After researching this a bit, I think I found a solution in Pimcore DAM. But I read that it's not that easy to begin using it so I'm still not sure. Does anyone know of any software, applications or platforms that I should look at? Or does someone have experience with Pimcore? Thanks! [link] [comments] |
How to implement WS-Policy with Java and Axis2? Posted: 17 Jan 2018 07:12 AM PST I'm doing an exercise using Java and Axis2 to implement some WS-* framework. The only part I had a "tutorial" of sort is implementing the WS-Security framework with Timestamp, Encryption and Signature. I have a service folder for the server-side that contains my security keys, the java class with the method to call (a simple sum) and the PWCallback class that it's used for user/password auth. Inside there's the META-INF folder that contains the services.xml file. The client folder has the java client, the PWCallback class and an axis2.xml file. The axis2.xml and services.xml were already there, I just commented out the part to enable the timestamp etc. Now my problem is that I don't know how to integrate ws-policy and ws-secureconnection too. Reading online I see a different way of writing the xml file and I don't know where to start. I'll post some code now: Axis2.xml Services.xml Thanks [link] [comments] |
Does anyone know how to the "No valid kits found" for Qt Creator? Posted: 17 Jan 2018 06:27 AM PST I'm trying to run a project file but it keeps telling me that there is no valid kits found. Anyone had any experience with this? [link] [comments] |
What object would best represent a stack trace? Posted: 17 Jan 2018 05:19 AM PST I'm trying to find out what people think a stack trace would look like in real life. My immediate idea is that there would be a polystyrene slab with the stack trace text written on it. [link] [comments] |
Can You Name These Programming Languages Quiz! Posted: 17 Jan 2018 08:08 AM PST |
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