Can I ask to make an interview with me? To calm worry and prepare for questions Ask Programming |
- Can I ask to make an interview with me? To calm worry and prepare for questions
- Is there an iPad emulator for Windows 10 that allows me to inspect element on web apps like I can do with the safari and the simulator for iOS?
- So, I'm having a weird problem that I'm not entirely sure how to describe. For one of my classes, we have to update a webpage using PHP and SQL, which in and of itself is relatively simple but the problem I'm encountering is that my $_POST array is empty when accessed by different parts of the code.
- C++ access modifier security
- Is there a good resource for learning how to set background images for iOS apps?
- STATA HELP FOR AN IDIOT
- How do you select drop down menu using selenuim?
- Why doesn't 0.01 + 0.02 give a floating-point error when 0.1 + 0.2 does?
- [C#]What is the best way to organize these classes?
- What programming projects / skills do employers NEED to see in a Full Stack Developer? Top 3
- Help Creating Scatter plots with a for loop in R
- Best way to implement clickable risk map?
- What do you use the most from Github Student Developer Pack?
- How to allow overcommit on Windows 10?
- What's the best template for documenting use cases?
- Question,
- Creating a something like file explorer
- What is the most simple way to make a code I wrote, usable for a friend of mine who does not have Python installed?
- Javascript specific coding practice
- Is there any free IDE for windows where i can write scripts for the iOS app Scriptable?
- How would you suggest preventing users from cheating?
- Exposing a modding API in a gradle project
- Help me with this pandas dataframe in python?
- Honest Question, Looking For Honest Answers
- Is theere a c# programming handbook?
Can I ask to make an interview with me? To calm worry and prepare for questions Posted: 28 Mar 2020 09:20 AM PDT Hello. I'm a java developer with 4+ years of experience. I want to try to find a job in a foreign country as a middle Java / JavaScript programmer. The problem is that English is not my native language, but I know it at about intermediate - upper intermediate level and I'm worrying a bit. And I'm not sure about my internet connection - will it be able to hold a video call. It 99% should, but I'm not sure. Could you interview me for testing purposes? If you would like, maybe train a bit. If you wish, write me, I will explain details. Thanks in advance. [link] [comments] |
Posted: 28 Mar 2020 05:33 PM PDT |
Posted: 28 Mar 2020 07:15 PM PDT }[link] [comments] |
Posted: 28 Mar 2020 09:03 PM PDT My team at work was interviewing a candidate, and my coworker asked (of c++) "which is more secure, a struct or a class". The candidate said he didn't know the answer, but when my coworker replied a class was more secure I almost spat my coffee out. Thankfully it was a webex. Am I smoking crack? Obviously what he was getting at is the default access modifier for struct vs class, but access modifiers have no relation to anything security related, do they? I mean maybe you could argue that properly encapsulated code is less likely to have flaws in it, which might make it more secure, but even that seems like a huge reach. Like, code with a private access modifier lives in the same memory, doesn't it? [link] [comments] |
Is there a good resource for learning how to set background images for iOS apps? Posted: 28 Mar 2020 08:42 PM PDT Hi, I am learning iOS development (internship), and I'm trying to use an image as a background for an app. The problem is, it ranges from looking pretty bad on some models to looking terrible on other models. I just can't seem to get the image to scale properly for different iphones. I've been looking for tutorials, but I can't find anything that uses a full-screen image along with storyboards. It's all either a solid background color, or just some icon in the middle, or they do it programmatically, which is tough because I'm taking over for a much more experiences developer and he used storyboards (as opposed to doing it programmatically) and I'm worried that I'll mess something up worse if I try to switch to doing it programmatically. So really, I just need a resource that explains things like how to use full images as a background and make it work on all phone models. My issue is that the image wants to stay the same size even on much smaller screens, meaning that on something like an iphone se or 8 or something you only get the top half of the image. I've tried using constraints, but they screw up with different dimensions, because (I think) they can't keep all of their constraints true when the ratio changes. I'd love any advice on how to handle this! Thanks!! [link] [comments] |
Posted: 28 Mar 2020 06:20 PM PDT STATA HELP: I am looking to create a variable, where the variable equals 1 when the "team won the previous game" and 0 if they had "lost the previous game". Any help? [link] [comments] |
How do you select drop down menu using selenuim? Posted: 28 Mar 2020 05:52 PM PDT I am struggling with the drop menu in google. So I am trying to use selenuim to login in to my google account and then click on the calender.. Google has a drop down menu and I cant seem to figure how to select calender from the menu. When I click on inspect calender from the drop menu in google this is the element I see. <span pid="24" class="MrEfLc" style="background-position: 0 -2553px;"></span> <span class="Rq5Gcb">Calendar</span> [link] [comments] |
Why doesn't 0.01 + 0.02 give a floating-point error when 0.1 + 0.2 does? Posted: 28 Mar 2020 07:02 AM PDT Hi. I was playing with the following code: That, of course, gave 0.30000000000000004. But when I replace it with [link] [comments] |
[C#]What is the best way to organize these classes? Posted: 28 Mar 2020 04:37 PM PDT I am making a dynamic sidebar for a website. I'm looking to do something similar to inheritance but backwards (let me know if there is a better way) I would basically have two classes that would be a part of the sidebar class: Nav{ String Name; String Path; } DropDownNav { String Name; List<Nav> Navs; } Obviously the sidebar could have something like this: Sidebar{ List<Nav> List<DropDownNav> } But I was wondering if I could use polymorphism or inheritance to give me something like this Sidebar{ List<Nav> } Keeping them as one object but preventing Nav from having a list of navs, and preventing DropDownNav to have a path. What is the best way to accomplish this? [link] [comments] |
What programming projects / skills do employers NEED to see in a Full Stack Developer? Top 3 Posted: 28 Mar 2020 04:00 PM PDT |
Help Creating Scatter plots with a for loop in R Posted: 28 Mar 2020 03:02 PM PDT I have been trying to create a for loop in R that will output multiple scatter plots but haven't had much luck. Here is what I have done so far: for (column in colnames(top_scorers[3:8])){ print(column) ggplot(top_scorers, aes(x=`Win%`, y=column)) } The loop seems to be functioning correctly as it will print out the correct column names but the ggplot() function does not seem to output anything. Does anybody have an idea as to why? I am relatively new to coding in R but will try to provide clarity on what I am trying to do if needed. [link] [comments] |
Best way to implement clickable risk map? Posted: 28 Mar 2020 02:12 PM PDT I'm in the middle of writing risk (the boardgame) in python. I've build the back end and I am now working on the front end. However, one of the required features is that each territory in the map is clickable (risk board). What is the best way to implement this? I've considered splitting the map into different images for each territory, but images have to be rectangular, so clicking on one territory would often be interpreted as clicking on 2. Any ideas? [link] [comments] |
What do you use the most from Github Student Developer Pack? Posted: 28 Mar 2020 01:59 PM PDT |
How to allow overcommit on Windows 10? Posted: 28 Mar 2020 01:43 PM PDT Before anyone tells me not to overcommit, I need to allow it for deep learning (tensorflow and keras) purposes. I am handling an .npy (numpy array) file of size of at least 19 GB and I am using every trick there is to prevent OOM problem, i.e. decreasing the batch_size, or splitting the data set into smaller partitions and yet I need to allow overcommit on windows. [link] [comments] |
What's the best template for documenting use cases? Posted: 28 Mar 2020 01:32 PM PDT |
Posted: 28 Mar 2020 09:44 AM PDT What can i do with a phone motherboard, the phone isn't working,the motherboard is fine,i dont have a pc,what can i do with it,connect it to another phone?,etc. [link] [comments] |
Creating a something like file explorer Posted: 28 Mar 2020 09:42 AM PDT Just wanna ask, Can you suggest what do I need to know or to learn (where do I start?) in making a something like file explorer? [link] [comments] |
Posted: 28 Mar 2020 01:11 PM PDT So I made a simple calculator for options in Python. How can I share it so someone who does not have Python can use it themselves? [link] [comments] |
Javascript specific coding practice Posted: 28 Mar 2020 12:50 PM PDT |
Is there any free IDE for windows where i can write scripts for the iOS app Scriptable? Posted: 28 Mar 2020 12:42 PM PDT |
How would you suggest preventing users from cheating? Posted: 28 Mar 2020 11:58 AM PDT Background: I'm a software engineer who while in pandemic lock down started making games using React and Node to stay social with friends virtually (e.g. cards against humanity, codenames, etc.) but I am having trouble securing the game data so it's not readable to users. How do y'all accomplish this? Is there some kind of encryption or hash that is standard for this? [link] [comments] |
Exposing a modding API in a gradle project Posted: 28 Mar 2020 11:39 AM PDT Hi, So I am making a modding API for a project. Essentially my question is this, what is the best way to expose the API to the public and link the mods to the main game. Option 1: Have an entire gradle project including the API for each mod. Essentially I would give the user an entire gradle project that contains the modding interface/API, and put each one of these gradle projects in the mod folder of the game. Obviously this seems bad as it is cumbersome and ineficient. Option 2: Somehow reference the modding API in a new gradle project providing the path to it. But then the modding API would have to be a jar, and I want to avoid compiling JARs as much as possible. What is the best way, including other options, of exposing a modding API using gradle? [link] [comments] |
Help me with this pandas dataframe in python? Posted: 28 Mar 2020 07:16 AM PDT Right now I want to print everything inside of the latest entry into this pandas dataframe . I can print everything that is correlated with the "open, high, low, close & volume" but I can not print the date for a specific entry. I am getting the data using the TimeSeries function from alpha_vantage. What I can print out the out i want My question is, how do I access the dates in this pandas dataframe? I have searched for an answer and I can not find one. [link] [comments] |
Honest Question, Looking For Honest Answers Posted: 28 Mar 2020 10:41 AM PDT I am relatively new to programming. I understand the very basics about how to set up an html, especially in such a way that i can use javascript code in it, and i know a little bit about javascript. as you can probably tell already, im not experienced by any means. ive seen some amazing things done on other subreddits and ive also seen some really interesting youtube videos (specifically by The Coding Train) and now I want to get serious about learning code. Where should I start? What language should I really fully learn first? I like JS a lot (even though i see a lot of trash talk towards it lol) so would that be a bad first language to learn? any advice would be amazing, thank you guys! [link] [comments] |
Is theere a c# programming handbook? Posted: 28 Mar 2020 10:08 AM PDT I looking for a book which contains more/less complete documentation of the c# programming language. I want something I can use to check on some class or method that I don't remember completely or want to explore. Is there anything remotely like this? [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