How can a hacker simply breach the security of one of the most secured websites in the world (Twitter) in a matter of minutes? Ask Programming |
- How can a hacker simply breach the security of one of the most secured websites in the world (Twitter) in a matter of minutes?
- Best Place to Learn C?
- Having a ton of trouble implementing Topological Sort
- Best place to learn Tkinter?
- please comment down Swift resources for making small games.
- Why would you choose C over C++
- Help Using OkHttp
- Do you switch to release versions of the software when debugging (poll)?
- Home Update Server
- Hosting a Simple Game on a Web App
- How many methods do you guys see in this piece of code?
- How do I make my simple python code better
- How are bank balances stored?
- I made a program, and I am so confused. Please Kindly Help, take a look.
- ASP. NET CORE SignalR centralized Error Handling?
- How can I make a website that shows the output of a Python script?
- Can I create one code that can scrape from multiple websites the same classes?
- I made a program, and I so am confused. Please Kindly Help, take a look.
- Want to learn programming? Help us shape our upcoming software development course.
- convert C to C#
- Wanting to get your feedback on an upcoming collaborative software development program survey.
- Dear programmers of Reddit, what data is Timify.me allowed to collect during an exam?
- Help finishing Python script (convert txt to csv)
- Can you make a TOML object without a name
Posted: 15 Jul 2020 03:32 PM PDT From what I imagine about cyber security, it is more about social engineering and relying on end users' technological illiteracy than on the hacker's skills and abilities (especially when it comes to the more secure products like Twitter). But what happened today (Twitter breach) got me thinking, how could a hacker simply overcome the security measures deployed by one of the best security teams in business? Maybe if it was just one account, I could imagine it being an account holder's mistake, but breaching Apple's, Bill Gates's, Elon Musk's,...,etc. accounts simultaneously is more of a Twitter's mistake, right? So how could that possibly have happened? [link] [comments] |
Posted: 15 Jul 2020 02:59 PM PDT I'm pretty knowledgeable of Java and C#, but I would like to learn C. What is a good place to find videos/practice assignments for C? [link] [comments] |
Having a ton of trouble implementing Topological Sort Posted: 15 Jul 2020 08:16 AM PDT My repl on this: https://repl.it/@Stylebender/Topological-Sort#index.js What I'm basing it on: I think the actual Topsort function seems be fine? My DFS method on the other hand seems broken and I'm not sure how to code it in JS. [link] [comments] |
Posted: 15 Jul 2020 05:06 PM PDT |
please comment down Swift resources for making small games. Posted: 15 Jul 2020 10:00 PM PDT I am new to Swift programming, I'm trying to make some simple games in Xcode, and plz comment anything you find helpful. I also need tips. Thank you! [link] [comments] |
Why would you choose C over C++ Posted: 15 Jul 2020 08:50 PM PDT As the title implies I was wondering why you would opt for C as opposed to C++. The latter just seems much cleaner and more comfortable to use and support OOP. Any examples would be well appreciated! [link] [comments] |
Posted: 15 Jul 2020 06:57 PM PDT I am fairly new to using OkHttp and am trying to make a GET request to an API and so far have been successful. The following block of code works: String getJSONCandidates() throws IOException { Request request = new Request.Builder() The issue is that I am trying to add a parameter to this request. The goal is to specify that 500 objects per page are returned using the "per_page" parameter. However, when I try to use ".header()" or ".addHeader()" it does not work. Any ideas for how to make this work? I would appreciate any help, thanks! [link] [comments] |
Do you switch to release versions of the software when debugging (poll)? Posted: 15 Jul 2020 12:57 PM PDT |
Posted: 15 Jul 2020 04:18 PM PDT Is it possible to make a raspberry Pi an update server for your games on your PC? For example, download the game overnight on raspberry Pi (to an external hdd or something), then stream the game update super quick to your pc once the update is completed on Raspberry Pi? So you don't have to leave pc on overnight and only leave Rpi on as it uses so little power? [link] [comments] |
Hosting a Simple Game on a Web App Posted: 15 Jul 2020 03:44 PM PDT Hey guys, I'm developing a quizzing app. Basically a user can join a quiz, or host a quiz. When hosting a quiz, I would like a user to customize lengths of rounds, and add their own questions/answers. Once a quiz is created, a passcode is generated, which the host will give to friends. Friends can then click on the join quiz button at the start, enter this pass code and enter a waiting room. Once the host hits a "go" button, the quiz will begin. What I'm unsure about is how exactly the hosting mechanism would work. The first thing that came to my head was store the passcode in a DB, then search the DB for it whenever a user enters it - maybe have a column in this table that stores users in a waiting room. Also a column with "Waiting" or "InProgress" too. I'm thinking as I'm typing this, but basically what I'm asking is does anyone know of any good resources as to where might be a good place to start? I have an AWS account so I'd like to leverage that. This is very much a situation where I know there's some obvious answers - I'm just having a hard time knowing what to google/search on reddit. I keep getting results on how to host Unity games - which is more than likely massive overkill. I have never done anything like this before so it's pretty new to me. I'm a junior dev with about two years experience. I'm working with an Angular front end and .NET backend. [link] [comments] |
How many methods do you guys see in this piece of code? Posted: 15 Jul 2020 02:45 PM PDT Sorry for asking again but I'm new to programming and trying to get at least 3 methods in my code. Also can someone please fix this code as well lol it's not working import random from builtins import False, True def generateRandomNumber (): randomNumber = random.randint( 1, 100 ) return randomNumber def askUserForNumber (message = "Guess the number: "): userNumber = int(input(message)) return userNumber def checlUserforNumber( userNumber, randomNumber): if userNumber > randomNumber: return "Too high" elif userNumber < randomNumber: return "Too low" else: return "congratulations" main() [link] [comments] |
How do I make my simple python code better Posted: 15 Jul 2020 02:39 PM PDT I've already learnt a good amount of programming languages but never got into python, I'm now learning it because I want to integrate python on my webapp. To start of I made this simple fighting game where the pc fight himself based on randomness. The code fully works as expected but I wanted to know what I could do to make it look nicer. I probably have lines longer than what they should / could be. Can you guys point them out to me? Thanks in advance. [link] [comments] |
Posted: 15 Jul 2020 02:08 PM PDT Are bank balances stored as an intger, a hash with salt that only the user can decrypt, or a third way? Could an admin in principle change his own balance to 1B? [link] [comments] |
I made a program, and I am so confused. Please Kindly Help, take a look. Posted: 15 Jul 2020 01:50 PM PDT THIS PROGRAM IS TO CHECK IF THE DATES ENTERED ARE EQUAL OR NOT (Currently I am learning classes and objects)
Thank you! [link] [comments] |
ASP. NET CORE SignalR centralized Error Handling? Posted: 15 Jul 2020 09:53 AM PDT I build a chat application with following platforms js for client side asp. net core for server side with signalR 3.0 i want to handle the all errors in centralized manner on server side. i googled it but I didn't find any solution. can any one help me or guide me into the solution. thanks, 😊 [link] [comments] |
How can I make a website that shows the output of a Python script? Posted: 15 Jul 2020 01:26 PM PDT Hi, I made a web scraper in Python using bs4 and requests, it's very simple, it checks the website every 60 seconds, it looks for every link in the page, counts them and prints the number in te Terminal, this process keeps going until I close the terminal or press CTRL+C, now what I want to do is that the same thing that I see on my Terminal gets shown on a website, this website should be strictly functional, white background, sans-serif font, nothing fancy. How can I make this? [link] [comments] |
Can I create one code that can scrape from multiple websites the same classes? Posted: 15 Jul 2020 01:15 PM PDT noob here, and this is for data analysis mainly. I want to scrape data from different news websites e.g. bbc, cnn etc for data analysis and machine learning project. I am having some help from another programmer and he is saying each one is different in terms of class structure etc therefore they need to be tackled in a different way. From my understanding, I just need the heading, time, image (if any) and text body, so could I not write a function that could tackle many different structured sites, where if returning 'empty'/ 'na', it would move on to the next type and try that. As the idea of writing this code 100 times for 100 different websites seems insane... I know there is paid APIs out there but they can get very expensive with high amounts of data. Does anyone have any advice, or can advise me on this? [link] [comments] |
I made a program, and I so am confused. Please Kindly Help, take a look. Posted: 15 Jul 2020 01:12 PM PDT q)THIS PROGRAM IS TO CHECK IF THE DATES ENTERED ARE EQUAL OR NOT (Currently I am learning classes and objects) package Programs; _______________________________________________________________________________________________ package Programs;
Thank you! [link] [comments] |
Want to learn programming? Help us shape our upcoming software development course. Posted: 15 Jul 2020 11:34 AM PDT Hey everyone! I am an intern working in partnership with the HOFT institute in Austin, Texas to develop an online collaborative software development course. We want to teach commonly used development platforms and workflows, in hopes to give hands-on experience via group-based projects/modules. We're looking to collect feedback on what aspects of learning programming are important to you. We'll use this feedback to influence the potential course format, schedule, and design. Thank you so much for your help! https://docs.google.com/forms/d/1MyR68XyE5gjVaF912Y7QxmaLVdQJZnFTcqnuBWzAh50/edit [link] [comments] |
Posted: 15 Jul 2020 11:25 AM PDT |
Wanting to get your feedback on an upcoming collaborative software development program survey. Posted: 15 Jul 2020 11:14 AM PDT Hey everyone! I am an intern working in partnership with the HOFT institute in Austin, Texas to develop an online collaborative software development course. We want to teach commonly used development platforms and workflows, in hopes to give hands-on experience via group-based projects/modules. We're looking to collect feedback on what aspects of learning programming are important to you. We'll use this feedback to influence the potential course format, schedule, and design. Thank you so much for your help! https://docs.google.com/forms/d/1MyR68XyE5gjVaF912Y7QxmaLVdQJZnFTcqnuBWzAh50/edit [link] [comments] |
Dear programmers of Reddit, what data is Timify.me allowed to collect during an exam? Posted: 15 Jul 2020 10:50 AM PDT "o12sor877590vka.12.2020.07.15.04.56.10 DISPLAY\ACI27A1\4&262321d9&0&UID206371 was started. Driver Name: monitor.inf Class Guid: {4d36e96e-e325-11ce-bfc1-08002be10318} Service: monitor Present: true" Our lecturer sent this block of text was sent to us today, after we finished our exam on timify.me stating that some of us had external devices connected and this could be flagged as a fraud. Q1: Since when can Timify.me collect information about the ports and drivers of a computer? Furthermore this feature isn t specified on their website. Q2: Is the data above legit? Or is it a fake code? [link] [comments] |
Help finishing Python script (convert txt to csv) Posted: 15 Jul 2020 09:53 AM PDT Trying to convert a txt file into a csv. I'm not the best with Python (or OOP in general) but I'm learning. I have the code below and it works but it puts every line in the txt file into its own row in the csv. What I need is for every six lines in the txt doc to be bundled into a row in the csv output. Each line should go into its own column until after the sixth line when the next row will begin. How should I tweak my code to get there? TIA! [link] [comments] |
Can you make a TOML object without a name Posted: 15 Jul 2020 09:42 AM PDT Hello everyone! I am currently using TOML to store the following object, for usage in python.
One issue I have ran into is that unless I give the object a name, python throws an error when I try to use toml.load. I have to add "pets =" before the first bracket. Is there a way to create the object above without giving it a title, as you can do in python or JSON? [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