Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I just had an idea that might explain why this happens.

Firstly, I've observed a phenomenon when I talk to a programmer about a problem I want to solve. They might get excited, learn a bit of the problem domain and then go off and build something that kind of solves part of my problem. But then I'm stuck in a endless cycle of explaining the rest of the problem, to someone who isn't really interested, then waiting for a new iteration and then evaluating how it doesn't completely the solve the problem until the programmer gets bored and goes off to find something new and exciting to do with computers. Programming the computerwas always the end for them. They don't actually care about the problem. I care about the problem. So for me computers are a tool to solve my problem. I might as well write the program myself because it's less work to become a mediocre programmer than to intimately understand the problem.

My theory is that something like this happens in interface design. There are designers who love to create beautiful designs, and we love that, but beauty is the end of it for them. They don't actually care about the problem that the program (website, app, whatever) is supposed to solve. If they were stuck in a job filling out forms all day they would quickly learn the lesson to put the reset button out of the way. If they were intimately familiar with the problem, the better design would be obvious. And so it is that people with no "design skills" can point out the obvious mistakes of the designers.

It's also true that good design is hard. Starting with a blank sheet and creating something, let alone something good, is daunting. Perhaps the hardest part is having the humility to admit, "I don't understand the problem sufficiently" and the empathy to care about the problem enough to learn it well.



This is why in so many problem domains, especially outside technical problems for IT people, proprietary software is the only option, or the only complete option. The best way to ensure people pay close attention to those last areas of fit and finish, and make sure they get attention from people with the different sets of skills needed to do a good job in all of those areas, is to pay them. That means you need a really solid revenue stream, and initially need enough capital up front to get the project going.

I know, there are open source business models which work for some companies and that's true but generally in the sorts of technical problems for IT people. Compared to the IT industry as a whole those are edge cases. They seem more important to us embedded in the IT industry, but compared to the overall multi-trillion dollar global IT industry they're peanuts.


There's a third category: "enterprise" software, where the people doing the purchasing are completely disconnected from the people using it and the developers. This results in appalling UI disasters like Lotus Notes.


There used to be meme among my friends that we’d express how much a piece of enterprise software sucked by how expensive we thought it cost. For example, “Wow, this sucks. This must cost $500k a year.”

It was scary how close we got to some published prices.


This is why most linux distros have interfaces that are missing minor features and can be frustrating for users who don't have command line experience. For example, why can't I easily make a shortcut in ubuntu? Or how about the fact that you can't get full file paths shown in the default file manager, I often know what directory I want to get to but have to figure out what maze of folders I have to go through to get there.


> Or how about the fact that you can't get full file paths shown in the default file manager, I often know what directory I want to get to but have to figure out what maze of files I have to go through to get there.

Did you mean MacOS?


Seems unlikely, given that in MacOS you could e.g.:

- Drag and drop the file into a terminal to insert the path

- Copy and paste the file into the terminal, which inserts the path

- Press Command+I to show a popover describing the path to the file

- Enable the "show path bar" option in the Finder's "view" menu, which will show a nice graphical representation of the path to the current location at the bottom of the window (which lets you copy the POSIX path to each item)

- For more advanced users, run the command `defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES` to show the full path to the current folder in each Finder window title


On linux side:

- Drag and drop the file into a terminal to insert the path

- Copy and paste the file into the terminal, which inserts the path

- Press Alt + Enter to see details describing the path to the file

- Press Ctrl+L to see full path. Or just use better file manager like Nemo


Also in the same ballpark, you can right-click on the window title and see a dropdown with the parent directories. Which primarily lets you navigate to them.

Ah, and also if you alt-rightclick on an item, you can copy its path to the clipboard. Or you can open the ‘Edit’ menu with alt pressed and copy the path to the current folder. Apparently there's even a shortcut for this.


> defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES

THANK YOU!


Here's one more:

- use columns view


MacOS has been a pain for me with this; in some of the later revisions it's always a pain to get around to the right place. I don't spend time learning Mac in depth; I'm mostly a Unix person, using a Mac as just a terminal to the stuff I actually deal with (which mostly is web based or run on a datacenter somewhere.)

It's certainly fine if you work a lot locally with the Mac; but for me, the cost-effective thing has been to fumble around each time (since I only do this a few times a year) rather than memorize handling that I use so seldom.


The parent comment was complaining about that being impossible in Linux before the conversation switched to Mac. Which is it?

Also, nothing to memorize about copy & paste or drag & drop. I would say you’re used to Linux GUIs not doing what you expect so the obvious solutions aren’t even considered.


Where did Linux enter into it? I just don't typically use GUIs much, and I use the Mac GUI much more than I use Linux GUIs. But I've used command lines since I started with computers (before GUIs were common.)


Dragging a file from a file-browsing application into a different application (like the terminal) just to get the path is unintuitive and not obvious.

Showing the Finder path bar is the more obvious option. Nautilus, the file browser on some Linux distros, supports this as well.


Dolphin, in KDE land, has this functionality as well.


Not any application, the operation is “convert this thing i am dragging into text” for which the result is obvious.


> Also, nothing to memorize about copy & paste or drag & drop.

To a terminal. I thought Linux was the one where you needed to open a terminal to do basic things, yet from my experience it's usually MacOS that needs a terminal for such basic things as turning off mouse acceleration.


Windows also has a similar problem: The URL might not actually have the "true" path. It's so infuriating each time I try to get the path to my Downloads folder on Windows, and end up getting "This PC\Downloads". Please. I'm a grown up. Give me the real damn path...

Seriously, Linux has a lot of UX issues, but hiding the full path of files is a problem that plagues literally every single OS file manager. It seems that at some point, all the major OS makers agreed that users are too stupid to understand a file hierarchy, and came up with tricks to hide it.


> It seems that at some point, all the major OS makers agreed that users are too stupid to understand a file hierarchy, and came up with tricks to hide it.

And this is why I find myself mostly in the text shell.

Were I to go graphical the minimum I want is a simple address bar that I can override the current path with a specified path at will.

Maybe a tree view like in Windows 95 Explorer just to pretty things up. Some of the modern comforts like thumbnail images would also be welcome.

I wish they would stop insulting their users who have taken the time to understand the underlying technicalities of a file system. All this should be user-configurable in a good file manager. SpaceFM and PcmanFM come closest to what I've specified.


Hm. Cater to the 1% who have shown that they're able to learn complex concepts easily, or support the 99% who would rather not think about internals and use a computer as a simple tool.

That's not a difficult question. The only time it makes sense to expose the internals is if you build a specialist tool for people who like internals exposed.

This means that no, it shouldn't be "user configurable" either. You don't want a combinatorial explosion of states in your UI for a tiny set of users in the general purpose case, and you don't want to create a honking fat tool for specialists who'll only use the specialist path.

The computer industry is discovering what the mechanical tools industry has known for a while: You can build a general purpose tool that's simple & straightforward, or you can make a specialist tool.

Pretty much any specialist will be slightly unhappy with the specialist tool and modify it to their own requirements, but you can't build a specialist tool that makes even close to all specialists happy. The specialists will also continue to use the generalist tool if it gets the job done, but they'll complain every step of the way.


Being able to see the path in Finder doesn't seem like something that only 1% of users would want, though. I've seen "normal people" get very frustrated because they couldn't figure out where they saved a file. They saved it in a folder called "Documents", but they then tried to find it in a different folder also called "Documents". Hardly seems problematic to show the path to the folder.


> "This PC\Downloads"

I find this annoying as well, but it only happens when you use quick access shortcuts. And then once you're in a sub folder it'll display the full path in the title bar provided you turn on "Display the full path in the title bar" in the Folder Options.

Navigating directly to c:\Users\MyUser\Downloads will also show the full path in the title bar.

It seems some of these shortcuts have "special" behaviours in explorer.


According to https://superuser.com/questions/1362386/always-show-absolute... Windows does not mess up the path (yet) if it is a UNC path of the format \\Computer-Name\Users\MyUser so you can pin these folders to Quick Access to benefit from bookmarking folders while keeping the ability to copy folder paths easily.


Thanks for that.


After reading r/talesfromtechsupport for a while, it's apparent that there are quite a few people who are too stupid to understand a file hierarchy.


My most-used MacOS shortcuts for navigation:

Terminal -> Finder:

    open .
Finder -> Terminal:

I made a Bash function:

    function cdf {
        DIR=$(osascript -e 'tell app "Finder" to POSIX path of (insertion location as alias)')
        cd "$DIR"
    }


View/Show Path Bar.


> Did you mean MacOS?

In macos I don't have to edit random .conf files in system/application directories just to make my wifi work correctly. The graphical UI is configurable enough that I rarely need to modify anything outside of my normal user directories.

Where as in ubuntu the forums/stack overflow usually say "go to this file at /sys/whatever and write in this". Hence the need for full file paths.


Really, don't you?

The first thing I do on any Mac is to drop into Terminal to run this:

    defaults delete com.apple.systempreferences AttentionPrefBundleIDs
And don't get me started on the wiping `/private/var/db/mds/messages/${UID}/se_SecurityMessages` after each update, without which SMB doesn't work.


Oh really? MacOS is fine when things works, but when they don't it's pretty much the same as linux, for better or for worse.

Quick example, because I'm trying to make my nas usable on a mac and it's given me a headache.

https://support.apple.com/en-us/HT208209


On your NAS, put /.DS_Store/ into veto criteria.


I mean, I just learned that to show the path in the title of the Finder window I need to run:

    defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES


Please tell me how to turn off mouse acceleration in MacOS without opening a terminal, because I didn't find another way.

It's quite a basic thing, most games include it in their settings yet it doesn't seem important enough to have a setting in the OS itself.


At least in KDE's default file manager, if you click on the right of the "prettied up" location view, it gives you a plain old text-based path field.


And in most KDE and Gnome file explorers and open/save dialogs, Ctrl+L shows the whole path in plain text.


Same thing in GNOME files if you press ctrl+l. Just like you would to get to Firefox's URL.


Uh.. I get to Firefox's URL by clicking on the address field.


Ctrl+L works on Chrome, Firefox, Safari and Windows Explorer FYI


Okay?


I just mean it's a seemingly ubiquitous hotkey so you may find it useful to memorize it


Right, and I mean there's no way to discover that hotkey if you don't already know it, which is why requiring it for a common UI function is bad design.


> Right, and I mean there's no way to discover that hotkey if you don't already know it

True of any hotkey.

> which is why requiring it for a common UI function is bad design.

it isn't required.


So how do you get the path field in the Gnome file dialog without ctrl-L?


Pretty sure it's a setting in gnome-tweaks. If it's not, it's not any harder than MacOS at least.


Well, to be fair it is entirely optional.


>why can't I easily make a shortcut in ubuntu?

Blame GNOME 3. After a decade it's still lacking polish everywhere. The day Canonical decided to drop the ball on Unity was a sad day.


I think the things you are complaining about are more personal preferences and being accustomed to Mac / Windows system.

> why can't I easily make a shortcut in ubuntu? > how about the fact that you can't get full file paths shown in the default file manager,

Is it any worse than needing to find the setting to display file extension in windows?

I am on Cinnamon desktop as it's a bit old school and predictable (for people who have been around since windows 98). I right click a file and I have an option to create a link. And my default file manager shows the full file path in the address bar . So I don't think it's a Linux problem rather than a Gnome 3 problem. But I am sure plenty of people don't mind Gnome 3 (everyone else at my work used the standard Ubuntu desktop.


When you opened an issue on the respective but trackers what did they answer?


Thank you for posting this, a thousand times. It really clearly illuminates precisely why in open source the interests of the user and the developer are fundamentally differently aligned than in commercial software. Not miss-aligned necessarily, but differently aligned.

In open source the developer has the power, they get to decide what they work on and nobody can tell them otherwise. The best a user can do is post a begging letter in a bug tracker. It doesn't matter what the user thinks, even a majority of users, all they can do is ask.

In commercial software it's the user putting bread on the developer's table. The user feeds and clothes the developer's children, and/or pays for their supply of mountain dew. If the user wants something, bye and large they get it, or at least they have a pretty solid chance of it more often than not. A vote for a feature speaks a lot more convincingly when it's backed up by a wallet.

There's nothing wrong with open source or free and libre software. It's great, I love it, but a lot of it's proponents seem to think proprietary software is some sort of crime and genuinely don't understand why proprietary software dominates so completely in so many domains outside of IT infrastructure.


If you don't have the skills to make the open-source changes you want yourself, but you have the money to make it happen, there is nothing stopping you hiring a developer to build the patch that you need. I don't know of a reliable way to do that with proprietary software.


> there is nothing stopping you hiring a developer to build the patch that you need

unless it's accepted upstream, you've got an ongoing maintenance problem on your hands. getting an idea in isn't always just about time/resources/money. if your idea doesn't fit their 'vision', it won't be accepted, regardless of how much you have funded your feature. do you now take on maintaining a fork? sometimes the answer might be 'yes', but I suspect in most cases it's going to be 'no'.


I've worked for two ISVs who's business model was partly based on exactly this. Their customers would directly fund the development of custom features they needed. The first company developed cellular radio network planning software, the other developed business middleware.


And the decade-plus-old bugs I've filed on Google's various tools say what?

(I've given up either reporting bugs or, where at all possible, using their software, as it's abundantly clear my interests and theirs are not in the least aligned.)


How much did you pay Google? Thanks for lending support to my argument that paying for software is the best way to ensure the user and developer's interests are aligned.


You were specifically contrasting open-source and proprietary (commercial) software.

The Google model dominates the proprietary world presently, and even long-term shrinkwrap / clickwrap vendors such as Microsoft are shifting in whole or part to advertising-supported software.

What I pay for Google software is indirect, but given a roughly $100 billion global spend on online advertising, allocated largely among the world's richest 1 billion people, that amounts to about $100/year for the privilege of tools which frustrate rather than delight me.

As I've described in "The Tyranny of the Minimum Viable User", odds are strong that mass-market software of any stripe, including proprietary whether paid, subscription, or advertising-supported, will fail to address power-user / elite-user interests:

https://old.reddit.com/r/dredmorbius/comments/69wk8y/the_tyr...


Some people pay for Google apps on a custom domain ($12/month exactly), but I don't expect Google to even answer the phone since that's small change for you.

At a certain scale (much smaller than Google's, probably already at about 100 customers) it's impossible to please _all_ users of your software, so you try to please the majority. And whatever you change, there will always be that 'one guy' whose workflow will break.


Even if you pay annual maintenance fee with 4 or 5 zeros at the end, your bugs are going to be ignored, especially if they are feature requests.

If they are critical bugs, they might or might not be addressed.


Good luck convincing a commercial software developer to apply the changes you want. It's rare that a company, commercial or not, changes software because of what customers want (marketing department koolaid doesn't apply).

Developers know best, even when they don't, because they're the ones doing the actual work. But in the FOSS ecosystem you have: i) the freedom to do the changes yourself ii) the freedom to offer help with design, documentation, ideas iii) a public bug tracking and issues manager

Let me know when you can do this commercially.

On a tangent: it is indeed a crime to use commercial software when there are libre alternatives; every use moves the needle one tick deeper towards Eternal September


> Developers know best, even when they don't, because they're the ones doing the actual work.

For me, a large part of the fun of being a developer is enabling others to do stuff they otherwise couldn't. As such we absolutely entertain feature requests and similar, and implement a lot of them.

When sales come back from a sales presentation laughing and telling of jaws hitting the floor, it's almost always due to features that started as a suggestion from one of our users.

Very often though the feature requests are trying to solve XY problems. Often there's a better route to achieving what the user wants, which almost always is some way of avoiding redundant work or other workflow simplifications.

Us devs often do know best when it comes to edge cases and limitations, and about other use-cases that this particular user haven't considered.

However most requests are born from something real, so we will usually inquire what the user is after, in an effort to determine the impact and alternate routes. I might even contact other customers who I know use that module or have a similar work flow and ask them what they think.

And based on that implement changes that make the program better not just for that user but for all our customers.


Is it also a crime to create and sell software, even if that's the only path available to you that will result in the product you see a need for?


You answered yourself with your own question, best regards


>


> proprietary software is the only option

What do you mean by "proprietary" in this context? I believe that the availability of the software's source code to its users is unrelated to the fact of whether the actual development of such software is paid or not.

Moreover, free and open source software (free as in "freedom", not necessarily free as in "free beer"), makes it generally simpler for the regular users to provide input regarding the features they need changed. So, in a way, it also helps to achieve the goal you describe:

> The best way to ensure people pay close attention to those last areas of fit and finish...


>I believe that the availability of the software's source code to its users is unrelated to the fact of whether the actual development of such software is paid or not.

This is true, and I've seen that happen too, one of the companies I worked with would sell source licenses to customers, and as I understand it this was very common in the mainframe business going way back. The software vendor retained rights to sell and distribute the software though, that's what I mean by proprietary.

I've seen these arguments for open source and libre software before many times, but there's a huge discontinuity between the theory and what actually happens in reality. In the real world there are tens of thousands of small and large software houses producing niche software for diverse use cases for businesses all over the world. Hundreds of niche engineering design, test and optimisation applications, B2B services, audio and video tools, chemical engineering tools, automation and industrial control systems, booking and billing systems, here are an almost infinite variety. Most of them are only known to people actually in these niche specialisms. In that world customers paying for customisations is stock in trade, it's entirely normal. In fact the company I'm at right now is paying the vendor for customisations to our incident and change management ticketing system.

In comparison open source, outside nerdy IT oriented tech projects, might as well not exist. It's minuscule. Barely even a footnote.


> simpler for the regular users to provide input regarding the features they need changed

Don't get me wrong, a good interface needs to take user feedback into account. But trying to accommodate the union of all features needed by all users is a recipe for madness. Somewhere you need an engineer, PM, designer, CxO, or someone who can make judgement calls and decide which user needs are more important than others.


> proprietary software is the only option, or the only complete option.

If only that were true. I've watched a completely non-IT person work with both vanilla Gnome 3 and Windows 10; they found the former far more intuitive and unobtrusive (not looking at the individual apps, just the basic desktop UI). Proprietary design-by-committee doesn't necessary make for better solutions: hence the numerous complaints recently from people (often with accessibility issues) trying to book vaccination slots on government websites.


It’s always been notable to me that the thing that killed Flash wasn’t the wars with the usability community 20-odd years ago, it was the iPhone. People dumped these garish interfaces because a beautiful device came along that refused to run them, not because they were in many or perhaps most cases terrible for the task at hand.

I think a lot of the methodological knowledge built by usability people has probably been ignored in favour of a metric-driven approach these days. That approach is very good at identifying bottlenecks in existing workflows or deciding between two ideas, but ultimately lacks the empathy you describe. You can only really build that by engaging directly with users, and watching them suffer at the hands of your creations.


I've always felt it a bit weird that iPhones quickly became the norm for all designers I've worked with, them hailing it as a so great to use. While I'm stuck not knowing how to find stuff, it's always hidden behind some undiscoverable swipe gesture. The home button used to have 10+ or so different functions based on context. They way you touched the screen (click, long press, 3d touch or whatnot) mattered.

Do normal users know all this? Or do they just only use the 10% easy functionality of the phone and is happy with that? Maybe articles like "17 Things You Didn't Know Your iPhone's Home Button Could Do" is a sign usability has been sacrificed in order to have a clean&neat design.


I have a half-baked still-gooey thought about this, but it's really around the time of the iphone (and the take off of the smartphone) that discoverability got thrown in the trash. Search bars instead of menus became the primary means of interaction, and ironically you can only find something with the search bar if you already know what you are looking for.

Of course menus don't translate well to touch devices, and menu systems can quickly become unorganized junk drawers for functionality, but it feels like discoverability was never fully solved on touch devices.


As an Android user it's also a problem here. The settings menu got a Search feature a few releases ago and its a sad concession that people have no idea where to find things in the Settings menu.

And it also has the same problem you describe - you don't know how to find something unless you know what it's called. And even if you do find something, there's no breadcrumb trail to learn how to find it without using search. You have to look at what's on the current page and like some kind of reverse engineering sherlock, think about where a designer could possibly have put this page. It's insane.


I have never understood the hype about the iPhone interface. I had an early Android and I loved it. Then, for a year or two, I had an iPhone 4 which I got from work. I never learned to love it. It always felt a bit obtuse and like it didn't quite do what I wanted. I felt like the interface was sacrificing usability for a superficial sense of elegance and efficiency for smoothness of animations.

When that phone stopped working I got a decent Android phone and it felt so much more comfortable.


Actually, having 10% common functionality easily available for unsophisticated users, and the rest hidden but fast to access, is good UI.

Sure, discoverability is good to have, but it is not a failure that you need to be told about it as long as it only contains features useful to power users.

Requiring experts to undergo some training to make the most out of their devices is acceptable UI if the final interactions are optimized for their use; double so if it doesn't interfere with usage by untrained users.


Yes, but I just feel that I have to help my parents with the most menial of tasks, but even then I sometimes cannot figure it out without googling.

I wonder if it's kinda a stockholm syndrome or if it caters to one's ego somehow. After discovering a feature, one feels smarter / more connected to the device, compared to if it was actually easier to use from the get go.


Examples of such tasks? I gave my 65yo mom an Iphone a few years back and there were literally zero issues after the quick intro on how to launch apps etc


I wish my 71yo dad was as proficient as your mom. He doesn't remember anything he doesn't do regularly.

For example, he texts frequently but doesn't know how to check his email. Because I am the tech support child, he reaches out to me for iPhone help. However, since I am not an iPhone user, I always struggle and sometimes fail to solve his problem.

Perhaps this is a sign I have not dedicated enough time to learning this new OS in my family ecosystem, but I do feel it is the least-similar to the other OS's I have used. It's like if my dad was learning programming and asked if I'd help him with his Lisp program. No thanks.

Though maybe I am just a luddite and the universe is written in iOS.


I've used computers all my life and I find iphones really difficult to use.

Not just unfamiliar, difficult.


Yeah. You are supposed to say "dumb, little ole me, look how smart this this thing is, hiding all this cool stuff...isn't that neat!" It fits well with the kind people our society churns out. Victims that blame themselves.


Interesting. I've worked in design orgs since the iPhone came out and in my experience it's always hovered around 50/50. Maybe it's an East Coast, West Coast thing?

I will say that when it first came out the direct manipulation of the iPhone UI was a qualitatively different experience compared to any other touchscreen for a very long time. Back then most Android reviews included caveats like "stuttery", "janky", or "low resolution", and these had the cumulative effect of spoiling the illusion of direct manipulation.

Today the gap is much smaller and easier to ignore, and the iPhone has added lots of hidden affordances like swipes and double, triple, and force taps to cater to expert users at the expense of novices.


How is it as the expense of novices? They were fine without it before and they’re fine without knowing about it now. But if they do end up wanting to do some of that advanced stuff, it’s one Google or friend-suggestion away.


It's a persuasive argument, and one I've used myself.

One danger is if the affordance is triggered accidentally. For example, my kids like pushing buttons and swiping when I wouldn't think to do those things and accidentally switch apps or enter into guided access modes without meaning to. In my case I occasionally trigger things like sticky keys unintentionally.

Another danger is if application developers start assuming that they can rely on users knowing hidden affordances and use swiping, double-tapping, force pressing, right-clicking, etc in the core application workflow. Not an Android iOS example, but last night one of my kids started playing Stardew Valley as their first non-tablet game. It has a steep learning curve since it relies on multiple different keyboard keys and on differentiating between right and left-click, whereas I wouldn't consider right-clicking to be a novice skill.


On Windows anyway, I think most users are very familiar with the right-click context menu. A lot of people don't even know the keyboard shortcuts for cut/copy/paste because they just right-click and there it is.

For complete novices, the first thing they do is click the mouse, and since there are only two buttons it doesn't take long to figure out that left-click is the primary button, and right-click brings up a menu with handy options (practically everything has a context menu in Windows). But with the Web, where context menus are rare, I wouldn't be surprised if it's not as well-known anymore.


I think you may be right about the web. It is not my experience that novices think to look in right-click context menus on the web, with the exception of text operations like copying text that you mention, and sometimes link actions. (I'm basing this off dozens of usability studies on web-based applications, it may be different for older windows applications.)

I have theories -- maybe it's because most web apps do not bother with context menus (outside of text operations), maybe it's because more people have developed their mental model from touchscreen devices where context menus are less commonly used, maybe more people are on laptops with trackpads that do not make right-clicking as obvious, maybe because there's no visual affordance indicating which onscreen elements have a useful context menu and which have the standard webpage context menu so it's a guessing game. I don't honestly know. But I am confident that if you place key functionality in a context menu of a web-based app that most novice users will not discover it on their own. As per Jakob Nielsen: "...be warned: less skilled users rarely use these [context] menus." [1]

Once end-users learn how to use your app (and therefore are no longer novices) then they seem to have no trouble remembering and using context menus, so it's a great way to expose expert affordances.

In the case of my kids I can also say that the Stardew Valley user interface (such as keeping right-click and left-click actions straight) has been the most difficult part of the game so far. And it doesn't seem like it was particularly necessary distinction to make -- there seem to be few cases where both right- and left-click actions are equally appropriate.

[1] https://www.nngroup.com/articles/feature-richness-and-user-e...


You can tap on the clock to scroll to the top on iphone (not only in browser).


> [...] but ultimately lacks the empathy you describe. You can only really build that by engaging directly with users, and watching them suffer at the hands of your creations.

While that's the only way to build empathy, you should be aware (and beware) that it is also a good way to build contempt (as counterproductive as that often is). Many of the "dark patterns" probably originated that way.


Could you explain more? Most dark patterns seem to me to be metrics-driven tricks to maximise people accepting GDPR or spam opt-ins, or making additional unintended purchases etc. I don't believe they come from any sort of process of watching users on a task and talking to them. If you're saying that understanding your users allows you to better be hostile towards them, then yes, I agree, but that's bad user interface design by definition.


I mean I hat I've observed developers and designers who, when forced to watch users struggle, have the reaction "damn, they're stupid" and further that dark patterns are sometimes motivated by "I bet a lot of people are stupid enough to..."


There's a certain corollary effect to what you describe that perhaps applies to "modern" interfaces (both web and native desktop/mobile).

Concurrency is excellent as an idea for systems design but horrible for user interfaces. Nothing seems to provide a stable interface and some concurrent process considers it it's privilege to suddenly modify a list of things I'm choosing from .. resulting in the items shifting just a few milliseconds before I click or tap my choice, which results in the wrong choice. This shift happens not only in vertical lists, but also tab-bar style buttons.

To be precise concurrency isn't to blame for it, but it's more like laziness. The interface elements should be locked in place if the system detects that I'm about to select something. Whatever else is waiting to show up can wait, because I obviously didn't need to know about them a few milliseconds earlier.


> items shifting ... before I click ... results in the wrong choice

Or a window from a different app pops up (the app took a while to start), steals the Enter key press, interprets Enter as "Yes do [something]", and then does it (but I didn't want that!).

Why can't OS windows be click & mouse disabled for 2 seconds, after they open


I think at one time there were a number of designers who transitioned from the print/magazine/brochure world to the web. They tended to prize "pixel perfection" and aesthetics over UX and functionality. This way of thinking is fine for making static landing and marketing pages, but is very counter-productive when you are building user-friendly, interactive and responsive applications. This is opposed to people who are actual UX experts who know how to trade off asethetics with usability.


This mirrors my experience as a UX designer coming from the usability side.

Many graphic design refugees are interested in learning about usability, user research, heuristics, Fitts' Law, GOMS/KLM, etc. But it takes time and energy. I've found that some small companies with no established UX team start out gravitating to shiny portfolio examples and end up putting visual design (VX) folks in charge of interaction design which sometimes goes poorly e.g. https://medium.com/intercom-inside/the-dribbblisation-of-des...


"Too many designers are designing to impress their peers rather than address real business problems." This has its parallel with the developer world, where tech choices are made to impress the peer group (including those in other companies likely to be hiring you) rather than address the business problem at hand.


There certainly were, I worked with a bunch of them. They were all talented, came from print and shifted to web + print. My job was to turn their gigantic Photoshop files into hand-crafted HTML, usually tables to layout carefully cropped and compressed JPEGs, and form elements :)


Your comment makes me think of the distinction Simon Wardley[1] makes between Pioneers, Settlers and City Planners. The former are the ones who get excited by making something new (and not solving the problem), the latter are the ones who get excited by making sure things keep running flawlessly.

I do believe there are programmers for every category though.

[1] https://blog.gardeviance.org/2015/03/on-pioneers-settlers-to...


Kirk McKusick had a similar metaphor around road building, with some people hacking a path through virgin jungle with a machete, some bulldozing the road, some paving it, some adding lamp posts, and some painting the lamp posts.


As someone who both designs and programs for the better part of his life, nobody is really safe from that phenomena. If programming and designing is communication this is akin to go "let me say something", sprouting an interesting point, leaving the inplied punchline hanging and exiting the room while ignoring the reaction. If it happens once, okay — if it happens all the time, maybe you should do something about it.

The thing is: both design and programming are more often than not messy when things get real, but every programmer wants to create clean and beautiful code and every designer wants to create aesthetical designs. Many intuitively perceive this "beauty" to be in tension with the complexity of the problem that needs solving. The goal of programming and design is however not to create beauty, but to solve problems and do so beautifully and clearly communicate these solutions, because it doesn't matter how beautiful your code/design is if nobody understands it. Beauty is the cherry on top that you get to achieve once the cake below is done, tastes well and puts a smile on the faces of all the party guests. If you are good you might already plan the cherry into the shape of the cake at the very beginning — but confusing the cherry for the cake IMO means you are either not there yet in terms of your profession or the thing is a toy project to try things out specifically — which is totally acceptable if everybody involved agrees and totally egoistic and shitty if they don't. Don't agree to serious projects you are not willing to commit to once the initial interest fades.

Really good designers are about integrating both usabilty and aesthetics in an iterative process, and do so in such a way the problem is solved, and solved beautifully, all while reducing the cognitive overhead needed by users.

And this cognitive overhead is really what should drive us. The work of programmers and designers is so beautiful/dangerous because it multiplies to a thousand people for a thousand hours. Our decision affect people on a daily basis. Removing a papercut might seem like nothing, but if it avoids irritating even ten other people who use that thing 10 times a day, isn't it the obvious thing to not half-ass on, not to toy around with?

Btw. Design that is only about aesthetics is something that I call "styling" maybe we need a similar word for programmers who toy around?


> If programming and designing is communication

There's a research field called Semiotics of Human-Computer Interaction studying user interfaces from that angle. Developers usually have a technical background from maths or engineering, and often are not aware of the importance of linguistics in our field.

Both programming languages and GUIs are languages (artificial, sure, but linguistics also study those) which are used to write expressions that can be read by humans. Semiotics, the study of signs and their meaning, provide methods to analyze how users make sense of the software artifacts (products and tools) delivered to them.

One researcher called the user interface a designer's deputy, i.e. a messenger that conveys in its entirety a message that the programmers wants to communicate to the users. This deputy must stand on its own, since it's the only information available to the user.

Users then perform sense-making on the symbols in the interface, to infer the meanings of all elements [1]. Notice that the user can't see what each interface element actually does, since they don't have access to the code; they can only guess what it does from the available symbols. If the symbols lead the user to infer an incorrect meaning, communication breaks.

[1] https://blog.prototypr.io/how-semiotics-can-help-us-in-ux-on...


I think you're missing a few steps in your development process, or at least one. Normally it goes like this: problem->solution->implementation->testing. Each step has a role associated with this: user->analyst->coder->tester.

If you go straight from problem to coder, you shouldn't be surprised that you don't have a proper solution, because nobody really made a proper solution. That's like building a house without an architect. Hire an analyst.


I don't know. The projects I got involved in that had an analyst involved tended to have reams of documentation for the obvious features, completely missed the non-obvious features and was wildly wrong in parts.

This is what agile was created to solve. It was an acceptance of the reality and an attempt to live with that rather than trying to bend it to your will.


Even agile teams need someone who analyses the solution. If there is nobody who specifies the solution, you get what OP describes.

Agile does not exclude different roles, on the contrary.


> I think you're missing a few steps in your development process, or at least one. Normally it goes like this: problem->solution->implementation->testing.

There should actually be testing associated with every step:

Is X a real problem worth solving (severity or cost x frequency)?

Would Y be an appropriate solution (test a mockup, prototype, or stub UI)?

Does the Z implementation work (as in, not just does the problem get solved when Z is used, but does Z actually get used to solve the problem)?


> Each step has a role associated with this: user->analyst->coder->tester.

Have you ever played that telephone game?


These are the steps, not the communication channels. Look at any agile team and all parties should be represented in 1 meeting.


Most corporations aren't big enough to warrant dedicated personal for these roles.

And if they are, it often ends with impossible to implement/maintain designs.


So 5 developers don't need a tester and business analyst? WTF.


Most developers can write tests and architect software just fine.


Developers are terrible testers, because they have the opposite mindset. Plus, they are more expensive. So you pay more to get less.

Do you think business analysis is about software architecture? Oh boy.


> Do you think business analysis is about software architecture? Oh boy.

Given the tendency for software architectures to mirror org-charts, the two aren't as disparate as you think.


Testing is hard. That's why they let it to the user.


If I know that the user changes what he originally wanted, damn right I give the thing to the user instead of wasting effort on perfection and edge cases that get thrown out.


I partially agree that designers love to create beautiful designs and they don't care about the products.

This is giving a false complacency to what outta be a tight intergration between design + developers with an oversight from the product owner. It is simply inexcusable. We're actively creating a culture of disregard/complacency/ignorance by not shedding light on this as a huge problem in UX/UI design.

I want more people to make noise about this.


I think the problems with creating a working solution run both ways. I’ve been involved in many design sessions where the subject experts didn’t understand how to make their envisaged product useful to their audience. It’s a common problem in programming as well, you can write code that performs well and is correct but the interface is such a mess that it’s completely unusable by anyone else. If someone is designing for beauty alone they’re caught in the same trap, the composition will work well by itself but its purpose will be unintelligible. Producing a good design requires working with all parties involved including the end users.


You literally described my job, I bridge the gap between design, code and make sure there is a thorough implementation of both, I have skills that overlap in those areas and so I can advise clients properly for any gaps that might have arisen. My bible is About Face : Interaction Design.


Haha, yes! And that book is pretty ancient. I think the first edition dealt exclusively with building Windows desktop apps because the web wasn't ready yet. It lays out some of the blindingly obvious UX axioms that a lot of devs just don't bother to think about. One of them is "hide the ejection lever" (a metaphor for the ejection lever on a fighter jet) for exactly the kind of thing MJD is discussing. Have those irreversible, destructive controls be present and findable, but really hard to click by accident.


Haha, great example! It has had some revisions, my copy is from 2014, but the great thing is that it all remains relevant.

The big takeaway is that humans shouldn’t be required to think like computers when they are interacting with one.

“Warning : Failed to load library” <ok>

Why did the library failed to load? Why are we being informed? Why does it say “Ok” when it is not ok?

As a lovely example. And on the regular you still have these problems. The daily wtf is full of current day examples.


I think my favorite lesson was their term "implementation-driven design" that I still see pretty frequently. It's where you build your UX to match your system architecture and is the opposite of "user-driven design". Like building forms that are just one-to-one with the database tables. It's why I cringe every time I see devs on hacker news saying they don't need managers or designers to build products because you'll end up with an implementation-driven design more often than not.


Speaking as a programmer who only occasionally interacts with design and considers himself largely terrible at it, reading "About Face" is probably the single book that helped the most to make me (slightly) less terrible.


It is always good to hear this! Especially the part about smart products and posture is very good to know by heart. So many apps still just botch their posture or completely forget the users intent and context (if they even consider it!)


I'm afraid I probably still botch it. But About Face has at least helped me to try not to.


This sounds like a flawed development cycle. Where's the end-user testing?

In defence of the developers/programmers, many people are really bad at explaining what they want, not least because it's often not what they actually need.

If a designer is designing something that looks good but doesn't work well (i.e., solve the problem), they are bad at usability/UX. They should be getting user feedback on their design before it's implemented - that's what user-centred design is about.

There's often a gap when it comes to understanding requirements - between the end-user and the developer, between the designer and developer, etc. Requirements gathering is actually a specialised skill and one of the key duties of a business analyst.


I think it's simpler than that, in this case. What OP is describing is essentially a *control panel* (a small interface of grouped inputs for common tasks). This is an artifact of engineering design, where physical space and materials are usually at a premium, both in construction and usage. Once you've designed and built your controls, that's it; there's no spiriting a secondary interface out of thin air.

However, with dynamic display-based interfaces, you can do just that. Much as I tend to loathe Apple's design, the way they handle iPad shutdowns is quite good: first, you press a button; then, the entire display changes to focus on this task. If you want to shutdown, you then have to perform an entirely different gesture to confirm. This layering of visual feedback and input types escapes the control panel paradigm and correctly takes advantage of the freedom that act lends to better communicate with the user.

Unfortunately, doing so often means eschewing standards and best practices to find a solution that should work better for users. That is extremely difficult to get right; it's not very surprising that designers would purposely decide to use a flawed but known model instead.

We need to get it out of our heads that designers only do things because they're visually satisfying. They are making purposeful and critical decisions to meet a design objective.


I think it's important to note that product lead, system architect, and UX architect are distinct roles, each with distinct responsibilities, for a reason.

It's not my job as a coder to care about your problem past what has been described to me. It is your job, as product lead, to care about the problem and design a sufficient information architecture, subdomain map, and other documentation to model your problem.

This goes both ways. It is not your job to care about my problems past how it impacts the product. I don't expect you to know or care about how we design the software or how it is implemented; whether we use snake or camelCase, if we use openssl or pgp, if we choose mysql or postgresql.

I just think it's important to outline that much of your comment can be applied in the inverse, and saying that "It's less work to become a mediocre programmer than to intimately understand the problem", is the same as saying "It's less work to become a mediocre product analyst than it is to intimately understand how to code".

I agree with your last point, it's important for every department to have humility and empathy for the problems of their peers. But, it's not a problem to be figured out by designers and coders; it's instead an issue that extends further and requires effort from everyone involved, and at every level, to support.


I agree here. I think a big part of the problem, even in big companies, is that those roles blur too much.

In particular, it is frequently the case where a product lead says something like “we need a way to...” and leaves the implementation open to discussion to all.

This often leads to a programmer, who is more deeply concerned with how that function will operate on the data, coming up with a “how about a button that...” and/or just implementing the button as a suggestion.

And then the UX architect and product lead, knowing that they don’t want to piss off this coder for fear of future pushback on their ideas, just caves and says “fine”.

That’s the most common scenario I’ve seen at larger companies. That, and having woefully inexperienced UX and UI designers in the first place.


I sympathize with what you’re saying, though I would like to point one thing regarding your first part: writing software is sometimes a way to wrap your mind around the problem and think about it. When trying to solve something new I like to start writing code early on because that gives me a canvas on which I can start drafting ideas. It’s more concrete than a whiteboard but can still be very abstract and flexible.

That’s how I identify what I understand and what I don’t.


I've seen that too. UI designers not realizing UX is way more important than aesthetics.


I think partly it is because UX is measurable (“A is less usable than B and thusly bad”), whereas aesthetics are not (“different tastes”). A kind of means to escape personal emotional accountability.


The problem is also what we do with the ability to measure. Typically, we're making easy things intuitive, and difficult things impossible. This is exactly the wrong way to go about things, if you care about delivering value to users[0]. We should be making the easy things easy, hard things possible, and forget about the whole intuitiveness thing.

There's this widespread belief now that software is only good if a user who never saw it before can become proficient in it in seconds to minutes. I think this is one of the most devastating, dangerous ideas in computing. The only way you can achieve a learning curve like this is by removing almost all functionality from software - make it so dumb that it really takes only a minute to figure it out entirely. Sadly, this is what we see in mobile and web applications these days.

What worries me here is that we've conditioned everyone to assume software is immediately and fully discoverable. Nobody is expected to read the manual these days, and so manuals are not provided, and since manuals are not provided, any feature that cannot be made apparent without explaining it in the manual goes away.

(Even with kitchen appliances, the situation isn't that bad. When a person sees a particular appliance for the first time, they do read the manual, or get someone to show them how to operate it. Maybe it comes with the fact that buying appliances is expensive and overall a hassle, whereas software is too easy to procure?)

--

[0] - I highlight that condition, because it's my belief that most software vendors don't care about delivering value to users. They care about making money off users, and there are many cheaper ways to do that than creating a truly useful and ergonomic product.


> The problem is also what we do with the ability to measure. Typically, we're making easy things intuitive, and difficult things impossible. This is exactly the wrong way to go about things, if you care about delivering value to users.

Right. We're prioritizing learnability over usability.

> We should be making the easy things easy, hard things possible, and forget about the whole intuitiveness thing.

Whoa there... Another way of thinking about 'intuitiveness' is in terms of affordances. We mustn't throw the baby out with the bathwater. While it is too much to ask that every function should be obvious upon first seeing the UI, it is not too much too ask that every function should at least be obvious in retrospect after trying to use it or having it demonstrated, and of course leveraging affordances and interaction patterns the user is likely familiar with from elsewhere should be given priority.


> Whoa there... Another way of thinking about 'intuitiveness' is in terms of affordances.

Yes, of course. Thanks for bringing this up. I apologize, I went a bit too far there - what I meant was just "intuitiveness" in the sense of expecting people to be immediately able to work well with something they see for the very first time, with no explicit learning or training.

I also don't mean to ignore familiarity with UIs in general - yes, unless you have a good reason, it's a good idea to copy design elements users are well familiar with (if they're not completely insane, or dark patterns). This matters particularly on mobile and desktop. On the Web, everyone is used to websites looking different from each other, but there are still higher-level patterns (like footer with company info, "contact" link somewhere on the site, site logo redirecting to home, etc.).

I totally agree about affordances, and mental handles in general. "Obvious in retrospect" is a great way of putting it - once you know a feature exists, or used it briefly, it should be easy to find it again. Once you familiarize yourself with a bunch of features, it should be obvious where to find them, because they should fit a consistent mental model. In a way, it's the job of the UI - to let the user learn the correct mental model of the application, and how it manipulates underlying resources.

For that to happen though, you as a software team need at least to a) have a consistent mental model yourself, and b) design both "backend" and UI around that model. I think this is one part where we fail frequently, but unintentionally - the developers and the designers don't spend enough time ensuring they have a shared mental model. When this happens, you have UI that may be consistent with itself, but feels off when used, and every now and then you see surprising behavior or incomprehensible error messages - that's the "backend" model leaking out.


This is a great insight, thank you!

I *try* to make my software initially intuitive and gradually discoverable. I think a gentle learning curve is better than a completely flat one.

I thought quite a bit recently about the problem that you are talking about (diminishing end user value in software). I think the source is that we have a lot of devs and designers whose only experience is designing for maximized conversion rate or maximized engagement. As opposed to professional software.

They have no habit of designing for value.

And *that’s the culture*. Go to any awwwards gallery - all of the websites or webapps mentioned there are essentially ads with minimal content.

Which isn’t too bad, since it leaves a market untapped through the collective arrogance of the incumbents...


I agree and I think your ideas form a good model to explain so many issues we've been facing more and more often.

Some days ago I wrote here in HN about the change my stock broker made on their default home broker. It immediately becomes obvious that the people responsible for that design have never performed anything nontrivial with stocks. They created a symmetrical, colorful platform. The symmetry is enforced, therefore you don't have the flexibility of setting up your quote-boxes any longer (perhaps because that would break the artist's concept). Just to mention one of many issues the new design brought.

The same applies to the Google Meet example in the article. Functionally, you'd never want those buttons presented that way. But placing them like that makes them look nice and symmetrical and Gestalt-related stuff, so that's the way to go and deal with it, dear users.

> Perhaps the hardest part is having the humility to admit, "I don't understand the problem sufficiently" and the empathy to care about the problem enough to learn it well

I agree, but don't see that happening, not in the short term at least. I had an argument with a designer some time ago about how much longer the project was going to take and how her ideas were actually substracting value from a user perspective. But she ended the discussion with a "this project has my signature, my reputation is in there". And that's what my criticism against current UX trends is all about. Artist's concept trumps user needs, project maintainability and everything. They are investing all the resources on graphic design matters and this is obstructing the whole field.

Some UX folks argue that designers like those "aren't true UX designers". I agree, but those "false" designers seems to be outnumbering the "true" ones. The latter may eventually have to found a new discipline.


This is the kind of thing project-based courses ought to train programmers to expect: Yeah, you're a legitimately good programmer, but programming mostly comes down to solving other peoples' problems, so you can't rest on your laurels. There's a whole, wide world out there of companies that need bespoke software, and most of the actual effort in writing that code is ensuring it properly enforces the business logic of a business you know nothing about.

Therefore, in this project you'll be helping a professor from some non-CS department write educational software. You have to balance accessibility with pedagogical accuracy, as guided by someone who doesn't secretly know that some specific algorithm is the magic key to solving the problem.


There's a 2nd order problem, where the stake holder doesn't actually know the requirements until they see a sample implemented. "I'll know it when i see it" style. This is often the case, with bespoke software.

If the stakeholder has such a clear vision of their end result, they probably won't need you to help them implement it!


The single most important lesson I learned in any of my software engineering courses was to listen first, build later. And keep asking questions until you understand the full requirements of the project! So much time and effort is wasted when programmers build first and ask questions later, and the whole process is needlessly frustrating for everyone involved.

You're spot on re: humility and empathy. I see so much hubris in programmers/computer people thinking they/we can fully understand the world's problems, much less solve them.


This is a pretty lazy explanation of a problem, leaning on somewhat disparaging stereotypes like "nerds just want to nerd out" without even giving specific examples or looking at deeper reasons this might be happening.

For starters, what context have you even experienced this in? From your description it sounds like both you and the programmer (or designer, as the case may be) are just doing this as a side project. Of course there's not going to be the incentive to follow-up and do the hard work of finding actual product-market fit if it was supposed to just be a fun learning experience from the beginning. Did you ever communicate with them what your expectations are, what the end goal is, how much of a time commitment you expect, and was the other person on the same page and equally invested in it? Also, why are you expecting the programmer to both figure out the nuances of the product and implement it? What is even your role in this, what do you bring to the table?

It sounds to me like you did not communicate well or did not set expectations properly about this project, and now you're blaming the other person for doing a bad/lazy job.


You're describing me and my ''kind'' of programmers very well.

I try to make myself interested in your problems. However, most of them seem really ''otherworldy'' to me or are in a domain I don't care about about. I became a programmer because I like the art of the trade, and I keep myself interested by writing interesting code.


Also sometimes it’s the process a team working on a design follows. Tried to illustrate this long ago about mobile hamburger menus https://medium.com/@hfuecks/so-we-went-with-a-hamburger-menu...


Not sure why the designer always gets the blame here. The Product Manager set the requirements and sign off on the designs.


If the product manager dictates UI and UX design then they are the UI and UX designer and their title is meaningless.

But what I think you really mean is that people are often in a blame culture that strategically puts up responsibility defenses which distracts them from producing a good result and focuses them on red taping to cover their asses. It is quite possible in these organizational structures to produce absolute shit and tick all the boxes and get everything approved and make sure no one in the position of actually doing stuff gets blamed for anything.

Not saying that it's their personal fault that certain companies are that way, but it is possible to have some self respect and march back up to the manager and say hey this is shit and we should do a better design rather than waste time on this (ok, yes in a more articulate and respectful way) - if you think that risks your job then it's probably going to be more fruitful working somewhere else anyway. Disclaimer: yes I know real life has other restrictions that means not everyone can do this.


One thing I learn from hacker news is that it's never the software engineer's fault


Architects - of the original building sense have a similiar misplaced emphasis problem being more about appearances and "advancing the field (read: novelty)" than functionality. Brutalism was an infamous example for making downright needlessly depressing buildings to live and work in that don't even save on maintenance in spite of eschewing ornamentation. Other fun foibles include putting the duct work on the outside of the building, the mold trap that is Fallingwater, and accidentally having a skyscraper melt a very fancy car with its glare before they had to sandblast it away.

It is kind of a tautology to say it but this hints at it being a human organizational social issue behind the pathology if it keeps cropping up.

I agree that good design is hard and often involves substantial work beyond just making something on the sheet.


> There are designers who love to create beautiful designs, and we love that, but beauty is the end of it for them. They don't actually care about the problem that the program (website, app, whatever) is supposed to solve.

They're essentially aestheticians, not designers. Yep, I hate them too.


I am beginning to think that hiring for enthusiastic programmers might be a mistake. Get on old cynical bastard like me. I just want to make my own life easy, and that means writing the easiest to maintain code that I can. Not trying out some new tech that has promised to solve all my problems.


I like that theory. It may explain why the Google Workspace (/G Suite/Google Apps) icons are now so indistinguishable. If one looks nice, why not make the others look just as nice?


This is exactly right. I also see this from programmer side-projects. The programmer finds a new cool idea, makes a MVP, then gets bored and moves on. Github is a holding yard for such things.


Nothing wrong with writing simple side-projects and moving on, that's an excellent way to learn. Not everyone can afford to donate a bunch of their time in maintaining a project for free, especially considering it's often such a thankless task.

The fact that the code is available means someone can fork it and make their own changes and improvements.


It’s not necessarily about getting bored. The research/experiment process can be the goal in itself. Not everything is about building a finite product.


This is a great comment which concisely expresses my own thoughts on the topic. Junior developers could learn a lot by absorbing this insight.


This is an excellent description of the CADT issue in most open source software.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: