Once a mathematician told me a project is possible on the condition that we got a language. Could you help me understand how we know when we do and when we don't? Like examples or whether an automated test can know what's a "language" and what isn't. Thanks
How to know what's a language?
158 Views Asked by Niklas Rosencrantz At
1
There are 1 best solutions below
Related Questions in THEORY
- What is the best nomenclature for a task that "only happens once" or a task that "repeats"?
- c++ dynamically declared array fails to work
- Finding least Common ancestor in Binary Tree with o(h^2) for a change
- Lower Bound (via testing) vs. Upper Bound (via proof) for Correctness
- Tensor networks vs. Neural networks
- Is the following approach correct to find "Longest Path In a Tree"?
- Standards/specifications for WYSIWYG text editor development
- What are ways a debug statement could "fix" bugs in a program?
- Is it theoretically possible to run software parallel to the OS?
- optimizing 3D in free roaming games
- How to find (a*b)%m for large a and b?
- Is performance of "less/greater than than" better than "less/greater than or equal to"
- Why does tail call optimization need an op code?
- Finding Bridges in a graph C++ (BOOST)?
- What are the good practices in layered programming?
Related Questions in LANGUAGE-THEORY
- Regular expression for strings that cointains a and an even number of b's
- How to call a structured language that cannot loop or a functional language that cannot return
- Building an OOP programming language from "Atoms"
- How to know what's a language?
- Is HTML a context-free language?
- Intersection of two Deterministic Finite Automata (DFA)
- Language Theory - Loop Invariants - Pre/Post Conditions
- Pumping lemma for CFL
- Reason for precedence of instanceof/is
- what exactly is a "register machine"?
- Good information about type systems based on contracts/constraints?
- Exactly what is the difference between a "closure" and a "block"?
- datatype programming
- Am I understanding Predicates correctly in regards to LINQ
- Why does Google claim that Javascript closures are dangerous?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It is hard to understand what (s)he might have meant without any context. However, my personal (and highly speculative) association to this is domain languages. Users of a specific domain have their own terminology and logic, which the analyst/programmer must understand and translate into code in order to develop a successful sw product. If the users and developers speak the same ubiquitous language, the project has good chances to succeed. If not, however, even if something gets "successfully" developed, it will not be very useful for the end users, thus the project is in fact a failure.
The fundamental book for this is Domain Driven Design.