- I remember once hearing in a YT video from an ex-employee that Google's employee's use an internal system/intranet so advanced that it's 10 years in the future from what anyone is doing now. Does anyone know if that's true or can talk about it?
- How to find destination and origin using google maps api ?
- What to use for floppy disk project
- Make own programming language...
- Whats your favourite linux distribution and why?
- Third Dimension of Difficulty in Programming
- Why does my for loop stop iterating after one time?
- Mallicious-Community Server Issue [beginner authentication question]
- Transitioning from beginner C++ to advanced…
- How did programmers merge code and deal with multiple branches and merge conflicts before GIT and SVN?
- Looking for suggestions / ideas how to "index" PDF content
- How to automatically upload a new local video, to Youtube Channel Playlist's which has the same name as the video file?
- Can C be a plus for a php programmer?
- Security system using raspberry, django and react native
- [C/C++] What has been your best use of goto statement?
- MacOS activity monitor plugin
Posted: 26 Jun 2021 12:14 PM PDT |
How to find destination and origin using google maps api ? Posted: 26 Jun 2021 10:31 PM PDT I am building a bus transport information system. Main goal of this system is to provide information about current location, approximate arrival time to reach destination and the origin location. The origin and destination locations of bus route are pre defined and the bus is going back and forth in the same route everyday. I am currently using Distance Matrix API from Google Maps to get distance and arrival time between current location and destination. My problem is since the bus can be going back in the same route anytime, how to find which way is bus headed using gps coordinates ? [link] [comments] |
What to use for floppy disk project Posted: 26 Jun 2021 08:11 AM PDT I have a bunch of old floppy disks laying around and i want to use them to play music. My idea is to store a link of a playlist (ie spotify) on the disk and to have it start playing the moment the disk is inserted (i use a modern usb disk reader). I have some (read high school a few years ago) experience with programming but i don't know how to approach this. What language should i use? what should i know about? any help is apreciated [link] [comments] |
Make own programming language... Posted: 26 Jun 2021 12:42 PM PDT Hi, i have a question: can i made a programming language that compiles into bytecode that run on real hardware ( not vm). And not compiles into other languages like C/C++ etc. Can you give me links for tutorials,books, videos etc... Thanks. [link] [comments] |
Whats your favourite linux distribution and why? Posted: 26 Jun 2021 05:49 PM PDT |
Third Dimension of Difficulty in Programming Posted: 26 Jun 2021 09:01 AM PDT Hello all. I'm currently working as a frontend developer for a company remotely, lately making React Native apps. I have some issues not directly related to programming but affecting it. Sometimes I don't know how to behave but still go with the routine, so here it goes. In the job, I do tasks come from various channels (Trello, Google Chat, Slack, sometimes email). I quite enjoy while doing my work, taking tasks one by one feels like I'm making progress in Ravenholm. The thing that I need to report generally daily, but sometimes I have to report multiple times in a day. Generally I'm working extra to complete some tasks (remote workers hi). My problem is having to report this much, since most of the time these reportings take me away from work that I enjoy to commit. How should I behave about this micromanagement? I love showing how much progress I have made, and feel OK about daily reports, but especially these midday reports kills my mood to continue. We don't have any specialized managers, only boss and his assistant (who is working as HR, PM and offer maker). [link] [comments] |
Why does my for loop stop iterating after one time? Posted: 26 Jun 2021 10:03 AM PDT This is python 3 btw. When I do this: it outputs [4]. Why doesn't it continue with iterating? [link] [comments] |
Mallicious-Community Server Issue [beginner authentication question] Posted: 26 Jun 2021 12:39 PM PDT Say you got a game like, Steam or Minecraft (Steam isn't a game but I think ya get my point) the client sends over to the community server an auth token which it gets from the auth server, the community server asks the auth server if the auth token is correct, and if it is, it lets the client in. My issue is that the community server could log the token and use it to log in as that player on another server, I don't see that happening in steam or minecraft. Does anyone know how this can be solved? [link] [comments] |
Transitioning from beginner C++ to advanced… Posted: 26 Jun 2021 11:49 AM PDT So I'm trying to learn C++, I've completed multiple courses including code academy, your typical all in one 10 hour generic courses. Now from completing all of them, they have essentially covered the same exact content and no more… your typical Hello World!, loops, vectors, functions and if statements but they all don't seem to go any further. Now I'm learning this for a reason, specifically <Thelp32.h> although contents are completely on another level of skill, also going deeper into the rabbit hole guides become more vague which doesn't help much, as I believe the authors of the guides assume you have a given amount of experience. So my question is, what steps/ guides have you found helpful transitioning from beginner to advanced? If I was unclear about anything, please mention it. [link] [comments] |
Posted: 26 Jun 2021 11:30 AM PDT |
Looking for suggestions / ideas how to "index" PDF content Posted: 26 Jun 2021 06:42 AM PDT Index might not be the correct term, but here goes: I built a small recruitment site where developers upload their resumes in PDF format. The PDF gets uploaded to S3 but I also "import" it into Postgres as a text field (for full text search). Once a person submits their resume, they can select the tech skills they are most proficient with (e.g. JavaScript, Node.js, React). This is a join table between their Profile and the Skills table. Now, I'd like to skip this step and do the following:
Any ideas or suggestions are welcome. [link] [comments] |
Posted: 26 Jun 2021 08:19 AM PDT I would like to know how could I automate the video uploading process of a local video on my pc, to Youtube channel specific playlist (based on the name of the video file being uploaded). Example: videoSam.mp4 goes to Youtube playlist "Sam", while videoFrodo.mp4 goes to Youtube Playlist "Frodo". Is that possible? [link] [comments] |
Can C be a plus for a php programmer? Posted: 26 Jun 2021 02:24 AM PDT My first job was in C++, and I know a bit of c. I worked with posix api, I wrote parallel code. Not an expert by any margin, but not a stranger either. Should I delve deeper and learn about php extensions? I've heard that by writing some functions as extensions you can speed the things up. Also, the obvious state between requests. Would that be a worthwhile investment. Have you ever come across php extensions? Or maybe node extensions? [link] [comments] |
Security system using raspberry, django and react native Posted: 26 Jun 2021 02:09 AM PDT Hi guys, im trying to make a security system using django (backend), react native (frontend), (i want to have a mobile app as well so thats why im using RN), and a raspberry 3 with raspberry camera. I want to be able to rewatch the videos that it saved (right now i start the recoding with a get request, and stop it using a delete request. But im planning to add a movement sensor and switch it up to websocket so the frontend will know if there is a recording going on). The videos will be stored locally on the raspberry in folder on the Desktop. Is there a way to convert the video path into a url that can be sent to the frontend and make it watchable using for example react-native-video library. [link] [comments] |
[C/C++] What has been your best use of goto statement? Posted: 26 Jun 2021 01:12 AM PDT Using a goto statement has been criticised mostly for it's questionable need and loss of code readability. That said, what has been your most useful/inovative goto use to this day? [link] [comments] |
Posted: 26 Jun 2021 04:54 AM PDT Hey guys, I just had an idea for a macOS activity monitor program that would get the battery information like the amount of time remaining and time on battery which the activity monitor already calculates and display this as a movable object on the display without having the activity monitor open. I wanted advice on what language to use and most importantly, what would be the most efficient way of creating my desired program. Thank you for any help [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