How often does SQL injection actually happen? Ask Programming |
- How often does SQL injection actually happen?
- Question about Swatting and ways to hinder it
- How to design an effective user interface in a timely manner?
- Python GUI help.
- Is there a excel based user interface?
- I started writing a cryptocurrency in Python from scratch. Any feedback?
- Purely for fun and education, I wanna make a webpage that calculates Pokemon weaknesses. What would be better for text data storage: XML or JSON?
- Which careers are currently the best for the present and future in the Computer/IT industry? (self.cscareerquestions)
- What is a good workflow for Arduino/ESP8266 projects with version control?
- "error: expected expression" initializing 2d array with nested for loops
- I am facing a error in 2D vector initialization through constructor.
- How does compression algorithms deals with the endianness(Big/Little Endian) of the system.
- Need help with a Django 'Poke' app (similar to Facebook.)
How often does SQL injection actually happen? Posted: 30 Dec 2017 01:46 PM PST I read about SQL injection and the risks associated without using parameterized queries and such. My question is, just how often does SQL injection happen? With my little knowledge, I would assume it happens to people making a website or program with little experience. But, what I've theorized is that most of these types of web creators use a web hosting service. I feel like Wordpress, Wix, etc. all account for this and their inexperienced programming users. I'm sure more often than not a Wordpress user has no idea about SQL injection, they just know that Wordpress can handle their login functionality. Just how frequent is SQL injection? [link] [comments] |
Question about Swatting and ways to hinder it Posted: 30 Dec 2017 08:42 PM PST So with the recent death due to Swatting, it has been all over the news and it got me thinking about possible ways to hinder it One idea to limit spoofing is for the 911 operator to be able to tell by the press of a button if the number they are seeing is actually in use. So my question to programming is is it possible to determine if a phone number is in use without calling the number, if so how? Not sure if this is the right place to ask this, if it is not do the mod's have a suggestion [link] [comments] |
How to design an effective user interface in a timely manner? Posted: 30 Dec 2017 03:36 PM PST I'm working on a Java program for work, and while the back-end work is processing smoothly, the front-end design leaves a lot to be desired. In short, we're migrating a Windows 2000 application to Windows 10 using Java (management decision, too late to change it now) and our target users are not tech savvy at all. User interface design is something that no one on our team has any real experience with, so do you have any suggestions on how to tackle designing an effective user interface? We're trying to preserve the general flow of the predecessor to minimize training costs, but at the same time, trying to make things more intuitive. However, I'm beginning to worry that making it just like the old one might not be the best thing. tl;dr - How do you make a good GUI for an overhaul of a dated legacy system? [link] [comments] |
Posted: 30 Dec 2017 06:16 PM PST Hi, I am writing up a project and I ran into a problem. I can't post my code because Its a school project and the board apparently put your code through the internet to check for copying. I'll PM the code to anyone that thinks they can help. Basically I have 3 windows in Tkinter. They all open upon the click of a button from the previous window. The problem is they all have the same Window title. Even though I have done window.frame.title = ('Log in') window.frame.title = ('create account screen') window.frame.title = ('Confirmation') (Window and frame are my parameters, you could imagine it says Self.master) So my windows begin with def init (window,frame): Anyway all my windows have the title 'Log in'. This is pretty confusing, Again I can PM you the code. Thank you. [link] [comments] |
Is there a excel based user interface? Posted: 30 Dec 2017 01:40 PM PST Hi All, I have written a forecasting system in excel(VBA) but it has the "excel stigma" which will stop it from being used more widely. In my own time I would like to convert this to an application. This I will also use as a project to learn another language. My question is, is there already a excel add-in like interface I can use to minimise the creation. The interface must cover the basics. entering formulas manually or with mouse assistance. Extent of formulas is +-*/ and sum Color cells Format cells Drop down list. Insert row Delete row. I won't to stop column creation/deletion. With the above I want to store it in a database for storage and retrieval. As this will have alot of data and users. Speed of interface is key to its success. This software only needs to be windows based. But I would like the language suggest to be future proof and have wide acceptance as one day I want to sell at decent size organisations. [link] [comments] |
I started writing a cryptocurrency in Python from scratch. Any feedback? Posted: 30 Dec 2017 03:57 PM PST So over my Christmas holidays (I'm a student), I decided to look into the workings of Bitcoin, Litecoin etc. I found several helpful online tutorials and read through the Bitcoin spec and I've published my version (although incomplete) on Github. I would really appreciate feedback and if any one is interested in contributing, just let me know! https://github.com/chickencoder/coil Thanks, chickencoder [link] [comments] |
Posted: 30 Dec 2017 03:31 PM PST For fun, I'm interested in making a webpage (HTML, CSS and JavaScript) that can calculate and run Pokemon weaknesses for any type combinations. I saw a page that can do this and thought to myself, "this would be fun to try to remake". For creating some files to store each type's weaknesses/resistances/immunities, in human-readable plaintext, what would be better (it'll be interpreted by JavaScript): XML or JSON? Never used either before. Which one is more popularly used nowadays and best to learn? [link] [comments] |
Posted: 30 Dec 2017 11:11 AM PST Factoring in stress,salary, and future job availibility in the next 4-5 years, which careers would you pick?
[link] [comments] |
What is a good workflow for Arduino/ESP8266 projects with version control? Posted: 30 Dec 2017 12:55 PM PST Bear with me guys, I'm very new and trying hard to learn! I'm just starting out with coding and microcontrollers because I want to build a specific project for my GF, but I'm trying to figure out what the best way to go about doing this in a way that I can make mistakes in my code and go back in time if I need to (in a sense). I've heard of a million and one IDEs that work great for Arduino dev, but honestly, there's so many things I don't know that it's hard to pick one. I don't want to pick one, realize it has some limitations later on, and have to migrate my project to a different platform. SO, I need your help! Here are the things I'm looking for, please recommend what you would use:
I think that covers my bases. Some other questions I had about your personal preferences:
Sorry, I know this is asking a whole lot all at once, but I don't want to fiddle with my setup once I start because that seems to be the thing that derails most of the projects once I start them every time. I really appreciate your help, and happy new year!! [link] [comments] |
"error: expected expression" initializing 2d array with nested for loops Posted: 30 Dec 2017 12:44 PM PST I am having trouble understanding why the following process to fill a 2d array with numbers [(dimension2 - 1), 0] is giving me an error. This is part of an online cs50 assignment called "fifteen" in case you have done this already. Not looking for a code rewrite, just a pointer to help me figure out what is going wrong. Any help is very much appreciated! Full error message: ~/workspace/pset3/fifteen/ $ make fifteen clang -ggdb3 -O0 -std=c11 -Wall -Werror -o fifteen fifteen.c -lcs50 -lm fifteen.c:163:9: error: expected expression for (int i = 0; i < d; i++) ^ 1 error generated. make: *** [fifteen] Error 1 My code: [link] [comments] |
I am facing a error in 2D vector initialization through constructor. Posted: 30 Dec 2017 09:56 AM PST The problem here is that It is showing some weird error but when I searched the internet I got a solution to exact same problem, here but the error is mentioning that I am intializing a data class which needs two arguments but instead I am initializing a vector with the first argument being the size of the vector. [link] [comments] |
How does compression algorithms deals with the endianness(Big/Little Endian) of the system. Posted: 30 Dec 2017 05:10 AM PST Is it a major factor while designing a compression algo, and if yes how the developers deal with it. [link] [comments] |
Need help with a Django 'Poke' app (similar to Facebook.) Posted: 30 Dec 2017 12:31 AM PST Please see this link to stack overflow. I could really use your help! Thanks [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