Search Results

1
vote

What opensource projects do you support, or what keeps you from supporting projects?

I'm a debian developer, and was fairly active when I first became one over ten years ago, but don't do much these days. What stops me doing more? Only that I'm programming all day at work a …
0
votes

Open Source Licensing Options for ASP.NET MVC Application?

It's fairly common for things to be licensed under the GPL plus an exception for something that would otherwise be incompatible with the GPL. For example the license for exim is: …
2
votes

Best open-source, cross-platform, compiled, GUI alternative to Visual Basic?

How important is the "sit in the system tray" bit? I don't know of anything that will let you do that in a cross-platform way. …
19
votes

How does the ‘ls’ command work in Linux/Unix?

ls doesn't fork. The shell forks and execs in order to run any command that isn't built in, and one of the commands it can run is ls. ls uses opendir() and readdir() to step through all the …