- Why are there people who are ok with just slapping any ol' code or library or program onto their product, disregarding any possible bloat or inefficiency, with a mindset of "if it works, it's good"?
- When would you recommend, "recreating the wheel?"
- Have I chosen the right language for my application?
- How to setup a proper relation between a managed application and its unmanaged dll payload?
- Math in programming
- Need help for an idea
- uploading js file on github host (jekyll)
- Since its considered bad design for program behavior to be mixed with user interface, and if we define user interface to include anything that can only be done by a Human but cant through programming, then manual instructions mix program behavior with user interface. Why isnt that bad design?
- How to download/locate file of links that don't right click and aren't in source? (Chrome)
- Does anyone know what you would do to a JSON file to make it look like this?
- This is a straight up "treat yo self" situation. I've been doing well with learning C++ and decided I'm going to reward my self for Christmas. What are some things that are useful or relevant to programming that programmers don't commonly think of?
- Visually or otherwise impaired programmers, what programming language features or tooling features help you or get in your way?
- Do companies volunteer their employees to the IETF in order to sway standards in their favor?
- MySQL connection using hostname instead of ipv4 address, leading to no access
- How would I implement a pronunciation comparison between user input and a native speaker?
- [Help] I need to build an sql database merging 1100+ excel files
- Best way to learn pointers? [C]
- Java terminal like Python IDLE?
- Mech. Eng here, I need help writing a simple while loop in MathCAD for a project at work
- Help me pick my senior project
- Winapi equivalent of UNIX stat.st_blksize?
- How would you go about trying to understand how this library works?
- What is the best free program for synchronizing two SQLite databases?
- Suggest me the best language & IDE to automate file names archiviation, comparison, management
Posted: 06 Dec 2019 02:44 PM PST I get it that you don't have to reinvent the wheel every time, as people have advanced the technology... but there are always people who will add bloated shit to their program just because. Personally, I would rather write the code myself, or at least read the code I am using and make sure I don't include unneccesary stuff or crappy third party sub-programs I don't need. The leaner and crisper, the better. [link] [comments] |
When would you recommend, "recreating the wheel?" Posted: 06 Dec 2019 05:35 AM PST |
Have I chosen the right language for my application? Posted: 06 Dec 2019 01:39 PM PST I'm currently developing a web application that will involve a number of android devices polling the server for updates that are managed from a CMS-like interface on the front end. I intend to create an MVP using Flask and then somewhere down the line refactor into Java for performance sake, however due to the lack of synchronicity in polling I'm not sure if just doing it all in Node would be the better option. Can anyone shed some light on this for me? Any help you can provide is appreciated! [link] [comments] |
How to setup a proper relation between a managed application and its unmanaged dll payload? Posted: 06 Dec 2019 08:43 PM PST I'm trying a solution, but I have a few issues when injecting the payload into a running process. My approach was hackish by setting a static default parameter in an export function of the dll for a callback to the managed application's console. I want to prevent loading the dll's entry point additional times, and I only have the dll's runtime base address to work with post injection instead of a process handle. I'm not sure if I'm able to get the handle from only the base to start calling my function... I don't really understand windows internals at a high level. If the base is only known at runtime, do I have to walk the dll to get the export function info? Besides using a nuget package for the injector, everything else is at my fingertips, so I should utilize what I know or can calculate beforehand. The other design flaw I have is that I have to inject first, so I can't debug the payload's initialization from the managed application unless I use messageboxes or a second console which seems silly when I also have a .net core Form launching. What's a better approach to command my static libraries from a managed .exe? [link] [comments] |
Posted: 06 Dec 2019 07:18 PM PST So, programming really interests me. I'm still learning and have recently joined a college course on software engineering. I have been trying to learn in my spare time but I'm having this problem that when I go to learn a language I quickly become demotivated due to me being pretty terrible at math. I'm really afraid that my poor ability to do maths will be the reason for me not to proceed in my dream career. Has anyone got any tips that can hopefully help with my problem? Thank you in advance. [link] [comments] |
Posted: 06 Dec 2019 12:29 PM PST My dog is very ill at the moment with severe arthritis, we are giving him strong painkillers so he is not in pain but when the pain gets too much, we will have to put him down, I would estimate that we have a month left, I want to code something to take my mind off of it and to also do it in his honor, the project has to involve dogs, any ideas? [link] [comments] |
uploading js file on github host (jekyll) Posted: 06 Dec 2019 05:01 PM PST https://github.com/YounseoRyu/typeracerclone_v3 the above is my repository. I'm trying to figure out how to have the source code work on the hosted domain, which is below. https://younseoryu.github.io/typeracerclone_v3/ I believe it's not working because index.html is not in the root file...? But the file is supposed to be inside the "frontend" folder, so i have no idea how to deal with it. Could anyone help me on it? :< [link] [comments] |
Posted: 06 Dec 2019 04:59 PM PST |
How to download/locate file of links that don't right click and aren't in source? (Chrome) Posted: 06 Dec 2019 04:21 PM PST Total noob question but I absolutely cannot find info on this online. The HTML source clearly has <a/> and ng-click on the icon but has some other dashboard.isadmin attached to the show excel link too. [link] [comments] |
Does anyone know what you would do to a JSON file to make it look like this? Posted: 06 Dec 2019 04:18 PM PST It is used in an android app and i am trying to get it back to some kind of readable format. I just don't know if this is some type of compression or encryption or if i am just using the wrong program to look at this. [link] [comments] |
Posted: 06 Dec 2019 04:14 PM PST Possible fields of interest: -Robotics Software Dev -Game Dev -App Dev -Having an any paying job Dev [link] [comments] |
Posted: 06 Dec 2019 11:46 AM PST Thought I'd ask it here, since this question was basically instantly dead on askreddit. [link] [comments] |
Do companies volunteer their employees to the IETF in order to sway standards in their favor? Posted: 06 Dec 2019 09:06 AM PST I'm currently learning more about the IETF, and — as it turns out — anyone can join or volunteer their time. I'm now wondering if companies order employees to affect Internet standards in some way to influence the success of their products/services. Does anyone know more about this or have examples? [link] [comments] |
MySQL connection using hostname instead of ipv4 address, leading to no access Posted: 06 Dec 2019 02:31 PM PST I recently began a new internship where we use the Laravel PHP framework. When trying to connect to the company's MySQL server, I can connect using the given credentials using a program such as MySQL Workbench because my ipv4 address is whitelisted. When using Laravel, it is using my hostname in the authentication** string, leading to a no access error and I am not sure how to change that. Does anyone know how to fix this? [link] [comments] |
How would I implement a pronunciation comparison between user input and a native speaker? Posted: 06 Dec 2019 01:06 PM PST |
[Help] I need to build an sql database merging 1100+ excel files Posted: 06 Dec 2019 07:48 AM PST Hi guys, newbie here. As the title states I need to merge a lot of Excel files into an sql database and I don't know what language I should use. It's important to let out the fact that I don't profoundly know any language so I need to study it before doing anything whatsoever. Excel files are standardized (I had to learn vba to correct those myself). Any opinion will be truly appreciated! [link] [comments] |
Best way to learn pointers? [C] Posted: 06 Dec 2019 08:39 AM PST Currently reviewing for an exam in C language. Struggling understanding pointers, any good videos or documents would greatly help! [link] [comments] |
Java terminal like Python IDLE? Posted: 06 Dec 2019 07:14 AM PST I have been coding in Python for some time now and I have noticed that Python IDLE was very useful to run python commands and test a line of code individually. Is there something that is sort of the same for java? [link] [comments] |
Mech. Eng here, I need help writing a simple while loop in MathCAD for a project at work Posted: 06 Dec 2019 06:54 AM PST Hello, I'm hoping I could get some help on a little project I'm working on, it would be very much appreciated. I understand MathCAD might not be the best software for programming anything in, but it's what I have to work with because its our only license.
So in short my goal is to find the combination of A and Dp that results in an Apercent of at least 100 If I get this to work it will automate a huge portion of my job and it would be amazing, so needless to say I'd be very grateful [link] [comments] |
Help me pick my senior project Posted: 06 Dec 2019 06:43 AM PST Hello! I am a final year computer science major and I have to pick a topic to develop my senior project. I have full control on the topic and technologies used, however, the "important" functionality cannot be done with a library/framework, it has to be done by me. For instance, if I am doing deep learning on python as the basis of my project, it has to be done by hand and I am forbidden to use something like tensorflow. However, libraries are permitted for "secondary" features. When I asked for more specific details, the answer was somewhat vague. Basically, "it cannot be easy". So something like a webapp that is basically a skin on a database is forbidden. Examples given of appropriate technologies to tackle were "machine learning, deep learning, neural networks, and others". I am brainstorming ideas and I have come up with a few, mostly related to time series forecasting. But, I would like to hear your ideas too. Is there something cool that comes off the top of your head. Maybe something useful you'd like to have, preferably including some "complex" base functionality. Thank you, I appreciate it! [link] [comments] |
Winapi equivalent of UNIX stat.st_blksize? Posted: 06 Dec 2019 06:24 AM PST I've spent a while trying to find the right winapi combinations to get appropriate blocksize info from a file, ended up with GetFileInformationByHandleEx with a FILE_STORAGE_INFO struct. This is mostly just a for fun exercise, but it's slowly driving me insane with how it pulls me in over and over and then hours later I still have nothing. The problem is that FSI.PhysicalBytesPerSectorForPerformance has a fluctuating value around 4,200,562 bytes, and FSI.LogicalBytesPerSector sits at UINT32_MAX bytes, which are both very big (~4MB and ~4GB). The exact values have change with each run, but they remain pretty big. When I use GetDiskFreeSpaceW (something I discovered on a previous expedition), I get 512 bytes for BytesPerSector of the current volume, which is what I expected to get, however GDFSW takes a path (or NULL for the current directory) and I want to determine the BPS relative to the file's drive ("H:", for example) rather than a string or the current drive (probably "C:") Am I missing a distinction between volume and drive (and/or disk), or what a sector is? Is there a way to achieve the end goal without being extremely finnicky and fragile? Test file: https://pastebin.com/5gYiE4gg [link] [comments] |
How would you go about trying to understand how this library works? Posted: 06 Dec 2019 05:34 AM PST The library: https://github.com/acornjs/acorn My approach for learning is to jump into a piece of code and try to understand it, in the process, learning new grammar, syntaxes, and techniques. This approach worked for smaller pieces of code, but with something this big, the complexity and interactions are kind of overwhelming and I'm not sure where to start. [link] [comments] |
What is the best free program for synchronizing two SQLite databases? Posted: 06 Dec 2019 05:20 AM PST |
Suggest me the best language & IDE to automate file names archiviation, comparison, management Posted: 06 Dec 2019 01:11 AM PST Hello, I'd like to write a program that can do the following things in Windows 7 Which programming language (and IDE) do you recommend to do it for a non-expert programmer looking to code such a program for himself? Should it be Python or Java or something else? [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