Is it just me or are full time scrum masters simply professional Facebook browsers? Ask Programming |
- Is it just me or are full time scrum masters simply professional Facebook browsers?
- Derived classes implementing the behavior
- C++ Learning: Program that should output if doubles ( a - b == .01 ) only works with inputs 0, .01 , .02
- Javascript data accessing?
- Organize C++ classes around SQL database
- What is the point behind undefined behavior?
- Android app architecture advice
- What does 'a sync' mean when talking about user flow?
- Can anyone explain why we don't need to reload 'head' if the cas operation fails for a lock-free stack push?
- How to use required on Angular.
- What is your own unique 'hello world' program you use when learning a new language?
- What coding languages / topics do I need to learn create an online math game?
- dHash Optimization
- anyone know why i keep getting synthax errors on my if statiments
- Quad core macbook necessary?
- Finding a top tier software developer/devopment team
- Should I worry about "the best way" to make a program, or just write it?
- Using C# .Net Gmail API, Why can i not print number of email in inbox?
- How can I create a self authenticating link (Django)?
- How long does it take you to build a web app?
- Partner to learn java.
- How to?
- Anyone have experience with Google Maps API?
- bash scripts to add functionality to newsboat
Is it just me or are full time scrum masters simply professional Facebook browsers? Posted: 26 Feb 2019 09:00 AM PST I've never met one who I felt contributed enough to justify their position. [link] [comments] |
Derived classes implementing the behavior Posted: 26 Feb 2019 03:01 PM PST In my shop we have a strong desire to abstract out what i'll call the "prime object model", that is the object model without any behavior. It is just pure data, relationships, etc, but no behavior. Often we take these objects and give them to services to do something. For example, if Customer only had the data, we might do something like, RententionProgram.Process(thisCustomer). The service then looks at the customer and figures out what to do. It got me thinking, what if in each domain, you inherit this base model, then provide the functionality around it. So customer service gets a Customer data model, inherits it and provides the functionality (and interfaces) needed for its domain, and Tech support can inherit from it as well and provide its own domain level behavior. Customer in sales might have different functions than a Customer in the Retention domain, and yet different functions in the tech support domain. Typically we use mappers to be between these. What are the pitfalls of inheriting your data model and providing domain specific behavior? [link] [comments] |
Posted: 26 Feb 2019 09:24 PM PST Hello, I've been trying to teach myself programming from the Stroustrup C++ book. So far the assignment I'm working on has made me write a program that has a while loop that asks for 2 doubles then prints them, writes out the smaller input and larger input, writes if the inputs are equal, and writes if they are within .01 of each other. I've written a program that does all of that, but the last part that prints if they are within .01 of each other only works if that condition is true with inputs between -.02 and .02. For example if I enter 0 and .01 it will be true, but if I enter .03 and .02 it will not write that they are within .01 of each other even though this condition is true. If someone could please explain where I made a mistake in my code it would be very appreciated! [link] [comments] |
Posted: 26 Feb 2019 05:11 PM PST I'm trying to access some of this data for use in a data visualization using D3 but am having trouble with the return type. I can summarize what I'm trying to do below, or I can send you a link to a fiddle if you'd like. My goal is to be able to access the csv files as a variable, such that if I want the first element, I use x[0]; Can someone help me out, it'd be really appreciated! [link] [comments] |
Organize C++ classes around SQL database Posted: 26 Feb 2019 08:53 PM PST Those who wrote web apps using C# or Java are familiar with the concept of Entity Class - Entity Framework is a perfect example. I'm writing a web app using C++ and I wonder if having such classes would be worth it. I found an opinion and the guy recommends using Stored Procedures approach with no entity classes:
How would you go about this? [link] [comments] |
What is the point behind undefined behavior? Posted: 26 Feb 2019 04:19 PM PST I am coding since 2007 and do it professional since 2010. But I could never wrap my head around the purpose of undefined behavior in C and C++. Can someone explain it or recommend a good blog article on the why? [link] [comments] |
Android app architecture advice Posted: 26 Feb 2019 07:55 PM PST Hi! I'm a still a green horn programmer, but I have been working as a developer for a software company getting me sea legs for about two years now. I mainly work in a .NET WPF XAML Entity Factory code base. We use the MVVM pattern with SQL db's for the apps crud. I'm now feeling confident enough (and motivated enough) to take on my own project. I'm creating a mobile rpg type game that's strictly UI based with the exception of images for in game items (weapons, character avatar etc). I feel like Xamarin.Android is what I should be using, but I have some stipulations and need some feedback.
[link] [comments] |
What does 'a sync' mean when talking about user flow? Posted: 26 Feb 2019 06:20 PM PST A job I applied to asked some questions. One of them is:
I have no idea what 'a sync' is in this context [link] [comments] |
Posted: 26 Feb 2019 11:50 AM PST I am reading page 185 of Concurrency in Action by Anthony Williams where he introduces the push function for a lock-free stack. I am trying to reason about various total orderings to make sense of what would happen. I construct an empty Thread 1 allocates heap memory pointed to by new_node and copies data_packet_a to this heap location. Thread 2 allocates heap memory pointed to by new_node and copies data_packet_b to this heap location. Thread 1 copies the pointer value at head to the stack's new_node->next. Thread 2 copies the pointer value at head to the stack's new_node->next. (i.e. does nothing). Thread 1 compares the value of the pointer in stack's new_node->next and the pointer value in head, finds they're equal (durh) and sets head's pointer value to new_node's pointer value. Thread 2 compares the value of the pointer in stack's new_node->next and the, now different, pointer value head, finds they are not equal, and loops forever. Thread 2 is now in an infinite loop, with head and new_node->next holding different values, [link] [comments] |
How to use required on Angular. Posted: 26 Feb 2019 02:57 PM PST Hello community. What is the correct way to use an angular node module? I'm a novice using node, I've been experimenting with Electron and now I want to use it together with Angular. In electron I used a module as follows:
Now I want to do this from angle, when I do it I get the message «'require' call may be converted to an import.ts(80005)», I have tried:
And it returns the message «Could not find a declaration file for module 'node_modules/default-gateway'. './node_modules/default-gateway/index.js' implicitly has an 'any' type. Try What's the right way to do it? [link] [comments] |
What is your own unique 'hello world' program you use when learning a new language? Posted: 26 Feb 2019 02:50 PM PST When you are trying to grasp a language or framework, what is your unique way of doing so? For example, I always pull a get request from a Chuck Norris joke API, and output the joke only. This let's me learn how the language/framework handles get requests and Json handling, which I enjoy working with regularly. What about you? [link] [comments] |
What coding languages / topics do I need to learn create an online math game? Posted: 26 Feb 2019 02:25 PM PST For example: https://www.coolmathgames.com/0-sum-links-2 [link] [comments] |
Posted: 26 Feb 2019 02:19 PM PST So I have a question regarding dHash. Like the one used here There are a couple different flavors of dHash. The typical setup is to crunch the image down to 8x8 and take the difference across the x axis. This produces a 64bit hash. You can also do the same thing but also go along the y axis and concatenate the two for a 128bit hash. Even further, you can go back to just doing the x axis but only shrink the image to 16x16 and end up with a 128bit hash. So my question, in general because I know a lot of things factor into it: Would I get better results (less false positives) from doing both row and column hashing on a 8x8, or just one direction on a 16x16? I know one answer is "Why not both?" but this is more of a hypothetical question. What do you think? [link] [comments] |
anyone know why i keep getting synthax errors on my if statiments Posted: 26 Feb 2019 02:17 PM PST if choise == "a" if choise == "B" if choise == "C" if choise == "D"elif else: [link] [comments] |
Posted: 26 Feb 2019 09:54 AM PST I am looking to get a new laptop soon, probably a mac. My current laptop is old, slow, and generally awful. I'm looking at getting a new macbook over a pc simply for preference - I am aware I could get a windows or linux machine cheaper. I am also aware that I could get a used or older mac but would prefer to go for new as I think it would be an OK investment as these laptops last forever. I would primarily use it for web design, general programming, and web browsing, possibly gaming. I own a desktop pc that can handle more expensive computing for machine learning, gpu intensive video games, etc.
Thanks! [link] [comments] |
Finding a top tier software developer/devopment team Posted: 26 Feb 2019 06:06 AM PST I was looking for some pointers on where to find excellent quality freelance software developers, or development teams. I have a fair bit of experience programming, but only in python and almost entirely 'front-end', and what I want to create will certainly need the use of servers (of which I have almost no knowledge), and SQL. I've looked online at a few freelance websites and talked with a few people, but none of the candidates' portfolios were satisfactory. I feel that the success of the project will directly hinge on the quality of the user interface and the smooth running of the back-end software, so it is incredibly important that I hire someone I can trust to deliver this. Where can I find top level developers? How much would this level of programmer cost for what I have had estimated to me as a 3 month project (for one person)? Any advice would be greatly appreciated. [link] [comments] |
Should I worry about "the best way" to make a program, or just write it? Posted: 26 Feb 2019 01:35 PM PST Hello there, i've been piddling with programming for over 10 years now - and i've found love with python, and naturally... i'm trying to learn Django. I find myself trying to improve my code execution way before I have anything resembling a working app - and i noticed this pattern in my programming hobby.... I know there are best practices in programming. However, lets say i wanted to make a quick function or even a full program... would it be best to write and optimize and plan features before they are needed in the code (what i do currently), or should i worry about having a working concept before i go through and then add in flair, extra features, and optimization? [link] [comments] |
Using C# .Net Gmail API, Why can i not print number of email in inbox? Posted: 26 Feb 2019 12:14 PM PST Im experimenting with the gmail api in C#. My code looks like this: It returns Google.Apis.Gmail.v1.Data.Message, 100 times. I understand that there are apperently 100 message in messages, but why? Im so confused. For the record i currently have 1100 mails in my inbox. [link] [comments] |
How can I create a self authenticating link (Django)? Posted: 26 Feb 2019 11:27 AM PST I want something like http://www.mysite.de/login/authkey or http://www.mysite.de/username:password to automatically login the user with a link. I found "django-autologin" but without documentation and "django-sesame" but that doesnt work.. Is there a simple solution? [link] [comments] |
How long does it take you to build a web app? Posted: 26 Feb 2019 10:41 AM PST I've been told that I am a "slow" programmer. I think I'm methodical, but compared to other people, I'm slow. If you're more junior, try to answer as well about the type of quality you typically deliver. If you're more senior, can you articulate if you feel slower than others who are more junior and how you've grown/developed yourself as a result? Simply answer with how many years experience and how long it might take you to build a simple app with one or two entities, and CRUD on one of those entities. What do you do to speed up your process? How do you do quality control checks? How often do you take breaks? How many lines do you write in a day? [link] [comments] |
Posted: 26 Feb 2019 10:10 AM PST We can start with the basic or jump straight into whatever looking to start asap [link] [comments] |
Posted: 26 Feb 2019 09:10 AM PST How can you copy text from Facebook Messages or Direct messages and put them in a text file [link] [comments] |
Anyone have experience with Google Maps API? Posted: 25 Feb 2019 10:57 PM PST I was wondering if it would let me pull the following variables and do the following functions, either directly or indirectly, I don't need someone to do the work for me, just wondering if these are even possible to return so I can rule out the API if it won't work for me. Variables: Travel time between two points on a map Travel time between two points on a map taking into account current traffic Travel time between two points on a map taking into account historical traffic Speed limit of road at a given address/intersection Functions: Generate list of all addresses (or simply return a random one) in a given village/township/city/county Generate list of all intersections (or simply return a random one) in a given village/township/city/county [link] [comments] |
bash scripts to add functionality to newsboat Posted: 26 Feb 2019 07:31 AM PST hi all, i started using newsboat/podboat as my podcatcher. it's great, very easy to use and very powerful--however, i'm missing two functions that are important for my "work" flow. i know that both functions can be accomplished with a bash script, but i'm still a novice linux user and this represents my first foray into writing a script that does more than simply execute a program. unfortunately i don't have the time to simply start learning bash from the ground up, so i'm looking for some suggestions on how to get started writing the two scripts i need. the first script i need: podboat is set up to download files into a ~/Podcasts subdirectory for each podcast. however, a lot of shows name their files in abbreviated, unhelpful ways; others give their files long, random strings of characters. i want to be able to look at the contents of a directory and see which episode each file is, without needing to ffprobe and read the metadata, or cross-reference the date. so i want a script that will automatically rename newly downloaded files according to a consistent format--maybe episode title and date. i think the easy solution is to have the script read the metadata and rename the file with certain fields; however, not every show writes their metadata?! the more complex solution that, with my limited knowledge i don't really know how to do, would be to get the episode title right from newsboat itself, to make sure this is written to the metadata, and then write this to the filename. the second script i'm looking for is simply one that will remove the oldest file in a directory when the number of files reaches a certain threshold. i only want to keep 3 files in each show's folder, and don't want to be manually removing files. thanks in advance for your help. i can't be the only person who uses newsboat for podcasts, and who is unsatisfied with how podcasters name their files. even though it's quite "niche," i feel like someone has probably already come up with a solution to this problem; or, there is a solution from some other thing that can be easily retrofitted. [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