What exactly is a framework with the most simple explanation possible? Ask Programming |
- What exactly is a framework with the most simple explanation possible?
- Does your employer monitor how much code you write?
- What are some of the open source software code to read for beginner?
- Extended Programming Sessions and Losing Words?
- Can you use a special character/symbol (such as a +) for a variable? (C++)
- Trigger Google Assistant from code?
- How do idle games not overflow once your score reaches a super high number?
- (UWP)[C#] Proper way to add Auto Suggest box to NavMenu?
- Interleaving with 8 bits?
- A good book/article API?
- Program not behaving correctly when launched from device, but behaving correctly when launched from SSH?
- can a go server and C client do a socket connection?
- is it possible to build a heap from an array that has variables that repeat themselves ?
- Ionic 4 with CRA
- [JavaScript] Tracking WhatsApp Online times
- Should I build in VBA or Python?
- Is it possible to port safari to android devices?
- Emacs 'no such file or directory' when I try to install an external package (org-bullets)
- Aren't HTML documents with JavaScript GUI apps in a way?
- How does it feels like working/developing in Windows/Linux vs Mac ?
- [WPF/C#] Help with printing only working when dubugging with Breakpoints
- Help With Scraping (Python)
- How do I practice programming?
What exactly is a framework with the most simple explanation possible? Posted: 17 Jan 2019 10:10 AM PST What is a framework?? Why is everyone talking about that Node.js? What is it? What is the .NET framework? I read that .NET is just libraries to make applications. But as soon as I read about Node.js and everyone was talking about it like it was a language, I got confused. It's a very basic question, but could you explain? [link] [comments] |
Does your employer monitor how much code you write? Posted: 17 Jan 2019 11:20 AM PST Does your manager/lead get a report of some sort every month with a score based on how many lines of code you wrote? I'm curious to see if this "scoring" is common place across the industry. To me it's pointless as you may have a sprint full of tasks dedicated to bug fixing when another dev might have ones to implement new features, so naturally you end up with a lower score. At which point you get questioned as to why it's lower compared to employee x, y or z [link] [comments] |
What are some of the open source software code to read for beginner? Posted: 17 Jan 2019 08:24 PM PST |
Extended Programming Sessions and Losing Words? Posted: 17 Jan 2019 08:09 PM PST I've been coding professionally for a few months now, and recently I've started to encounter a really annoying problem. It seems that after several hours programming, the English language starts to escape my grasp. Trying to have a discussion with my coworkers after three or four hours of writing code is a waste, as my ability to properly convey my thoughts into sensible words seems to fail me. My general perception seems to be affected almost as though I've had a bit of whiskey. Has anybody else experienced something like this? Is this kind of thing documented somewhere? Incidentally, I have no idea how to phrase my question to find any articles on this. [link] [comments] |
Can you use a special character/symbol (such as a +) for a variable? (C++) Posted: 17 Jan 2019 08:00 PM PST I'm fairly new to C++. So a little bit of context. I'm coding a program that calculates your GPA based on the user's inputs. Is there a line that will allow me to do something similar to "float A = 4.00;" but instead the variable has a special character attached to it, such as "B+", "A-", etc.. [link] [comments] |
Trigger Google Assistant from code? Posted: 17 Jan 2019 06:16 AM PST Hey everyone, I'm trying to set up a stat collection app in my lab, and to do this I'd love our Google Home to prompt whoever's in the lab to respond with the data (for instance, "Hey @employee, how many people are in the room right now") Right now it doesn't seem like there are any ways to do this, maybe routines, but I'd like to programatically determine when the prompt should happen (based on when the lab is open/other data I have online). Is there any way to call a Google Assistant to prompt from code? [link] [comments] |
How do idle games not overflow once your score reaches a super high number? Posted: 17 Jan 2019 01:11 PM PST |
(UWP)[C#] Proper way to add Auto Suggest box to NavMenu? Posted: 17 Jan 2019 03:28 PM PST I'm just starting to learn UWP and xaml. What is the proper way to add a AutoSuggestBox to the Side Navigation panel? (Sorry for the bad code formatting in advance, copy and paste wasn't great) My Main.xaml has an AutoSuggestArea that I have set to Visible </VisualStateGroup> <VisualStateGroup x:Name="AutoSuggestGroup"> <VisualState x:Name="AutoSuggestBoxVisible"/> <VisualState x:Name="AutoSuggestBoxCollapsed"> <VisualState.Setters> <Setter Target="AutoSuggestArea.Visibility" Value="Visible"/> </VisualState.Setters> </VisualState> </VisualStateGroup> and in the Grid for the AutoSuggestArea I have defined an AutoSuggestBox What I want is basically Identical Behaviour as the Groove Music app on Windows, where the Search bar disappears as the Nav View is closed or Minimized. (https://i.imgur.com/SUapMYq.png) Instead I get this [link] [comments] |
Posted: 17 Jan 2019 09:22 AM PST I'm learning how to use an image saving library in c, and a function to save an array of pixel data to a png specifies the parameter 'data' as a void pointer to the first pixel in the image. Easy enough, however it then specifies an int 'comp' parameter which defines the amount of components per pixel (1=Y, 2=YA, 3=RGB, 4=RGBA). It says in the docs that each pixel contains 'comp' number of channels of data stored interleaved with 8 bits. I am unsure what this means, how should I format 'data'? Should it be an array of floats with 4 floats per pixel (in the case of rgba)? What does interleaved mean in this context? I am a fairly novice c programmer, so I apologize if this question either doesnt make very much sense or is trivial [link] [comments] |
Posted: 17 Jan 2019 03:07 PM PST Hey there, I'm trying to search for a book/article API that gives me random sentences. Something like an excerpt from an Article or Book? I really can't seem to find anything worthwhile and the Google Book API doesn't seem to have what I want, or I can't find it, as it seems too focused on the book's information but not it's content. Also attempted the NYT API but for some reason the keys they keep giving me are invalid. [link] [comments] |
Posted: 17 Jan 2019 02:45 PM PST Hello. This is weird. I'm embarking in a new C adventure with EV3 (lego mindstorms) and this happened to me. I don't know why, but the program is not updating correctly. I transfer the source file, compile it via makefile (via SSH), and then run it. When doing so via SSH the program works as intended (in my case there's a 5 second delay I removed), but when launching the same program from the device the delay still lingers. It did the same for a different thing, but then I rebooted, retransferred the program and it fixed itself. Any clue as to why and how I can fix this? [link] [comments] |
can a go server and C client do a socket connection? Posted: 17 Jan 2019 01:35 PM PST I didn't write the server, just the client. When I have my go server running the C client connects but when the go server sends some data but the C client just receives "". Is there some way I should be encoding the data in the go server so that the client can receive it? I have the server source [link] [comments] |
is it possible to build a heap from an array that has variables that repeat themselves ? Posted: 17 Jan 2019 12:13 PM PST |
Posted: 17 Jan 2019 11:24 AM PST is it possible to create a hybrid app using Ionic 4 with React.js create-reatct-app? [link] [comments] |
[JavaScript] Tracking WhatsApp Online times Posted: 17 Jan 2019 04:23 AM PST Hey fellow programmers, I'm using the following JS Code to track if and when a contact has been online: (I found the code here). The code is working and it actually tracks if and when a person has been online, the only problem I have, that it only checks it once. I'm normally not a JavaScript guy, but to me the code looks good. Can anyone pinpoint the problem? Thanks in advance [link] [comments] |
Should I build in VBA or Python? Posted: 17 Jan 2019 09:59 AM PST Need to do some work with a few Excel docs. This is something that is currently done weekly. I can do either VBA or Python, but from first glance, VBA seems more difficult. Lots of manual getting data, saving it on temporary sheets, and feels quite manual. The alternative is Python and scraping existing Excel files to sqlite, and issuing commands. Issue being, only I have an anaconda install of Python. The input is 2 Excel files, lining up a name with true conditions, and using that name to search for data on Excel file 2. Output is a chart and some lines of data. Thoughts moving forward? Either are doable. [link] [comments] |
Is it possible to port safari to android devices? Posted: 17 Jan 2019 09:31 AM PST What programming languages would i need to know? I know C#, javascript, java and xaml (if that counts as a programming language), what languages would i need to learn? Would it even be possible? [link] [comments] |
Emacs 'no such file or directory' when I try to install an external package (org-bullets) Posted: 17 Jan 2019 09:05 AM PST I'm trying to install the org-bullets mode and after pasting the install code given in the GitHub's site in .emacs, and paste the .el file into the home directory, I get this result: Is this a problem with my load-path? What can I do? I'm maybe mislocating the file, where usually is? I started emacs with the Option --debug init with the bottom of this article in the wiki says and now I get this: [link] [comments] |
Aren't HTML documents with JavaScript GUI apps in a way? Posted: 17 Jan 2019 12:36 PM PST You can insert buttons, functions, textboxes, message-boxes and basically what a GUI program has in an HTML document. Wouldn't that make it a GUI app? Unless interactive HTML documents really are GUIs accessible from the web. [link] [comments] |
How does it feels like working/developing in Windows/Linux vs Mac ? Posted: 17 Jan 2019 07:12 AM PST I went into an interview where the guys of the company (the company uses Mac) asked me my OS, and i said that is Windows & Linux. They immediately said "Oh wait until you start using our's Mac to see an improvement on your efficency"... This got me curious because i shifted from android to IOS and i loved it so maybe the same could happen in Mac... Anyone that uses Mac and has experience in Windows or Linux? What are your thoughts? [link] [comments] |
[WPF/C#] Help with printing only working when dubugging with Breakpoints Posted: 17 Jan 2019 06:58 AM PST Hey, Im trying to Print a datagrid inside a stackpanel in my WPF application. if I try executing this code normally it only prints the column headers for my datagrid, but none of the actual data. If I add a breakpoint it works perfectly... Any suggestions would be appreciated [link] [comments] |
Posted: 16 Jan 2019 11:44 PM PST I'm just getting started with python and I thought it'd be cool to start making scrape scripts. Long story short, I'm currently having trouble. I want to download images from a page, then follow only specific links and then download the images on that page. [link] [comments] |
How do I practice programming? Posted: 17 Jan 2019 02:59 AM PST I have no inspiration so is there a site that has projects or ideas so I can make my own program with whatever language and approach I want to use? Ps I know programming but I'm asking for ideas/projects to do apply my knowledge [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