Should I switch from Django to a Java backend framework? Ask Programming |
- Should I switch from Django to a Java backend framework?
- Where is the sliding window (to solve subarray problems) used in real life?
- What does it mean to "know" a programming language?
- Best way to have a php server on my phone and keep the code updated while developing on my computer?
- What technique is used to differentiate int hello(String a){...} and int hello(int a){...}?
- Odd request - interview with a programmer in an organization.
- What are some backend must-haves for any website??
- Should I find a mentor? How do I do this?
- Can compilers integrate a program with an operating system?
- What age did you start to learn programming?
- 2-3 Trees Visualization
- Is my website secure and complete?
- Software license explain please
- Codepen Code not working well in Local Test
- printing transaction history in a simple banking program.
- Help, I am trying to make an image detection type thing
- Hey guys, need serious help
- Help with algorithm to restore original array indicies
- Is there any tool, resource, json that can do something like this?
- Should I code outside of work? Please help
- What approach should I take to improve my programming skills?
- movie website
- Can you validate a x509 certificate with Owin?
Should I switch from Django to a Java backend framework? Posted: 26 Sep 2021 01:45 PM PDT I currently have a job as a Django backend engineer in Russia and I want to move to Europe (mostly looking at Germany) using a work visa. Looking at job offerings online (I only looked on StackOverflow so far), I don't see a lot of Python/Django jobs, but I see a lot of Java/Node.js ones. Is Python just not that popular for backend in Europe? Should I start learning a Java framework on the side, and do you think employers would accept me for a Java position, if I only have commercial experience with Django? P.S.: Another question. Do you think it's realistic to find a job that is willing to sponsor my blue card with 2.5-3 years of experience? [link] [comments] |
Where is the sliding window (to solve subarray problems) used in real life? Posted: 26 Sep 2021 10:22 AM PDT |
What does it mean to "know" a programming language? Posted: 26 Sep 2021 01:28 PM PDT I know some python but I would never claim to know python... but maybe I should? Can you really say you know a language if you've learned it in 6 months? [link] [comments] |
Best way to have a php server on my phone and keep the code updated while developing on my computer? Posted: 26 Sep 2021 09:03 PM PDT I want to keep on doing livestreams while coding projects, but my laptop doesn't quite handle obs and a php server at the same time, plus the browser. So I thought that I could make it a little lighter by using an old phone as the web server. This means the phone needs to have the code in its internal storage. But if I'm updating the code, I can't just save the file and refresh the page I need to phone to know there's changes and pull them. How could I automate this? I could connect my pc to my phone and create/edit the files from there, but wouldn't that make it slow? Since I'm connecting to ajother device. I could ssh into my phone, I think that would be faster. I don't know, what do you guys think? [link] [comments] |
What technique is used to differentiate int hello(String a){...} and int hello(int a){...}? Posted: 26 Sep 2021 08:43 PM PDT |
Odd request - interview with a programmer in an organization. Posted: 26 Sep 2021 08:29 PM PDT Hi! I'm a grade 11 student studying in the Philippines, and I've been assigned to interview someone who works in the IT department of an organization. I don't personally know anyone who fits this description, so I thought I'd ask here. Any answers would be very much appreciated.
Thank you for your time! [link] [comments] |
What are some backend must-haves for any website?? Posted: 26 Sep 2021 02:16 PM PDT noobs want to post, too So I have CSS and HTML files that I want to upload via C panel; I am not that interested in site metrics. Is CSS and HTML (so front-end only) sufficient to upload a website? Or am I missing some critical backend/cyber security stuff? Please and thank you [link] [comments] |
Should I find a mentor? How do I do this? Posted: 26 Sep 2021 08:47 AM PDT I was told recently that it's recommended to find a mentor is the CS field. Is it important to do this, and how do I go about it without feeling like I'm bothering my seniors? [link] [comments] |
Can compilers integrate a program with an operating system? Posted: 26 Sep 2021 11:11 AM PDT I have a raspberry pi. My understanding is that when I switch it on, it looks for an operating system executable on the SD card and runs that. And I can then run my program on top of the OS. How could I run my program directly on the metal at boot time? My (ill-conceived) goal is to decrease the attack surface. I've written a primitive webserver from scratch, and I am finding the 'security through "I haven't implemented that yet"' satisfying. Do any tools exist for replacing system calls in an executable with their bare metal equivalents? [link] [comments] |
What age did you start to learn programming? Posted: 26 Sep 2021 09:09 AM PDT |
Posted: 26 Sep 2021 11:27 AM PDT Is there a good visualization tool online / simulation for 2-3 trees? I saw this (https://www.cs.usfca.edu/~galles/visualization/BTree.html), but it seems to be a bit different than a standard 2-3 tree (even with Max Degree = 3). I'm trying to visualize some add, search, and split operations. [link] [comments] |
Is my website secure and complete? Posted: 26 Sep 2021 02:00 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 think I am almost ready to 'launch' my website as a landing page with a test environment for the tool that I want to integrate within the web application. However, as I learnt everything from scratch within the last months, I want to first know for sure that my site is complete, secure, and if there is nothing slightly obvious that I am missing but what would be important to fix before having a lot of people accessing the site potentially. The website is https://www.futgiant.com/ , if you would want to check it out and see if I'm missing something, that would be greatly appreciated! Also any other suggestions would be awesome! If you're into FIFA, it might be even more interesting to check it out ;) [link] [comments] |
Software license explain please Posted: 26 Sep 2021 09:54 AM PDT I don't understand what they mean by saying "golang backed by Google ", is golang open source? Of flutter? If I created a flutter application can sell it with an activation key? Can google say this mobile app you built with flutter is not allowed to use it? Explain to me [link] [comments] |
Codepen Code not working well in Local Test Posted: 26 Sep 2021 09:15 AM PDT Codepen - https://codepen.io/andybarefoot/pen/PBPrex So, when I copy and paste the code straight from the boxes, it doesn't work. I have tried right-click, view frame source and copy, downloaded it as a .zip file but it still turns out like this. Here is my index.html and main.css - index.html (github.com) , main.css (github.com) [link] [comments] |
printing transaction history in a simple banking program. Posted: 26 Sep 2021 09:03 AM PDT Hello, I am currently trying to get a basic banking program in C# to print out the history of the transactions. However I am running into a problem where it is printing the final account balance over and over instead of each transaction. I assume I am making a silly mistake, but here is a snapshot of my code and what it is printing: https://gyazo.com/08233b5da06b5544478f9a7d19d5e407 I appreciate any help you guys can give. Thanks [link] [comments] |
Help, I am trying to make an image detection type thing Posted: 26 Sep 2021 12:25 PM PDT I am trying to make an auto ad watcher for Real Racing 3, a mobile game. I am just looking if somebody can help me with it or where to start and also if anyone has any better suggestions. It needs to just be able to click the top right then wait 30secs then click X on a popup then repeat. The problem is that I can't just set up a macro because the X on the ad sometimes changes from left to right. (also I am using bluestacks) Thanks if anyone can help [link] [comments] |
Posted: 26 Sep 2021 05:41 PM PDT I'm new to CS and somehow I managed to make it to finals for my course it is not mandatory for the career I'm trying to pursue but I ended up getting stuck in this specific course for which I have to submit this assignment to clear the course, any kind of help will be really welcomed. I have 2 more days to submit it. Problem Statement Perform the given validations using JavaScript on following form fields. Customer Name (Required, text field with a limit of 5 to 50 Characters) Address (required, means it can't be left empty) Food Serving Mode (At least 1 option selected) o Takeaway o Dine Inn BBQ Deals (Minimum 1 and maximum 2 options selected) o 1 Tikka, 2 Kabab, 1 Fresh Lime o 6 Tikka, 6 Kabab, 1 Sprite 1.5 lt. o 12 Tikka, 12 Kabab, 2 Sprite/Coke 1.5 lt. Fast Food (Minimum 1 and maximum 2 options selected) o 1 Small Pizza, 1 Cheese Burger, 1 Sprite 1.5 lt. o 1 Large Pizza, 3 Cheese Burgers, 2 Sprite/Coke 1.5 It . o 1 Family Pizza, 5 Cheese Burgers, 2 Sprite 1.5 lt. Desi Foods (Minimum 1 and maximum 3 options Selected) o 1 Chicken Karrahi, 6 Naan/Roti, 1 Sprite 1.5 lt. o 1 Mutton Karrahi, 6 Naan/Roti, 1 Sprite 1.5 lt. o 1 Chicken Biryani, 1 Raita, 1 Sprite 1.5 lt. Sitting Area (At least 1 option, Le.. Main Hall or Roof Top) - o None o Main Hall o Roof Top Coupon Code (Empty or any 6 characters provided by user . Place Order (Submit button, clicking this button will check all validations Place Order (Submit Button, clicking this button will check all validations given above) I will be really thankful for anyone who is willing to help me out through this. Thank you very much. [link] [comments] |
Help with algorithm to restore original array indicies Posted: 26 Sep 2021 04:07 AM PDT I've been banging my head against the wall on this for over a week, mostly just in the back of my head. It's part of a larger algorithm to do seam carving in real-time in JS. The problem I'm having can be reduced effectively to a leetcode problem:
ex: I have: What this means is "Splice the 3rd element, splice the 3rd element from the newly spliced array, splice the 3rd, 1st, 1st elements" So: Now I want to generate: which is the order in which each element was removed. I can't come up with anything remotely efficient, so turning here for help! this is running on an array of image pixels, e.g. 1024x1024 arrays, so I need something a bit better than the [link] [comments] |
Is there any tool, resource, json that can do something like this? Posted: 26 Sep 2021 06:16 AM PDT I'm trying to build a simple grammar checker. It should correct things like: "He are cool" into "He is cool" Or "How much cats are there?" into "How many cats are there?" My approach is to get the first word for each sentence. Then, there should be a corpus of allowable second words. If the second word is not in the corpus, then you know it is wrong. The tool that I'm looking for is if I type an input word like "he", that the tool will give me possible sentences that start with "he." Basically, I'm wondering if an existing corpus of first-word of a sentence, second-word of a sentence exists. [link] [comments] |
Should I code outside of work? Please help Posted: 26 Sep 2021 05:07 AM PDT Hey guys, I am willing to become a front-end developer. Is it necessary to learn programming outside of the work after I get one? Is there anything more than Javascript, CSS, and HTML? If there is cant, I learn them while studying in the university within four years? Because if you count extra learning as working, this job seems like a worthless one. Please, I want to do a lot of other stuff in my 20s. Also, I have applied to computer science at a university so do not deception me I am in a severe mental break down :( [link] [comments] |
What approach should I take to improve my programming skills? Posted: 26 Sep 2021 01:44 AM PDT I am someone who has been learning python for about two months and have understood the basics of it. But now I am lost. Where do I go from here on out? I tried creating a guessing game and tic tac toe game projects and was successful in it but the road ahead has suddenly become cloudy. I want to go towards software developing but I am not sure what I should learn now and how can I improve my skills. I need some tips and suggestions on what to do now and how I can be better as a programmer. [link] [comments] |
Posted: 26 Sep 2021 12:54 AM PDT Hey guys. I want to create a very simple website to add all the movies I have watched. A search bar to search the movie's name in imdb database, and an 'add button' on the movie's poster to add it on my main page. Is there any tutorial on the internet to create something like this? thanks in advance. [link] [comments] |
Can you validate a x509 certificate with Owin? Posted: 26 Sep 2021 06:40 AM PDT Our current application is Asp.net web api. We secure our calls to this api using owin to intercept each request. When a request is made to our api it must contain an Authorization token within the header. The client obtains this token by using a client id and client secret and going to a token request url before calling our api. We extract this token and validate it. Validation is done by sending the token to an external url. If the response from this url is successful then the client api request is then processed as normal. If not we send back an unauthorized error. We currently have a client that does not want to use authorization tokens and wants to use a x509 certificate. Our old legacy program was a wcf webservice that accepted certificates for validation. They want to stay with this pattern. Is it possible to use owin to validate an x509 certificate? If so what are we validating it against? How would this even work with web api? [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