What is the theoretical limit of lossless audio compression? Ask Programming |
- What is the theoretical limit of lossless audio compression?
- Advice on what development framework or engine I should use for my project.
- DASH protocol for encrypted file
- How can I import those 'other files' using the Vue Router?
- Sniffing POST commands for wifi climate system
- Very basic clustering question. Does anyone here know?
- Function Call in C?
- weird calculation stuff
- How much harder is a masters than the initial 4-year degree?
- Are code-golf languages practical? Why is it based on the file size and not binary size?
- A request for tips/critics/feedback on my small Python program
- C++ Program Help
- Trying to use gnu make to build java. But have a weird dependency problem.
- How to teach my little cousin Programming
- Choosing a C++ GUI Library/Framework.
- My partner, a teacher, has been asked to show Python to some year 9's / 15yos - how can she get their attention?
- How to maintain microservices technologies up to date
- Literature for a master's thesis in the field of programming
What is the theoretical limit of lossless audio compression? Posted: 03 Oct 2020 08:09 AM PDT Would it be possible to go any further than current FLAC? Are there still a lot of gains to be had, not much at all, or is there no way of really knowing? [link] [comments] |
Advice on what development framework or engine I should use for my project. Posted: 03 Oct 2020 07:01 PM PDT Hello, I am torn on what I should be using for my app I want to develop. My project is not QUITE a game but at the same time maybe it is. A user will send some information to another user, then that user will send the same info to another, etc. In the end, if the information all matches, then each "player" is awarded a star, or a coin or something along those lines. Fairly simply "gameplay". Is it really a game? It is "multiplayer asynchronous" I guess but does Unity really sound necessary? It will be a cross platform app for android and ios. I have looked into Xamarin. Any other ideas? Thanks a bunch. [link] [comments] |
DASH protocol for encrypted file Posted: 03 Oct 2020 09:31 PM PDT I don't know if there is something like this out there but I've been thinking about creating an application that could stream video from a server that hosts encrypted video files. Ideally the server would send the file in packets that could be decrypted by the client application and played as video. I know about stream ciphers and so I know its possible to decrypt as you go with a file (I was planning on using AES CTR). My question is, would it be best to have the server just chop up the encrypted file and send each part when the client was ready for it and then have the client decrypt, encode each part of the video and serve it to the video player via a localhost server? I know this wouldn't really be DASH because it wouldn't have adaptive bitrate but I don't really know another term to use. I also don't know if there is a way easier way to do this and I'm just over complicating things. [link] [comments] |
How can I import those 'other files' using the Vue Router? Posted: 03 Oct 2020 02:57 PM PDT In the vue documentation (https://router.vuejs.org/guide/#html) , // 1. Define route components. // These can be imported from other files I've been trying template: import('home.php'), template: url('home.php'), but no luck. [link] [comments] |
Sniffing POST commands for wifi climate system Posted: 03 Oct 2020 08:04 PM PDT I have a Seeley heating and cooling system that has a wifi controller called MagiqTouch. With their android app, I'm able to control the system from my phone remotely (including outside my local network). However, this app is not very good and some things simply don't work. I have been attempting to work out how the app communicates with the system so that I can replicate the commands without the app. The app uses the Amazon AWS and using Fiddler to capture my phones traffic, I have found the HTTP GET requests that get the system's current status when the app starts up. The main request is a GET to 57uh36mbv1.execute-api.ap-southeast-2.amazonaws.com/api/loadsystemrunning?macAddressId=xxxxxxxxxxx along with an authorization key. I can successfully replicate this outside the app and get the result with the system info. However, I've hit a bit of a snag as when I use the app to change something on the system (for example turning it on or off), nothing shows up in Fiddler. I have HTTPS enabled in fiddler and the decrypt option is on. Does anyone know how I'm able to find what it's doing using Fiddler or otherwise? edit: I think I found it! Seems to be using mqtt - I'll have to do some reading, hopefully replicating this is not too hard.. image Thanks! [link] [comments] |
Very basic clustering question. Does anyone here know? Posted: 03 Oct 2020 07:14 PM PDT Gonna do this on google sheets or w/e else is simple Say you have a set of 5 items
You have many sets of items How do you make it that items that were more frequent / common within each set are shown as being closer together / more related? On a data viz preferably [link] [comments] |
Posted: 03 Oct 2020 03:20 PM PDT I have a program that uses the Vigenere Cipher to encrypt/decrypt text from the user by having them input a phrase and a keyword. The program uses a 2d array to act as the Vigenere cipher and has 2 functions findRow & findColumn to find the intersection of the text. I'm struggling to call these 2 functions into my main function correctly and output the encrypted text. what is the correct way to call these 2 functions? Example of my current output: When my goal output is: Here is part of my code(bit long due to my 2d array): [link] [comments] |
Posted: 03 Oct 2020 05:25 PM PDT Im making a chrome extension and it calculates how much money you have worth of robux but when it calculates your robux and a gamepass robux cost it changes how much it says you have Codehttps://pastebin.com/BANKH4J7 Example of what happens https://www.youtube.com/watch?v=ZCBn71UDqN8&ab_channel=JustDoomsStuff btw i am aware that my code may be inefficient or horrible, im still new to javascript [link] [comments] |
How much harder is a masters than the initial 4-year degree? Posted: 03 Oct 2020 06:23 AM PDT |
Are code-golf languages practical? Why is it based on the file size and not binary size? Posted: 03 Oct 2020 01:11 PM PDT Stumbled upon code golf but I honestly dont see the point in an unreadable 40 char program that probably produces a binary larger than that of a standard language or relies on libraries that are heavy on a target. I would also rather just not count white space against characters for the sake of readability in the comments. A C program that looks like i,l,n;f(n,m,s) isn't useful and the author is just going to write it normally and delete the spaces when submitting anyways. Arguably binary size is more important than a source file size and the two will usually coincide (obviously sometimes more text can result in a smaller binary). [link] [comments] |
A request for tips/critics/feedback on my small Python program Posted: 03 Oct 2020 02:53 PM PDT Hi all, I'm in the middle of the hiring process for a company I really like and they asked me to make a small Python exercise. The requirements are listed below this text. My question, does anyone have any tips, critics or feedback on the program?, I would love to hear anything I could improve before I hand in the project. I would appreciate any feedback a lot!! Requirements:
* I upgraded the program bit to not only use 2 cubic objects but to use as many as the user puts in, as a small extra. Edit: I created a repo on Github quickly since the code below isn't very readable on Reddit, it can be found here: https://github.com/Jimballoons/cubes/blob/main/cube.py Thank you!
[link] [comments] |
Posted: 03 Oct 2020 02:19 PM PDT Hello, I am fairly new to programming and have to do a project for class. I keep getting this error in visual studio "undefined reference to `InvestmentCalc::InvestmentCalc(float, float, float, int)'". When i put the function definitions in the .h or in the main.cpp file the code I have works perfectly, which is why I left out some of those details. here is my code in 3 files InvestmentCalc.h #Investment_Calc_H class InvestmentCalc { |
No comments:
Post a Comment